    /* ============================================================
       DESIGN SYSTEM — Organic / Botanical Luxury
       Palette: deep forest green, warm parchment, soft gold, moss
       Typography: Playfair Display (display) + Lato (body)
    ============================================================ */
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

    :root {
        --forest: #1f4e35;
        --moss: #2d6a4f;
        --sage: #52796f;
        --fern: #74a57f;
        --mist: #d8e8d5;
        --parchment: #f5f0e8;
        --cream: #faf8f3;
        --gold: #b8892a;
        --warm: #e8c97a;
        --charcoal: #2a2a2a;
        --body-text: #3d3d3d;
        --white: #ffffff;

        --radius-sm: 4px;
        --radius-md: 12px;
        --radius-lg: 24px;

        --shadow-sm: 0 2px 8px rgba(31, 78, 53, 0.12);
        --shadow-md: 0 8px 32px rgba(31, 78, 53, 0.16);
        --shadow-lg: 0 20px 60px rgba(31, 78, 53, 0.2);

        --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: 'Lato', sans-serif;
        background: var(--cream);
        color: var(--body-text);
        line-height: 1.7;
        overflow-x: hidden;
    }

    /* ── Skip link (accessibility) ── */
    .skip-link {
        position: absolute;
        top: -100%;
        left: 1rem;
        background: var(--forest);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: var(--radius-sm);
        font-weight: 700;
        z-index: 9999;
        text-decoration: none;
        transition: top 0.2s;
    }

    .skip-link:focus {
        top: 1rem;
    }

    /* ── Cookie Banner (GDPR) ── */
    #cookie-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--forest);
        color: var(--white);
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        flex-wrap: wrap;
        z-index: 9000;
        font-size: 0.875rem;
    }

    #cookie-banner a {
        color: var(--warm);
        text-decoration: underline;
    }

    #cookie-banner button {
        background: var(--gold);
        color: var(--white);
        border: none;
        padding: 0.5rem 1.25rem;
        border-radius: var(--radius-sm);
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
    }

    #cookie-banner button:hover {
        background: var(--warm);
        color: var(--charcoal);
    }

    /* ── Header & Navigation ── */
    header {
        position: sticky;
        top: 0;
        z-index: 800;
        background: var(--white);
        border-bottom: 1px solid var(--mist);
        box-shadow: var(--shadow-sm);
    }

    .header-top {
        background: var(--forest);
        color: var(--white);
        font-size: 0.8rem;
        padding: 0.4rem 2rem;
        display: flex;
        justify-content: flex-end;
        gap: 2rem;
        align-items: center;
    }

    .header-top a {
        color: var(--warm);
        text-decoration: none;
    }

    .header-top a:hover {
        color: var(--white);
    }

    .header-main {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
        background: var(--forest);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
        padding: 6px;
        object-fit: contain;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
    }

    .logo-text .brand-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--forest);
        line-height: 1.1;
        letter-spacing: 0.02em;
    }

    .logo-text .brand-tagline {
        font-size: 0.7rem;
        color: var(--sage);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        font-weight: 700;
    }

    nav {
        display: flex;
        gap: 0.25rem;
        align-items: center;
    }

    nav ul {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 0.25rem;
        margin: 0;
        padding: 0;
    }

    nav li {
        display: flex;
        align-items: center;
    }

    nav a {
        color: var(--body-text);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-sm);
        transition: color var(--transition), background var(--transition);
        text-transform: uppercase;
    }

    nav a:hover {
        color: var(--moss);
        background: var(--mist);
    }

    nav a.cta {
        background: var(--moss);
        color: var(--white);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
    }

    nav a.cta:hover {
        background: var(--forest);
    }

    /* Hamburger */
    .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 0.5rem;
        background: none;
        border: none;
        aria-label: "Toggle menu";
    }

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--forest);
        border-radius: 2px;
        transition: var(--transition);
    }

    /* ── Hero Section ── */
    .hero {
        position: relative;
        min-height: 92vh;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 80% 80% at 60% 40%, rgba(116, 165, 127, 0.15) 0%, transparent 70%),
            radial-gradient(ellipse 50% 60% at 10% 80%, rgba(31, 78, 53, 0.08) 0%, transparent 60%),
            var(--cream);
    }

    /* Botanical SVG background decoration */
    .hero-botanical {
        position: absolute;
        right: -40px;
        top: -40px;
        width: 55%;
        height: 110%;
        background: var(--forest);
        clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
        z-index: 0;
    }

    .hero-botanical::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 60% 60% at 70% 30%, rgba(116, 165, 127, 0.3) 0%, transparent 70%),
            radial-gradient(ellipse 40% 50% at 30% 80%, rgba(184, 137, 42, 0.15) 0%, transparent 60%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        padding: 4rem 2rem 4rem 10%;
        max-width: 680px;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--mist);
        color: var(--moss);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        padding: 0.4rem 1rem;
        border-radius: 50px;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(45, 106, 79, 0.2);
    }

    .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.2rem, 4.5vw, 3.8rem);
        font-weight: 700;
        color: var(--forest);
        line-height: 1.15;
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
    }

    .hero-title em {
        font-style: italic;
        color: var(--gold);
    }

    .hero-subtitle {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.25rem;
        color: var(--sage);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-ctas {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--forest);
        color: var(--white);
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 0.03em;
        transition: all var(--transition);
        box-shadow: 0 4px 20px rgba(31, 78, 53, 0.3);
    }

    .btn-primary:hover {
        background: var(--moss);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(31, 78, 53, 0.4);
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: transparent;
        color: var(--forest);
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        border: 2px solid var(--forest);
        transition: all var(--transition);
    }

    .btn-secondary:hover {
        background: var(--forest);
        color: var(--white);
    }

    .hero-trust {
        display: flex;
        gap: 2rem;
        align-items: center;
    }

    .trust-item {
        display: flex;
        flex-direction: column;
    }

    .trust-num {
        font-family: 'Playfair Display', serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--forest);
        line-height: 1;
    }

    .trust-label {
        font-size: 0.75rem;
        color: var(--sage);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
    }

    .trust-sep {
        width: 1px;
        height: 40px;
        background: var(--mist);
    }

    .hero-visual {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 4rem 8% 4rem 4rem;
    }

    .hero-photo-wrap {
        position: relative;
    }

    .hero-photo-frame {
        width: 340px;
        height: 440px;
        border-radius: 180px 180px 120px 120px;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.25);
        overflow: hidden;
        position: relative;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    }

    /* Placeholder for photo — replace src with real image */
    .hero-photo-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        filter: brightness(1.05) saturate(0.9);
    }

    /* Floating credential card */
    .cred-card {
        position: absolute;
        bottom: -20px;
        left: -60px;
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 1rem 1.25rem;
        box-shadow: var(--shadow-md);
        min-width: 200px;
    }

    .cred-card .cred-name {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: var(--forest);
        font-size: 0.95rem;
    }

    .cred-card .cred-qual {
        font-size: 0.75rem;
        color: var(--sage);
        margin-top: 0.25rem;
    }

    .cred-card .cred-badges {
        display: flex;
        gap: 0.5rem;
        margin-top: 0.75rem;
    }

    .cred-badge {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        background: var(--mist);
        color: var(--moss);
    }

    /* Floating review card */
    .review-card {
        position: absolute;
        top: 30px;
        right: -40px;
        background: var(--gold);
        border-radius: var(--radius-md);
        padding: 0.75rem 1rem;
        box-shadow: var(--shadow-md);
        color: var(--white);
        text-align: center;
        width: 110px;
    }

    .review-stars {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .review-score {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 1;
        margin: 0.15rem 0;
    }

    .review-label {
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        opacity: 0.9;
    }

    /* ── Section Styles ── */
    section {
        padding: 5rem 2rem;
    }

    .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .section-label {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 0.75rem;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 3vw, 2.8rem);
        font-weight: 700;
        color: var(--forest);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .section-body {
        font-size: 1.05rem;
        color: var(--sage);
        max-width: 600px;
        line-height: 1.8;
    }

    /* ── Services Section ── */
    .services-section {
        background: var(--parchment);
    }

    .services-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .services-header .section-body {
        margin: 0 auto;
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 2.5rem 2rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(45, 106, 79, 0.08);
        transition: all var(--transition);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--forest), var(--fern));
        opacity: 0;
        transition: opacity var(--transition);
    }

    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .service-card:hover::before {
        opacity: 1;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
        display: block;
    }

    .service-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--forest);
        margin-bottom: 0.75rem;
    }

    .service-desc {
        font-size: 0.9rem;
        color: var(--sage);
        line-height: 1.7;
    }

    /* ── About Section ── */
    .about-section {
        background: var(--white);
    }

    .about-grid {
        display: grid;
        grid-template-columns: 5fr 7fr;
        gap: 5rem;
        align-items: center;
    }

    .about-photo-wrap {
        position: relative;
    }

    .about-photo {
        width: 100%;
        aspect-ratio: 3/4;
        border-radius: var(--radius-lg);
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .about-photo-placeholder {
        width: 100%;
        aspect-ratio: 3/4;
        border-radius: var(--radius-lg);
        background: linear-gradient(160deg, var(--mist) 0%, var(--fern) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
    }

    .about-accent {
        position: absolute;
        bottom: -20px;
        right: -20px;
        width: 120px;
        height: 120px;
        background: var(--gold);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
    }

    .about-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 3vw, 3rem);
        font-weight: 700;
        color: var(--forest);
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }

    .about-content p {
        font-size: 1rem;
        color: var(--body-text);
        line-height: 1.85;
        margin-bottom: 1rem;
    }

    .qualifications {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }

    .qual-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        font-size: 0.9rem;
        color: var(--body-text);
    }

    .qual-check {
        width: 22px;
        height: 22px;
        background: var(--mist);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .qual-check svg {
        width: 12px;
        height: 12px;
        stroke: var(--moss);
        stroke-width: 2.5;
        fill: none;
    }

    /* ── Process / How It Works ── */
    .process-section {
        background: var(--forest);
        color: var(--white);
    }

    .process-section .section-label {
        color: var(--warm);
    }

    .process-section .section-title {
        color: var(--white);
    }

    .process-section .section-body {
        color: rgba(255, 255, 255, 0.7);
    }

    .process-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .process-header .section-body {
        margin: 0 auto;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        position: relative;
    }

    /* Connecting line */
    .process-steps::before {
        content: '';
        position: absolute;
        top: 28px;
        left: calc(12.5% + 0.5rem);
        right: calc(12.5% + 0.5rem);
        height: 2px;
        background: linear-gradient(90deg, var(--fern), var(--warm), var(--fern));
        opacity: 0.4;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-num {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--warm);
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 1;
    }

    .step-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 0.5rem;
    }

    .step-desc {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.6;
    }

    /* ── FAQ Section ── */
    .faq-section {
        background: var(--parchment);
    }

    .faq-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
        align-items: start;
    }

    .faq-sidebar .section-body {
        font-size: 1rem;
        margin-top: 1rem;
    }

    details.faq-item {
        background: var(--white);
        border-radius: var(--radius-md);
        margin-bottom: 0.75rem;
        border: 1px solid rgba(45, 106, 79, 0.1);
        overflow: hidden;
    }

    details.faq-item summary {
        cursor: pointer;
        padding: 1.25rem 1.5rem;
        font-weight: 700;
        color: var(--forest);
        font-size: 0.95rem;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        user-select: none;
    }

    details.faq-item summary::-webkit-details-marker {
        display: none;
    }

    details.faq-item summary::after {
        content: '+';
        font-size: 1.4rem;
        font-weight: 300;
        color: var(--gold);
        line-height: 1;
        flex-shrink: 0;
        transition: transform var(--transition);
    }

    details.faq-item[open] summary::after {
        transform: rotate(45deg);
    }

    .faq-answer {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.9rem;
        color: var(--body-text);
        line-height: 1.75;
    }

    /* ── Booking / CTA Section ── */
    .booking-section {
        background: var(--cream);
        text-align: center;
    }

    .booking-card {
        background: var(--forest);
        border-radius: var(--radius-lg);
        padding: 4rem 3rem;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }

    .booking-card::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
    }

    .booking-card::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(184, 137, 42, 0.12);
    }

    .booking-card .section-label {
        color: var(--warm);
    }

    .booking-card .section-title {
        color: var(--white);
        margin-bottom: 1rem;
    }

    .booking-card p {
        color: rgba(255, 255, 255, 0.75);
        margin-bottom: 2rem;
        font-size: 1.05rem;
    }

    .booking-actions {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
    }

    .btn-white {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--white);
        color: var(--forest);
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        transition: all var(--transition);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-white:hover {
        background: var(--warm);
        color: var(--charcoal);
        transform: translateY(-2px);
    }

    .btn-outline-white {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: transparent;
        color: var(--white);
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        border: 2px solid rgba(255, 255, 255, 0.5);
        transition: all var(--transition);
    }

    .btn-outline-white:hover {
        border-color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    /* Contact info row */
    .contact-row {
        display: flex;
        gap: 2rem;
        justify-content: center;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .contact-item a {
        color: var(--warm);
        text-decoration: none;
    }

    .contact-item a:hover {
        color: var(--white);
    }

    /* ── Social Proof / Reviews ── */
    .reviews-section {
        background: var(--white);
    }

    .reviews-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .review-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .review-item {
        background: var(--parchment);
        border-radius: var(--radius-md);
        padding: 1.75rem;
        border: 1px solid rgba(45, 106, 79, 0.08);
    }

    .review-item .stars {
        color: var(--gold);
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }

    .review-item blockquote {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.05rem;
        color: var(--body-text);
        line-height: 1.7;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .review-item cite {
        font-size: 0.8rem;
        color: var(--sage);
        font-weight: 700;
        font-style: normal;
    }

    .reviews-cta {
        text-align: center;
        font-size: 0.9rem;
        color: var(--sage);
    }

    .reviews-cta a {
        color: var(--moss);
        font-weight: 700;
        text-decoration: none;
    }

    .reviews-cta a:hover {
        text-decoration: underline;
    }

    /* ── Blog Teaser ── */
    .blog-section {
        background: var(--parchment);
    }

    .blog-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 2.5rem;
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-card {
        background: var(--white);
        border-radius: var(--radius-md);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--transition);
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

    .blog-card-body {
        padding: 1.75rem;
        flex: 1;
    }

    .blog-tag {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--moss);
        background: var(--mist);
        padding: 0.25rem 0.6rem;
        border-radius: 4px;
        display: inline-block;
        margin-bottom: 0.75rem;
    }

    .blog-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.15rem;
        color: var(--forest);
        margin-bottom: 0.75rem;
        line-height: 1.35;
    }

    .blog-card p {
        font-size: 0.875rem;
        color: var(--sage);
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    /* Better link text than "Read more" — fixes audit finding -->  */
    .blog-read-link {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--moss);
        text-decoration: none;
        letter-spacing: 0.04em;
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .blog-read-link:hover {
        color: var(--forest);
    }

    .blog-read-link::after {
        content: '→';
    }

    /* ── Social Links Strip ── */
    .social-strip {
        background: var(--forest);
        padding: 2rem;
        text-align: center;
    }

    .social-strip p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--white);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 700;
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        transition: all var(--transition);
    }

    .social-link:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.5);
    }

    /* ── Footer ── */
    footer {
        background: var(--charcoal);
        color: rgba(255, 255, 255, 0.6);
        padding: 3rem 2rem 1.5rem;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;
        max-width: 1100px;
        margin: 0 auto 2rem;
    }

    .footer-brand .brand-name {
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        color: var(--white);
        margin-bottom: 0.75rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .footer-col h4 {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--warm);
        margin-bottom: 1rem;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col li {
        margin-bottom: 0.5rem;
    }

    .footer-col a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color var(--transition);
    }

    .footer-col a:hover {
        color: var(--white);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.25rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 1100px;
        margin: 0 auto;
        font-size: 0.8rem;
    }

    .footer-bottom a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
    }

    .footer-bottom a:hover {
        color: var(--white);
    }

    /* ── Animations ── */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-badge {
        animation: fadeUp 0.6s ease 0.1s both;
    }

    .hero-title {
        animation: fadeUp 0.6s ease 0.25s both;
    }

    .hero-subtitle {
        animation: fadeUp 0.6s ease 0.4s both;
    }

    .hero-ctas {
        animation: fadeUp 0.6s ease 0.55s both;
    }

    .hero-trust {
        animation: fadeUp 0.6s ease 0.7s both;
    }

    .hero-visual {
        animation: fadeUp 0.6s ease 0.35s both;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
        .hero {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .hero-botanical {
            display: none;
        }

        .hero-content {
            padding: 4rem 5%;
            max-width: 100%;
            text-align: center;
        }

        .hero-ctas {
            justify-content: center;
        }

        .hero-trust {
            justify-content: center;
        }

        .hero-visual {
            display: none;
        }

        .services-grid {
            grid-template-columns: 1fr 1fr;
        }

        .about-grid {
            grid-template-columns: 1fr;
        }

        .about-photo-wrap {
            max-width: 320px;
            margin: 0 auto;
        }

        .process-steps {
            grid-template-columns: 1fr 1fr;
        }

        .process-steps::before {
            display: none;
        }

        .faq-layout {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    /* ── Interior Pages ── */
    .page-hero {
        background: var(--forest);
        padding: 4rem 2rem 3rem;
    }

    .page-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700;
        color: var(--white);
        line-height: 1.2;
        max-width: 1100px;
        margin: 0 auto;
    }

    .page-content {
        padding: 4rem 2rem;
    }

    .page-content .container {
        max-width: 1100px;
    }

    .page-content p {
        font-size: 1.05rem;
        color: var(--body-text);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .page-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        color: var(--forest);
        margin: 2.5rem 0 1rem;
    }

    .page-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.3rem;
        color: var(--forest);
        margin: 2rem 0 0.75rem;
    }

    /* ── Page CTA Block ── */
    .page-cta {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
        align-items: center;
    }

    .page-cta a {
        width: auto;
        flex-shrink: 0;
    }

    /* ── Definition Lists (Actions of Herbs) ── */
    dl {
        margin: 1rem 0 2rem;
    }

    dt {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: var(--forest);
        margin-top: 1rem;
    }

    dd {
        margin-left: 0;
        color: var(--body-text);
        line-height: 1.7;
        padding-left: 1rem;
        border-left: 3px solid var(--gold);
    }

    /* ── Responsive — Tablet (1024px) ── */
    @media (max-width: 1024px) {
        .hero {
            grid-template-columns: 1fr;
            min-height: auto;
        }

        .hero-botanical {
            display: none;
        }

        .hero-content {
            padding: 4rem 5%;
            max-width: 100%;
            text-align: center;
        }

        .hero-ctas {
            justify-content: center;
        }

        .hero-trust {
            justify-content: center;
        }

        .hero-visual {
            display: none;
        }

        .services-grid {
            grid-template-columns: 1fr 1fr;
        }

        .about-grid {
            grid-template-columns: 1fr;
        }

        .about-photo-wrap {
            max-width: 320px;
            margin: 0 auto;
        }

        .process-steps {
            grid-template-columns: 1fr 1fr;
        }

        .process-steps::before {
            display: none;
        }

        .faq-layout {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .header-top {
            display: none;
        }

        .header-main {
            position: relative;
            padding: 0.75rem 1rem;
            max-width: 100%;
            margin: 0;
        }

        header {
            position: relative !important;
        }

        nav {
            display: none;
        }

        .nav-toggle {
            display: flex;
        }

        nav.open {
            display: block !important;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            box-shadow: var(--shadow-md);
            z-index: 1000;
            width: 100%;
        }

        nav.open ul {
            display: flex !important;
            flex-direction: column !important;
            align-items: stretch !important;
            width: 100%;
            gap: 0;
            padding: 0;
            margin: 0;
        }

        nav.open ul li {
            width: 100%;
        }

        nav.open ul li a {
            display: block;
            width: 100%;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid var(--mist);
            text-align: center;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .review-cards {
            grid-template-columns: 1fr;
        }

        .blog-grid {
            grid-template-columns: 1fr;
        }

        .process-steps {
            grid-template-columns: 1fr;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }

        .cred-card {
            left: 0;
            bottom: -15px;
        }

        .review-card {
            right: 0;
            top: 10px;
        }

        .hero-trust {
            overflow-x: auto;
            padding-bottom: 0.5rem;
            gap: 1rem;
        }

        .trust-item {
            min-width: 70px;
        }

        .hero-ctas {
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .hero-ctas a {
            width: 100%;
            text-align: center;
        }

        #wpadminbar~#cookie-banner,
        #cookie-banner {
            left: 0;
            right: 0;
            width: 100vw;
            max-width: 100vw;
            box-sizing: border-box;
            overflow: hidden;
            padding: 1rem;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
        }

        #cookie-banner p {
            margin: 0;
            width: 100%;
        }

        #cookie-banner button {
            width: 100%;
            text-align: center;
        }

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

        .social-strip {
            padding: 1.5rem 1rem;
            text-align: center;
        }

        .social-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
        }

        .social-link {
            flex: 0 1 auto;
        }

        .page-hero {
            padding: 2.5rem 1rem 2rem;
        }

        .page-title {
            font-size: clamp(1.6rem, 6vw, 2.5rem);
        }

        .page-content {
            padding: 2rem 1rem;
        }

        .page-cta {
            flex-direction: column;
        }

        .page-cta a {
            width: 100%;
            text-align: center;
        }
    }
    /* ── WPForms Contact Form ── */
.wpforms-container {
    max-width: 600px;
    margin: 2rem 0;
}

.wpforms-field-label {
    font-family: 'Playfair Display', serif;
    color: var(--forest);
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.wpforms-field input,
.wpforms-field textarea {
    width: 100%;
    border: 1px solid var(--mist);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--body-text);
    background: var(--white);
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
    outline: none;
    border-color: var(--forest);
}

.wpforms-submit-container {
    margin-top: 1rem;
}
.wpforms-submit {
    background: var(--forest) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all var(--transition) !important;
}

.wpforms-submit:hover {
    background: var(--moss) !important;
}

.wpforms-container {
    max-width: 600px;
    margin: 2rem 0 !important;
}