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

/* ── VARIABLES ── */
:root {
    /* Neutrals (existing) */
    --bg: #FAFAF8;
    --text: #2C2C2C;
    --muted: #4A4540;
    --border: #C0BAB2;
    --nav-height: 60px;

    /* Sage greens */
    --sage: #7D9B76;
    --sage-light: #B8CDB4;
    --sage-pale: #EEF3ED;

    /* Complements */
    --warm-gold: #C4A882;
    --warm-gold-pale: #F0E6D6;
    --dusty-rose: #C4968A;
}

/* ── BASE ── */
body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ── NAV ── */
#navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--sage);
    border-bottom: none;
    height: var(--nav-height);
}

.nav-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: #FAFAF8;
    text-decoration: none;
    white-space: nowrap;
}

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

.nav-links a {
    font-size: 0.85rem;
    color: rgba(250, 250, 248, 0.75);
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color 0.2s;
    padding: 0.5rem 0.75rem;
    margin: -0.5rem -0.75rem;
}
.nav-links a:hover,
.nav-links a.active {
    color: #FAFAF8;
    font-weight: 400;
}

/* Hamburger button — hidden on desktop */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #FAFAF8;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hamburger open state */
.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); }

/* ── MAIN CONTENT ── */
main {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

header {
    margin-bottom: 4rem;
}

h1 {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

h1, h2 { color: var(--text); }

.tagline {
    font-style: italic;
    font-family: 'Lora', serif;
    color: var(--muted);
    font-size: 1.05rem;
}

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 3rem 0;
}

h2 {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.services {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service h3 {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.service p,
.contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
}

a {
    color: var(--text);
    text-underline-offset: 3px;
}

a:hover {
    color: var(--muted);
}

/* ── CONTACT FORM ── */
.contact-intro {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-group input,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    resize: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--border);
}

.btn-submit {
    align-self: flex-start;
    padding: 0.7rem 2rem;
    background: var(--sage);
    color: var(--bg);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-submit:hover { opacity: 0.75; }
.btn-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.form-status {
    font-size: 0.85rem;
    min-height: 1.2em;
}

.form-status.success { color: #5a8a5a; }
.form-status.error   { color: #a05050; }

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ── QR CODE ── */
.qr-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.qr-code {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.qr-title {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
}

.qr-url {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--text);
}

/* ── FOOTER ── */
footer {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    font-size: 0.78rem;
    color: var(--border);
}

/* ── MOBILE ── */
@media (max-width: 680px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--sage);
        border-bottom: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        display: block;
        padding: 1rem 2rem;
        border-top: 1px solid var(--border);
        border-top-color: rgba(250, 250, 248, 0.2);
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.8rem;
    }
}

/* ── FAQ ── */
.faq {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Remove default triangle in Safari */
.faq-question::-webkit-details-marker { display: none; }

.faq-question {
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 400;
    cursor: default;
    scroll-margin-top: calc(var(--nav-height) + 1rem);
}

.faq-answer {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
    margin-top: 1rem;
    max-width: 60ch;
}

.faq-toc {
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    border-color: var(--sage-light);
    background: var(--sage-pale);
}

.faq-toc h2 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.faq-toc ol {
    padding-left: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-toc a {
    font-size: 0.9rem;
    color: var(--muted);
}

.faq-toc a:hover { color: var(--text); }

/* ── CONTACT DETAILS ── */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 0;
}

.contact-detail {
    display: flex;
    gap: 2rem;
    align-items: baseline;
    font-size: 0.9rem;
}

.contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    min-width: 4rem;
}

/* ── BLOG ── */
.blog-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 4rem;
    align-items: start;
}

.blog-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}

.blog-sidebar-title {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.blog-post-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-post-item a {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-post-item:first-child a {
    border-top: 1px solid var(--border);
}

.blog-post-title {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.4;
}

.blog-post-date {
    font-size: 0.75rem;
    color: var(--muted);
}

.blog-post-item a:hover .blog-post-title,
.blog-post-item.active a .blog-post-title {
    color: var(--sage);
}

.blog-post-item.active a .blog-post-title {
    font-weight: 400;
}

/* Blog article */
.blog-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* Markdown body styles */
.blog-body {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text);
}

.blog-body h2 {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 2rem 0 0.75rem;
}

.blog-body h3 {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 400;
    margin: 1.5rem 0 0.5rem;
}

.blog-body p {
    margin-bottom: 1.25rem;
}

.blog-body ul,
.blog-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.blog-body li {
    font-size: 0.95rem;
    line-height: 1.7;
}

.blog-body strong { font-weight: 500; }
.blog-body em { font-style: italic; }

.blog-body a {
    color: var(--sage);
    text-underline-offset: 3px;
}

.blog-body blockquote {
    border-left: 2px solid var(--sage-light);
    margin: 1.5rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--muted);
    font-style: italic;
}

/* Mobile */
@media (max-width: 680px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar {
        position: static;
        border-bottom: 1px solid var(--border);
        padding-bottom: 1.5rem;
    }
}

/* ── SERVICES PAGE ── */
.services-list {
    display: flex;
    flex-direction: column;
}

.service-entry {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.service-entry:first-child {
    border-top: 1px solid var(--border);
}

.service-meta {
    padding-top: 0.2rem;
}

.service-duration {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.service-title {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.service-description {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 60ch;
}

.services-cta {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
}

@media (max-width: 480px) {
    .service-entry {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* ── MY STORY ── */
.story-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0 1rem;
}

.profile-picture {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--sage-pale);
    border: 3px solid var(--sage-light);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder shown when no image is present */
.profile-picture::after {
    content: '';
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sage-light);
}

.profile-picture img + *,
.profile-picture:has(img[style*="display: none"])::after {
    display: block;
}

.story-intro .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.story-intro h1 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.story-intro h1 em {
    font-style: italic;
    color: var(--sage);
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-section h2 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.story-section p {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--muted);
    max-width: 65ch;
}

.story-section ul {
    margin-top: 0.75rem;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.story-section li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
}

.story-cta {
    font-size: 0.9rem;
    color: var(--muted);
}

@media (max-width: 480px) {
    .story-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}