
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --cream:      #f5f0e8;
      --warm-white: #faf7f2;
      --bark:       #3d2e1e;
      --moss:       #5a6b45;
      --soil:       #7a5c3a;
      --mist:       #c9cfc0;
      --terracotta: #b5603a;
      --sage:       #8a9e7a;
      --dark:       #2a2018;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter Tight', sans-serif; font-weight: 300; background: var(--warm-white); color: var(--bark); font-size: 17px; line-height: 1.85; overflow-x: hidden; }

    /* NAV */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 5vw; background: rgba(250,247,242,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(61,46,30,0.08); }
    .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 400; color: var(--bark); text-decoration: none; letter-spacing: 0.02em; }
    .nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
    .nav-links a { text-decoration: none; color: var(--bark); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; transition: opacity 0.2s; }
    .nav-links a:hover { opacity: 1; }
    .nav-cta { background: var(--moss) !important; color: white !important; opacity: 1 !important; padding: 0.5rem 1.2rem; border-radius: 2px; }
    .nav-cta:hover { background: #4a5a38 !important; }

    /* HERO */
    #hero { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding-top: 100px; }
    .hero-text { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem 5vw 4rem 8vw; }
    .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--moss); font-weight: 400; margin-bottom: 1.8rem; }
    .hero-title { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2.6rem, 4vw, 3.8rem); line-height: 1.12; color: var(--bark); margin-bottom: 1.8rem; }
    .hero-title em { font-style: normal; color: var(--bark); }
    .hero-sub { font-size: 1rem; font-weight: 300; color: var(--soil); max-width: 44ch; margin-bottom: 2.8rem; line-height: 1.85; }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary { background: var(--moss); color: white; padding: 0.85rem 2rem; border: none; cursor: pointer; font-family: 'Inter Tight', sans-serif; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s, transform 0.15s; display: inline-block; }
    .btn-primary:hover { background: #4a5a38; transform: translateY(-1px); }
    .btn-ghost { background: transparent; color: var(--bark); padding: 0.85rem 2rem; border: 1px solid rgba(61,46,30,0.3); cursor: pointer; font-family: 'Inter Tight', sans-serif; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: border-color 0.2s, transform 0.15s; display: inline-block; }
    .btn-ghost:hover { border-color: var(--bark); transform: translateY(-1px); }
    .hero-visual { position: relative; overflow: hidden; background: var(--dark); align-self: center; width: 100%; aspect-ratio: 5 / 4; border-radius: 2px; }
    .hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 0.85; display: block; }
    .hero-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,20,14,0.55) 0%, rgba(26,20,14,0.1) 35%, transparent 60%); }
    .hero-visual-caption { position: absolute; bottom: 2.5rem; left: 2.5rem; right: 2.5rem; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: rgba(245,240,232,0.9); line-height: 1.6; }
    .hero-badge { position: absolute; top: 2rem; right: 2rem; background: rgba(42,32,24,0.35); backdrop-filter: blur(8px); border: 1px solid rgba(245,240,232,0.2); padding: 0.5rem 1rem; border-radius: 2rem; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,240,232,0.8); font-weight: 400; white-space: nowrap; }

    /* SHARED */
    section { padding: 7rem 5vw; }
    .section-label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); font-weight: 400; margin-bottom: 1rem; }
    .section-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2rem, 3vw, 2.8rem); color: var(--bark); line-height: 1.2; margin-bottom: 1.5rem; }
    .section-body { font-size: 1rem; font-weight: 300; color: var(--soil); max-width: 60ch; line-height: 1.9; }

    /* ABOUT */
    #about { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
    .about-image-block { position: relative; }
    .about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center top; border-radius: 2px; display: block; }
    .about-name-tag { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--warm-white); border: 1px solid var(--mist); padding: 1rem 1.4rem; border-radius: 2px; box-shadow: 0 4px 20px rgba(61,46,30,0.08); }
    .about-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; color: var(--bark); margin-bottom: 0.2rem; }
    .about-title-tag { font-size: 0.7rem; color: var(--moss); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
    .about-text p { margin-bottom: 1.2rem; font-size: 1rem; font-weight: 300; color: var(--soil); line-height: 1.9; }
    .about-credentials { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--mist); display: flex; flex-direction: column; gap: 0.7rem; }
    .credential { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.88rem; font-weight: 300; color: var(--soil); }
    .credential-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); margin-top: 0.62rem; flex-shrink: 0; }

    /* SERVICES */
    #services { background: var(--warm-white); }
    .services-intro { max-width: 55ch; margin-bottom: 4rem; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .service-card { background: var(--cream); border: 1px solid var(--mist); padding: 2.4rem 2rem; border-radius: 2px; transition: box-shadow 0.25s, transform 0.2s; }
    .service-card:hover { box-shadow: 0 8px 32px rgba(61,46,30,0.08); transform: translateY(-3px); }
    .service-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 2.2rem; font-weight: 300; color: var(--terracotta); opacity: 0.5; margin-bottom: 1.2rem; line-height: 1; }
    .service-name { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.3rem; color: var(--bark); margin-bottom: 0.8rem; }
    .service-desc { font-size: 0.92rem; font-weight: 300; color: var(--soil); line-height: 1.85; margin-bottom: 1.5rem; }
    .service-detail { font-size: 0.7rem; font-weight: 400; color: var(--sage); letter-spacing: 0.1em; text-transform: uppercase; }
    .services-note { margin-top: 3rem; padding: 2rem 2.5rem; background: var(--cream); border-left: 3px solid var(--moss); font-size: 0.95rem; font-weight: 300; color: var(--soil); max-width: 72ch; line-height: 1.85; }

    /* TESTIMONIALS */
    #testimonials { background: var(--dark); padding: 5.5rem 5vw 7rem; position: relative; overflow: hidden; }
    #testimonials::before { content: ""; position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(ellipse, rgba(90,107,69,0.15) 0%, transparent 70%); pointer-events: none; }
    #testimonials .section-label { color: var(--sage); }
    #testimonials .section-title { color: var(--cream); margin-bottom: 3.5rem; }
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,207,192,0.15); padding: 2.2rem; border-radius: 2px; }
    .testi-mark { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 3rem; color: var(--sage); opacity: 0.4; line-height: 0.5; display: block; margin-bottom: 1.2rem; }
    .testi-quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 1rem; color: rgba(245,240,232,0.8); line-height: 1.85; margin-bottom: 1.5rem; }
    .testi-author { font-size: 0.75rem; font-weight: 400; letter-spacing: 0.08em; color: rgba(245,240,232,0.4); }
    .testi-type { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-top: 0.3rem; opacity: 0.8; }

    /* WRITING / BLOG */
    #blog { background: var(--cream); }
    .blog-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
    .blog-featured-text {}
    .blog-featured-eyebrow { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss); font-weight: 400; margin-bottom: 1rem; }
    .blog-featured-title { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.8rem, 2.5vw, 2.4rem); color: var(--bark); line-height: 1.2; margin-bottom: 1.2rem; }
    .blog-featured-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--soil); margin-bottom: 1.5rem; line-height: 1.7; opacity: 0.85; }
    .blog-featured-excerpt { font-size: 0.95rem; font-weight: 300; color: var(--soil); line-height: 1.9; margin-bottom: 2rem; max-width: 52ch; }
    .blog-read-btn { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--moss); cursor: pointer; background: none; border: none; font-family: 'Inter Tight', sans-serif; border-bottom: 1px solid var(--moss); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
    .blog-read-btn:hover { color: var(--bark); border-color: var(--bark); }
    .blog-featured-visual { background: var(--warm-white); border: 1px solid var(--mist); border-radius: 2px; padding: 2.5rem 2.8rem; position: relative; }
    .blog-featured-visual::before { content: '"'; font-family: 'Cormorant Garamond', serif; font-size: 8rem; color: var(--moss); opacity: 0.08; position: absolute; top: -1rem; left: 1.5rem; line-height: 1; }
    .blog-preview-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); font-weight: 400; margin-bottom: 1.5rem; }
    .blog-preview-section { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--mist); }
    .blog-preview-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .blog-preview-num { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); font-weight: 400; display: block; margin-bottom: 0.3rem; }
    .blog-preview-heading { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.05rem; color: var(--bark); margin-bottom: 0.4rem; }
    .blog-preview-body { font-size: 0.85rem; font-weight: 300; color: var(--soil); line-height: 1.75; }

    /* BLOG MODAL */
    .blog-modal-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(42,32,24,0.88); backdrop-filter: blur(6px); overflow-y: auto; padding: 2rem 1rem; }
    .blog-modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
    .blog-modal { background: var(--warm-white); max-width: 760px; width: 100%; border-radius: 2px; overflow: hidden; margin: auto; position: relative; }
    .blog-modal-top { height: 4px; background: linear-gradient(90deg, var(--moss), var(--terracotta)); }
    .blog-modal-close { position: absolute; top: 1.2rem; right: 1.5rem; background: none; border: none; cursor: pointer; font-size: 1.8rem; color: rgba(61,46,30,0.3); line-height: 1; transition: color 0.2s; font-weight: 300; }
    .blog-modal-close:hover { color: var(--bark); }
    .blog-modal-inner { padding: 0; }

    /* Modal blog post styles matching the blog post file */
    .bm-hero { background: var(--cream); padding: 60px 40px 48px; text-align: center; position: relative; overflow: hidden; border-bottom: 1px solid var(--mist); }
    .bm-hero::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(90,107,69,0.10) 0%, transparent 70%); pointer-events: none; }
    .bm-hero-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--moss); font-weight: 400; margin-bottom: 20px; }
    .bm-hero h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.15; color: var(--bark); max-width: 580px; margin: 0 auto 20px; }
    .bm-hero h1 em { font-style: italic; color: var(--soil); }
    .bm-hero-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--soil); max-width: 460px; margin: 0 auto; opacity: 0.85; }
    .bm-hero-divider { width: 40px; height: 1px; background: var(--moss); margin: 28px auto 0; opacity: 0.5; }
    .bm-body { max-width: 640px; margin: 0 auto; padding: 48px 40px 72px; }
    .bm-intro p { font-size: 1rem; color: var(--bark); margin-bottom: 18px; font-weight: 300; line-height: 1.9; }
    .bm-metaphor { background: var(--cream); border-left: 3px solid var(--moss); padding: 24px 28px; margin: 32px 0 44px; border-radius: 0 4px 4px 0; }
    .bm-metaphor p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.18rem; line-height: 1.7; color: var(--soil); }
    .bm-section { margin-bottom: 48px; }
    .bm-section-num { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); font-weight: 400; display: block; margin-bottom: 6px; }
    .bm-section h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.7rem; color: var(--bark); margin-bottom: 16px; line-height: 1.2; }
    .bm-section p { margin-bottom: 15px; color: #4a3820; font-weight: 300; font-size: 0.97rem; line-height: 1.9; }
    .bm-prompts { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
    .bm-pill { background: transparent; border: 1px solid var(--moss); color: var(--moss); padding: 7px 18px; border-radius: 100px; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; }
    .bm-checklist { list-style: none; margin: 20px 0; }
    .bm-checklist li { padding: 10px 0 10px 24px; position: relative; border-bottom: 1px solid var(--mist); color: #4a3820; font-size: 0.93rem; font-weight: 300; }
    .bm-checklist li:first-child { border-top: 1px solid var(--mist); }
    .bm-checklist li::before { content: '—'; position: absolute; left: 0; color: var(--sage); font-weight: 300; }
    .bm-practices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
    .bm-practice { background: var(--cream); padding: 18px 20px; border-radius: 4px; border: 1px solid var(--mist); }
    .bm-practice strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; color: var(--bark); margin-bottom: 3px; }
    .bm-practice span { font-size: 0.85rem; font-weight: 300; color: #7a6048; line-height: 1.5; }
    .bm-callout { background: linear-gradient(135deg, #eef1e8 0%, #e8ede0 100%); border-radius: 6px; padding: 28px 32px; margin: 32px 0; text-align: center; }
    .bm-callout p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: var(--soil); line-height: 1.6; margin: 0; }
    .bm-closing { text-align: center; padding: 40px 0 0; border-top: 1px solid var(--mist); margin-top: 56px; }
    .bm-closing p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem; color: var(--soil); max-width: 440px; margin: 0 auto 24px; line-height: 1.65; }
    .bm-closing-mark { font-size: 1.6rem; color: var(--sage); opacity: 0.5; display: block; margin-top: 12px; }

    /* FAQ */
    #faq { background: var(--warm-white); }
    .faq-wrap { margin-top: 3.5rem; max-width: 800px; display: flex; flex-direction: column; gap: 1px; background: var(--mist); border: 1px solid var(--mist); }
    .faq-item { background: var(--warm-white); padding: 1.8rem 2rem; cursor: pointer; }
    .faq-item:hover { background: var(--cream); }
    .faq-q { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.1rem; color: var(--bark); display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
    .faq-toggle { color: var(--terracotta); font-size: 1.5rem; line-height: 1; flex-shrink: 0; transition: transform 0.25s; font-weight: 300; }
    .faq-a { font-size: 0.93rem; font-weight: 300; color: var(--soil); line-height: 1.9; margin-top: 1rem; display: none; max-width: 65ch; }
    .faq-item.open .faq-toggle { transform: rotate(45deg); }
    .faq-item.open .faq-a { display: block; }

    /* CONTACT */
    #contact { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
    .contact-details { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2.5rem; }
    .contact-detail { font-size: 0.9rem; font-weight: 300; color: var(--soil); display: flex; gap: 0.8rem; align-items: flex-start; }
    .contact-detail-icon { color: var(--moss); flex-shrink: 0; }
    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(61,46,30,0.45); font-weight: 400; }
    .form-input, .form-select, .form-textarea { background: var(--warm-white); border: 1px solid var(--mist); color: var(--bark); padding: 0.85rem 1rem; font-family: 'Inter Tight', sans-serif; font-size: 0.95rem; font-weight: 300; border-radius: 2px; transition: border-color 0.2s; outline: none; width: 100%; }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(61,46,30,0.3); }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--moss); }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-submit { background: var(--moss); color: white; border: none; cursor: pointer; padding: 1rem 2.5rem; font-family: 'Inter Tight', sans-serif; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; align-self: flex-start; transition: background 0.2s, transform 0.15s; }
    .form-submit:hover { background: #4a5a38; transform: translateY(-1px); }

    /* FOOTER */
    footer { background: var(--dark); padding: 2.5rem 5vw; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-style: normal; font-weight: 300; color: rgba(245,240,232,0.4); font-size: 1rem; }
    .footer-legal { font-size: 0.72rem; font-weight: 300; color: rgba(245,240,232,0.25); text-align: right; line-height: 1.7; letter-spacing: 0.03em; }

    /* QUOTE INTERLUDE */
    .quote-interlude { background: var(--dark); padding: 6rem 5vw; text-align: center; position: relative; overflow: hidden; }
    .quote-interlude::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 480px; height: 480px; background: radial-gradient(ellipse, rgba(90,107,69,0.10) 0%, transparent 68%); pointer-events: none; }
    .quote-inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; position: relative; }
    .quote-rule { width: 36px; height: 1px; background: rgba(245,240,232,0.18); }
    .quote-rumi { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: clamp(1.55rem, 2.5vw, 2.1rem); color: rgba(245,240,232,0.85); line-height: 1.45; letter-spacing: 0.01em; }
    .quote-attr { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(138,158,122,0.70); }
    .quote-martha { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 1.05rem; color: rgba(245,240,232,0.40); line-height: 1.7; letter-spacing: 0.01em; }

    /* ANIMATIONS */
    .fade-up { opacity: 1; transform: none; transition: opacity 0.75s ease, transform 0.75s ease; }
    .js-loaded .fade-up { opacity: 0; transform: translateY(20px); }
    .js-loaded .fade-up.visible { opacity: 1; transform: none; }

    /* ADMIN */
    #admin-panel { display: none; position: fixed; inset: 0; z-index: 300; background: var(--dark); overflow-y: auto; }
    #admin-panel.open { display: block; }
    .admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
    .admin-login-box { background: rgba(255,255,255,0.04); border: 1px solid rgba(138,158,122,0.3); padding: 3rem; border-radius: 2px; width: 100%; max-width: 380px; text-align: center; }
    .admin-login-title { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; color: var(--cream); font-size: 1.4rem; margin-bottom: 0.4rem; }
    .admin-login-sub { font-size: 0.75rem; font-weight: 300; color: rgba(245,240,232,0.35); margin-bottom: 2rem; letter-spacing: 0.08em; text-transform: uppercase; }
    .admin-input { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(245,240,232,0.15); color: var(--cream); padding: 0.85rem 1rem; font-family: 'Inter Tight', sans-serif; font-size: 0.95rem; font-weight: 300; border-radius: 2px; outline: none; margin-bottom: 1rem; transition: border-color 0.2s; }
    .admin-input:focus { border-color: var(--sage); }
    .admin-btn { width: 100%; background: var(--moss); color: white; border: none; padding: 0.9rem; font-family: 'Inter Tight', sans-serif; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: background 0.2s; }
    .admin-btn:hover { background: #4a5a38; }
    .admin-error { color: #e07070; font-size: 0.82rem; margin-top: 0.8rem; display: none; }
    .admin-dashboard { padding: 3rem 4vw; max-width: 900px; margin: 0 auto; }
    .admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(245,240,232,0.08); }
    .admin-logo { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--cream); font-size: 1.1rem; }
    .admin-logout { font-size: 0.72rem; color: rgba(245,240,232,0.35); cursor: pointer; background: none; border: none; font-family: 'Inter Tight', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
    .admin-logout:hover { color: var(--cream); }
    .admin-section-title { font-family: 'Cormorant Garamond', serif; color: var(--cream); font-size: 1.2rem; font-weight: 400; margin-bottom: 1.5rem; }
    .admin-form { display: flex; flex-direction: column; gap: 1.1rem; margin-bottom: 4rem; }
    .admin-label { font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(245,240,232,0.35); font-weight: 400; margin-bottom: 0.3rem; display: block; }
    .admin-field { display: flex; flex-direction: column; }
    .admin-textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(245,240,232,0.12); color: var(--cream); padding: 0.85rem 1rem; font-family: 'Inter Tight', sans-serif; font-size: 0.95rem; font-weight: 300; border-radius: 2px; outline: none; transition: border-color 0.2s; resize: vertical; min-height: 200px; line-height: 1.7; }
    .admin-textarea:focus { border-color: var(--sage); }
    .admin-select { background: rgba(255,255,255,0.05); border: 1px solid rgba(245,240,232,0.12); color: var(--cream); padding: 0.85rem 1rem; font-family: 'Inter Tight', sans-serif; font-size: 0.95rem; border-radius: 2px; outline: none; width: 100%; }
    .admin-select option { background: var(--dark); }
    .admin-publish-btn { background: var(--moss); color: white; border: none; padding: 0.9rem 2.5rem; font-family: 'Inter Tight', sans-serif; font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 2px; cursor: pointer; align-self: flex-start; transition: background 0.2s; }
    .admin-publish-btn:hover { background: #4a5a38; }
    .admin-posts-list { display: flex; flex-direction: column; gap: 1rem; }
    .admin-post-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(245,240,232,0.08); padding: 1.2rem 1.5rem; border-radius: 2px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
    .admin-post-item-title { font-family: 'Cormorant Garamond', serif; color: var(--cream); font-size: 1rem; }
    .admin-post-item-date { font-size: 0.75rem; font-weight: 300; color: rgba(245,240,232,0.3); margin-top: 0.2rem; }
    .admin-delete-btn { background: none; border: 1px solid rgba(224,112,112,0.3); color: rgba(224,112,112,0.5); padding: 0.35rem 0.9rem; font-size: 0.75rem; border-radius: 2px; cursor: pointer; font-family: 'Inter Tight', sans-serif; transition: all 0.2s; flex-shrink: 0; }
    .admin-delete-btn:hover { background: rgba(224,112,112,0.1); color: #e07070; border-color: #e07070; }
    .admin-success { color: #8aba88; font-size: 0.82rem; margin-top: 0.5rem; display: none; }
    .admin-open-btn { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50; background: rgba(42,32,24,0.8); backdrop-filter: blur(8px); border: 1px solid rgba(138,158,122,0.25); color: rgba(245,240,232,0.4); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1rem; border-radius: 2rem; cursor: pointer; font-family: 'Inter Tight', sans-serif; transition: all 0.2s; }
    .admin-open-btn:hover { color: var(--cream); border-color: var(--sage); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      #hero, #about, #contact { grid-template-columns: 1fr; gap: 3rem; }
      .hero-text { padding: 2.5rem 6vw 3rem; }
      .hero-visual { aspect-ratio: 5 / 4; }
      .services-grid, .testimonials-grid, .blog-featured { grid-template-columns: 1fr; gap: 3rem; }
      .form-row { grid-template-columns: 1fr; }
      .about-name-tag { right: 1rem; }
      nav { flex-wrap: wrap; gap: 0.5rem; }
      .nav-links { gap: 1rem; }
      .bm-body { padding: 36px 24px 56px; }
      .bm-practices { grid-template-columns: 1fr; }
    }
  
    /* TYPOGRAPHY UPDATES — bigger body, more chic editorial */
    body { font-family: 'Inter Tight', sans-serif; font-size: 17px; line-height: 1.7; color: var(--bark); -webkit-font-smoothing: antialiased; }
    .hero-sub { font-family: 'Inter Tight', sans-serif; font-size: 1.05rem; line-height: 1.75; color: var(--soil); font-weight: 300; letter-spacing: 0.01em; }
    .about-text p { font-size: 1.06rem; font-weight: 300; color: var(--soil); line-height: 1.85; margin-bottom: 1.3rem; letter-spacing: -0.005em; }
    .section-body { font-size: 1.08rem; font-weight: 300; line-height: 1.85; color: var(--soil); letter-spacing: -0.005em; }
    .section-label { font-family: 'Inter Tight', sans-serif; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 1.2rem; }
    .section-title { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.15; color: var(--bark); margin-bottom: 1.6rem; letter-spacing: -0.01em; }
    .service-desc { font-size: 1rem; font-weight: 300; line-height: 1.8; color: var(--soil); }
    .service-name { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.55rem; color: var(--bark); margin-bottom: 0.8rem; letter-spacing: -0.005em; }
    .credential span { font-size: 0.97rem; font-weight: 300; line-height: 1.6; }
    .faq-q { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.18rem; color: var(--bark); }
    .faq-a { font-size: 0.98rem; font-weight: 300; color: var(--soil); line-height: 1.85; margin-top: 1rem; }
    .nav-list a { font-family: 'Inter Tight', sans-serif; font-size: 0.85rem; font-weight: 400; letter-spacing: 0.04em; }

    /* HERO PHOTO */
    .hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0.92; display: block; }
    .hero-visual-overlay { background: linear-gradient(to bottom, rgba(26,20,14,0.15) 0%, rgba(26,20,14,0.4) 60%, rgba(26,20,14,0.7) 100%); }

    /* TESTIMONIAL SLIDER */
    .testi-slider-wrap { max-width: 1180px; margin: 0 auto; position: relative; }
    .testi-viewport { overflow: hidden; }
    .testi-track { display: flex; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
    .testi-track .testi-card { flex: 0 0 calc(33.333% - 1rem); margin-right: 1.5rem; min-height: 340px; }
    @media (max-width: 1099px) {
      .testi-track .testi-card { flex: 0 0 calc(50% - 0.75rem); }
    }
    @media (max-width: 767px) {
      .testi-track .testi-card { flex: 0 0 calc(100% - 1rem); margin-right: 1rem; }
    }
    .testi-quote { font-style: normal !important; font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.08rem; line-height: 1.7; color: rgba(245,240,232,0.88); }
    .testi-author { font-style: normal !important; font-family: 'Inter Tight', sans-serif; font-weight: 500; }
    .testi-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
    .testi-prev, .testi-next { background: transparent; border: 1px solid rgba(245,240,232,0.25); color: rgba(245,240,232,0.7); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; transition: all 0.25s; display: flex; align-items: center; justify-content: center; }
    .testi-prev:hover, .testi-next:hover { background: rgba(245,240,232,0.08); color: rgba(245,240,232,0.95); border-color: rgba(245,240,232,0.4); }
    .testi-dots { display: flex; gap: 0.6rem; }
    .testi-dot { width: 7px; height: 7px; border-radius: 50%; border: none; background: rgba(245,240,232,0.22); cursor: pointer; padding: 0; transition: all 0.25s; }
    .testi-dot.active { background: rgba(245,240,232,0.7); width: 26px; border-radius: 4px; }

    /* QUOTE INTERLUDE - reduced padding */
    .quote-interlude { padding: 4rem 5vw !important; }
    .about-moons { margin-bottom: 1.5rem; }

    /* FOOTER EXPANDED */
    footer { background: var(--dark); padding: 4rem 5vw 2rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245,240,232,0.08); }
    .footer-col-brand .footer-logo { font-family: 'Cormorant Garamond', serif; font-style: normal; font-weight: 300; color: rgba(245,240,232,0.7); font-size: 1.5rem; display: block; margin-bottom: 0.8rem; }
    .footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: normal; font-size: 1rem; color: rgba(245,240,232,0.4); font-weight: 300; }
    .footer-heading { font-family: 'Inter Tight', sans-serif; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.55); margin-bottom: 1.2rem; }
    .footer-col a { display: block; font-family: 'Inter Tight', sans-serif; font-size: 0.92rem; font-weight: 300; color: rgba(245,240,232,0.55); text-decoration: none; margin-bottom: 0.7rem; transition: color 0.2s; }
    .footer-col a:hover { color: rgba(245,240,232,0.9); }
    .footer-bottom { max-width: 1200px; margin: 2rem auto 0; text-align: center; }
    .footer-legal { font-size: 0.72rem; font-weight: 300; color: rgba(245,240,232,0.3); line-height: 1.7; letter-spacing: 0.04em; }
    @media (max-width: 768px) {
      .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    }

    /* CONTACT - bullet alignment */
    .contact-detail-icon { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; color: var(--terracotta); font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
    .contact-detail { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 1.1rem; font-size: 0.98rem; font-weight: 300; color: var(--soil); line-height: 1.6; }

    /* HIDE ADMIN ELEMENTS */
    .admin-open-btn, .admin-login, .admin-dashboard, #admin-panel { display: none !important; }

  
    /* ===== AREAS OF FOCUS ===== */
    #areas { background: var(--cream); padding: 4rem 5vw 6rem; }
    .areas-inner { max-width: 960px; margin: 0 auto; }
    .areas-head { text-align: center; max-width: 620px; margin: 0 auto 2.5rem; }
    .areas-head h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--bark); line-height: 1.2; margin-bottom: 1rem; }
    .areas-head p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.12rem; color: var(--soil); line-height: 1.6; opacity: 0.9; }
    .areas-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
    .area-col { padding: 0 2.2rem; text-align: center; }
    .area-col + .area-col { border-left: 1px solid var(--mist); }
    .area-mark { width: 24px; height: 24px; display: block; margin: 0 auto 1.3rem; }
    .area-col h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.35rem; color: var(--bark); line-height: 1.3; margin-bottom: 0.9rem; }
    .area-col p { font-size: 0.92rem; font-weight: 300; color: #4a3820; line-height: 1.8; }
    @media (max-width: 640px) {
      #areas { padding: 4.5rem 6vw; }
      .areas-three { grid-template-columns: 1fr; gap: 0; }
      .area-col { padding: 2.4rem 0; max-width: 420px; margin: 0 auto; }
      .area-col + .area-col { border-left: none; border-top: 1px solid var(--mist); }
    }
  
    /* ===== MOBILE NAV (hamburger) ===== */
    [id] { scroll-margin-top: 80px; }
    .nav-toggle { display: none; }
    @media (max-width: 900px) {
      nav { flex-wrap: nowrap; gap: 0; }
      .nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 8px 6px; background: none; border: none; cursor: pointer; z-index: 101; }
      .nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--bark); border-radius: 2px; transition: transform 0.3s ease, opacity 0.2s ease; }
      .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
      .nav-toggle.open span:nth-child(2) { opacity: 0; }
      .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
      .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--warm-white); padding: 0 5vw; max-height: 0; overflow: hidden; opacity: 0; transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease; }
      .nav-links.open { max-height: 85vh; opacity: 1; padding: 0.6rem 5vw 1.4rem; border-bottom: 1px solid rgba(61,46,30,0.08); box-shadow: 0 16px 30px rgba(42,32,24,0.08); }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; width: 100%; padding: 0.95rem 0; font-size: 0.82rem; letter-spacing: 0.1em; opacity: 0.8; border-bottom: 1px solid rgba(61,46,30,0.07); }
      .nav-links a:hover { opacity: 1; }
      .nav-links .nav-cta { display: inline-block; width: auto; margin-top: 1.1rem; padding: 0.7rem 1.5rem; border-bottom: none; }
    }
  
    /* --- spacing cleanup: slim short teasers + collapse same-color (warm-white) seams --- */
    #services { padding-top: 4rem; padding-bottom: 2.5rem; }
    #what-to-expect { padding-top: 5rem; padding-bottom: 2.5rem; }
    #faq { padding-top: 2.5rem; padding-bottom: 4rem; }
  

    /* ===== WRITING INDEX (from writing page) ===== */
    .writing-header { padding: 9rem 5vw 3rem; max-width: 720px; margin: 0 auto; text-align: center; }
    .writing-header h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--bark); line-height: 1.2; margin-bottom: 1.2rem; }
    .writing-header p { font-size: 1.02rem; font-weight: 300; color: var(--soil); line-height: 1.85; }
    .writing-list { max-width: 720px; margin: 2.5rem auto 6rem; padding: 0 5vw; display: grid; gap: 1.6rem; }
    .writing-card { display: block; background: var(--cream); border: 1px solid var(--mist); border-radius: 3px; padding: 2.6rem 2.8rem; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
    .writing-card:hover { border-color: var(--moss); transform: translateY(-2px); }
    .writing-card-eyebrow { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); font-weight: 400; margin-bottom: 0.9rem; }
    .writing-card h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(1.5rem, 2.5vw, 1.9rem); color: var(--bark); line-height: 1.25; margin-bottom: 1rem; }
    .writing-card-excerpt { font-size: 0.95rem; font-weight: 300; color: var(--soil); line-height: 1.85; margin-bottom: 1.4rem; }
    .writing-card-read { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); }
    .back-to-writing { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--moss); text-decoration: none; margin: 0 auto 2rem; padding: 0 5vw; max-width: 640px; }

    /* ===== WRITING INDEX + POST NAV ===== */
    .writing-list { max-width: 720px; margin: 2.5rem auto 6rem; padding: 0 5vw; display: grid; gap: 1.6rem; }
    .post-nav { max-width: 640px; margin: 0 auto; padding: 2.5rem 40px 72px; display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--mist); }
    .post-nav a { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--moss); text-decoration: none; max-width: 46%; }
    .post-nav a span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--bark); margin-top: 0.45rem; line-height: 1.3; }
    .post-nav a:hover span { color: var(--moss); }
    .post-nav .pn-next { text-align: right; margin-left: auto; }
    @media (max-width: 700px) {
      .post-nav { padding: 2.5rem 24px 56px; flex-direction: column; gap: 1.8rem; }
      .post-nav a, .post-nav .pn-next { max-width: 100%; text-align: left; margin-left: 0; }
    }
