/* ============================================
   Shared Stylesheet — Dr. Victoire Kotur de Castelbajac
   ============================================ */

:root {
    --bg: #ffffff;
    --white: #ffffff;
    --surface: #ffffff;
    --surface-warm: #F5F0EB;
    --blush: #E8D5D0;
    --border: #e8e2da;
    --border-light: #f0ece6;
    --text: #1B3A4B;
    --text-body: #2D2D2D;
    --text-muted: #595959;
    --accent: #2A7F7F;
    --accent-dark: #1F5F5F;
    --accent-light: #A3B5A6;
    --rose: #c4918a;
    --rose-light: #E8D5D0;
    --sage: #A3B5A6;
    --sage-light: #dce8de;
    --cream: #F5F0EB;
    --gold: #C4A882;
    --navy: #1B3A4B;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ---- Navigation ---- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: none;
    box-shadow: 0 1px 8px rgba(27, 58, 75, 0.04);
}

nav.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 20px rgba(27, 58, 75, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
}

.logo-title {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

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

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.nav-links .btn-nav {
    background: var(--accent);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-links .btn-nav:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-1px);
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in { opacity: 1; transform: none; }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: all 0.3s;
}

/* ---- Dropdown Navigation ---- */
.nav-dropdown { position: relative; }

.dropdown-caret {
    font-size: 0.5rem;
    margin-left: 0.2rem;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-caret {
    transform: rotate(180deg);
}

/* Invisible bridge covers the gap between trigger and menu so hover isn't lost */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    height: 1rem;
    background: transparent;
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(27, 58, 75, 0.14);
    padding: 0.5rem 0;
    min-width: 250px;
    list-style: none;
    z-index: 500;
    /* Appear instantly, disappear after 0.35s delay */
    transition: opacity 0.15s ease,
                transform 0.15s ease,
                visibility 0s ease 0.35s,
                pointer-events 0s ease 0.35s;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    color: var(--text-body);
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 400;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s, padding-left 0.15s;
}

.dropdown-menu li a:hover {
    color: var(--accent);
    background: var(--cream);
    padding-left: 1.5rem;
}

.dropdown-menu li + li a {
    border-top: 1px solid var(--border-light);
}

@media (max-width: 900px) {
    /* Accordion toggle: replace caret with +/− indicator */
    .dropdown-caret { display: none; }
    .nav-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }
    .nav-dropdown > a::after {
        content: '+';
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--cream);
        color: var(--accent);
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 1;
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }
    .nav-dropdown.accordion-open > a::after {
        content: '\2212';
        transform: rotate(180deg);
    }

    /* Hide hover bridge on mobile */
    .nav-dropdown::after { display: none; }

    /* Accordion content: collapsed by default */
    .dropdown-menu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex;
        flex-direction: column;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        padding: 0;
        min-width: unset;
        transform: none !important;
        transition: none !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease !important;
    }
    .nav-dropdown.accordion-open .dropdown-menu {
        max-height: 500px;
    }
    .dropdown-menu li a {
        padding: 10px 0 10px 16px;
        font-size: 0.75rem;
        color: var(--text-muted);
        text-transform: none;
        border: none !important;
        border-bottom: 1px solid var(--border-light) !important;
        transition: color 0.2s;
    }
    .dropdown-menu li:last-child a {
        border-bottom: none !important;
    }
    .dropdown-menu li a:hover {
        padding-left: 16px;
        background: transparent;
        color: var(--accent);
    }
}

/* ---- Page Header ---- */
.page-header {
    padding: 10rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(170deg, var(--white) 0%, var(--surface-warm) 100%);
}

.page-header h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
    max-width: 780px;
    margin: 0 auto;
    padding: 6.5rem 2rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ---- Article Page Header ---- */
.article-page-header {
    max-width: 780px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
}

.article-page-header h1 {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

/* ---- Blog Content ---- */
.blog-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

/* ---- Article (single page) ---- */
article {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border-light);
}

article:last-child {
    border-bottom: none;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.article-tag.menopause { background: var(--rose-light); color: var(--rose); }
.article-tag.endometriosis { background: var(--sage-light); color: var(--sage); }
.article-tag.screening { background: var(--cream); color: var(--accent); }
.article-tag.pcos { background: #e8e0f0; color: #7c6891; }
.article-tag.breast { background: #fde8d8; color: #a67c5b; }
.article-tag.fertility { background: #dce8de; color: #5a7d60; }
.article-tag.contraception { background: #e0edf0; color: #4a7a8a; }
.article-tag.fibroids { background: #f0e4e8; color: #8a5a6a; }
.article-tag.sexual-health { background: #e8e4f0; color: #6a5a8a; }
.article-tag.wellness { background: var(--cream); color: var(--accent); }
.article-tag.hrt { background: var(--rose-light); color: #8a6a5a; }
.article-tag.functional-medicine { background: #1B3A4B; color: #fff; }
.article-tag.community { background: var(--sage-light); color: #4a7a5a; }
.article-tag.ovarian-cancer { background: #d8e8ef; color: #4a6e82; }
.article-tag.womens-health { background: #f5edd8; color: #8a7340; }

.article-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.article-read {
    font-size: 0.8rem;
    color: var(--text-muted);
}

article h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

article h3 {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

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

article ul, article ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-body);
}

article li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
    font-size: 0.95rem;
}

article strong {
    color: var(--text);
    font-weight: 600;
}

.article-callout {
    background: var(--surface-warm);
    border-left: 3px solid var(--accent);
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.article-callout p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin-bottom: 0;
    font-style: italic;
}

.article-cta {
    background: var(--surface-warm);
    border: none;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 2px 12px rgba(27, 58, 75, 0.06);
}

.article-cta p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 0;
    font-weight: 500;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-family: var(--sans);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent-light);
}

/* ---- Blog Listing Page ---- */
.blog-listing {
    max-width: 780px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.blog-listing-card {
    display: block;
    text-decoration: none;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s;
}

.blog-listing-card:first-child {
    padding-top: 0;
}

.blog-listing-card:last-child {
    border-bottom: none;
}

.blog-listing-card:hover {
    opacity: 0.85;
}

.blog-listing-card:hover h2 {
    color: var(--accent);
}

.blog-listing-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.blog-listing-card h2 {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.blog-listing-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.read-more {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ---- Related Articles ---- */
.related-articles {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.related-articles h2 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.related-card {
    display: block;
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.2s;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(27, 58, 75, 0.1);
    border-color: var(--border);
}

.related-card .article-tag {
    margin-bottom: 0.75rem;
}

.related-card h3 {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.related-card .article-date {
    font-size: 0.75rem;
}

/* ---- Back Link ---- */
.back-home {
    text-align: center;
    padding: 2rem;
}

.back-home a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.back-home a:hover { text-decoration: underline; }

/* ---- Footer ---- */
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.55);
    padding: 5rem 2rem 2rem;
    text-align: left;
}

footer p {
    font-size: 0.8rem;
}

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

footer a:hover { color: #fff; }

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-name {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: block;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
    color: rgba(255,255,255,0.5);
}

.footer-col h4 {
    color: rgba(255,255,255,0.85);
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

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

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

.footer-col a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.84rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.footer-social a:hover {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
    background: rgba(255,255,255,0.06);
}

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Language Switcher ---- */
.lang-switch a {
    background: var(--surface-warm);
    color: var(--navy);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all 0.2s;
}
.lang-switch a:hover {
    background: var(--navy);
    color: #fff;
}

/* ====================================
   Service Pages
   ==================================== */

/* --- Hero --- */
.svc-hero {
    background: linear-gradient(160deg, var(--navy) 0%, #1a3b4f 55%, #264a60 100%);
    padding: 8rem 2rem 4.5rem;
    position: relative;
    overflow: hidden;
}
.svc-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 55%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(196,145,138,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.svc-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.svc-breadcrumb {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.5);
}
.svc-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.15s;
}
.svc-breadcrumb a:hover { color: #fff; }
.svc-hero-label {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.85rem;
    font-weight: 500;
}
.svc-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.svc-hero-tagline {
    font-size: 1.05rem;
    line-height: 1.72;
    color: rgba(255,255,255,0.76);
    max-width: 640px;
    margin-bottom: 2.5rem;
}
.btn-svc-hero {
    display: inline-block;
    background: var(--rose);
    color: #fff;
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: all 0.2s;
}
.btn-svc-hero:hover {
    background: #b57f78;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(196,145,138,0.45);
}

/* --- Layout --- */
.svc-outer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4.5rem 2rem 5rem;
}
.svc-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

/* --- Main Content Column --- */
.svc-content { min-width: 0; }
.svc-content p {
    color: var(--text-body);
    font-size: 1.01rem;
    line-height: 1.85;
    margin-bottom: 1.4rem;
}
.svc-content h2 {
    font-family: var(--serif);
    font-size: clamp(1.45rem, 2.8vw, 1.95rem);
    font-weight: 500;
    color: var(--navy);
    margin: 2.75rem 0 1.1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border-light);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.svc-content h2:first-child { margin-top: 0; }
.svc-content h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin: 1.75rem 0 0.75rem;
}
.svc-content ul,
.svc-content ol {
    margin: 0.25rem 0 1.5rem;
    padding-left: 0;
    list-style: none;
}
.svc-content ul li,
.svc-content ol li {
    padding: 0.7rem 0.75rem 0.7rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.975rem;
    line-height: 1.7;
    color: var(--text-body);
}
.svc-content ul li:last-child,
.svc-content ol li:last-child { border-bottom: none; }
.svc-content ul li::before {
    content: '→';
    position: absolute;
    left: 0.3rem;
    top: 0.7rem;
    color: var(--accent);
    font-size: 0.8rem;
}
.svc-content ol { counter-reset: svc-ol; }
.svc-content ol li { counter-increment: svc-ol; }
.svc-content ol li::before {
    content: counter(svc-ol);
    position: absolute;
    left: 0.3rem;
    top: 0.68rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.76rem;
}
.svc-content strong { color: var(--text); font-weight: 600; }
.svc-callout {
    background: var(--cream);
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 1.4rem 1.75rem;
    margin: 2.5rem 0;
}
.svc-callout p {
    font-family: var(--serif);
    font-size: 1.15rem;
    line-height: 1.62;
    color: var(--navy);
    font-style: italic;
    margin: 0 !important;
}

/* --- Sidebar --- */
.svc-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.svc-sidebar-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 2px 20px rgba(27,58,75,0.06);
}
.svc-sidebar-card h3 {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.svc-cta-card {
    background: linear-gradient(150deg, #1B3A4B 0%, #1d4659 100%);
    border-color: transparent;
    position: relative;
    overflow: hidden;
    padding-top: 2rem;
}
.svc-cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
}
.svc-cta-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.svc-cta-card p {
    color: rgba(255,255,255,0.65);
    font-size: 0.83rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
}
.btn-svc-book {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--navy);
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}
.btn-svc-book:hover { background: #b89568; color: #fff; }
.btn-svc-contact {
    display: block;
    text-align: center;
    background: transparent;
    color: rgba(255,255,255,0.65);
    padding: 0.72rem 1rem;
    border-radius: 8px;
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.18);
    letter-spacing: 0.02em;
}
.btn-svc-contact:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); }
.svc-nav-list { list-style: none; padding: 0; margin: -0.25rem 0; }
.svc-nav-list li { border-bottom: none; }
.svc-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.65rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    line-height: 1.4;
}
.svc-nav-list li a::after {
    content: '→';
    font-size: 0.72rem;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.15s, transform 0.15s;
    flex-shrink: 0;
}
.svc-nav-list li a:hover {
    color: var(--accent);
    background: var(--sage-light);
    padding-left: 0.9rem;
}
.svc-nav-list li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}
.svc-nav-list li a.svc-nav-current {
    color: var(--accent);
    font-weight: 600;
    background: rgba(42, 127, 127, 0.08);
    padding-left: 0.9rem;
}
.svc-nav-list li a.svc-nav-current::after {
    opacity: 1;
    transform: translateX(0);
}

/* --- Footer CTA strip --- */
.svc-footer-cta {
    background: linear-gradient(135deg, var(--cream) 0%, #ede7df 100%);
    border-top: 1px solid var(--border-light);
    padding: 4.5rem 2rem;
    text-align: center;
}
.svc-footer-cta-inner { max-width: 580px; margin: 0 auto; }
.svc-footer-cta h2 {
    font-family: var(--serif);
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.svc-footer-cta p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
}
.btn-svc-footer {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.95rem 2.75rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: all 0.2s;
}
.btn-svc-footer:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(42,127,127,0.3);
}

/* --- Blog Links Section --- */
.svc-blog-links {
    padding: 4rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--border-light);
}
.svc-blog-links-inner { max-width: 1200px; margin: 0 auto; }
.svc-blog-links h2 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}
.svc-blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.svc-blog-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.35rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    background: var(--white);
}
.svc-blog-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(42,127,127,0.1);
    transform: translateY(-2px);
}
.svc-blog-tag {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}
.svc-blog-title {
    font-size: 0.87rem;
    color: var(--text-body);
    line-height: 1.5;
    font-weight: 500;
}

/* --- Service page responsive --- */
@media (max-width: 960px) {
    .svc-layout { grid-template-columns: 1fr; }
    .svc-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .svc-sidebar-card { flex: 1; min-width: 250px; }
    .svc-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .svc-hero { padding: 7rem 1.25rem 3rem; }
    .svc-outer { padding: 2.5rem 1.25rem 3.5rem; }
    .svc-sidebar { flex-direction: column; }
    .svc-sidebar-card { min-width: unset; }
    .svc-footer-cta { padding: 3rem 1.25rem; }
    .svc-blog-links { padding: 3rem 1.25rem; }
    .svc-blog-grid { grid-template-columns: 1fr; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border: none;
        padding: 1.5rem 2rem;
        gap: 1.25rem;
        box-shadow: 0 8px 30px rgba(27, 58, 75, 0.1);
    }
    .page-header { padding: 8rem 1.25rem 3rem; }
    .blog-content { padding: 3rem 1.25rem 4rem; }
    .blog-listing { padding: 3rem 1.25rem 4rem; }
    .article-page-header { padding: 1.25rem 1.25rem 0; }
    .breadcrumb { padding: 6.5rem 1.25rem 0; }
    .article-cta { flex-direction: column; text-align: center; }
    .related-grid { grid-template-columns: 1fr; gap: 1rem; }
    .related-articles { padding: 0 1.25rem 3rem; }
}

/* ─── Author Bio Section ─── */
.article-author-bio {
    background: var(--surface-warm);
    border-radius: 12px;
    padding: 1.4rem 1.75rem;
    margin-top: 2.5rem;
    border: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.article-author-bio p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 0.35rem;
}

.article-author-bio p:last-child {
    margin-bottom: 0;
}

.article-author-bio strong {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── Blog Inline Image ─── */
.blog-inline-image {
    margin: 2rem 0;
    text-align: center;
}

.blog-inline-image img {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    border-radius: 12px;
}

.blog-inline-image figcaption {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    font-style: italic;
}

/* ─── Article Sources Section ─── */
.article-sources {
    background: var(--surface-warm);
    border-radius: 12px;
    padding: 1.4rem 1.75rem;
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.article-sources h3 {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.8rem;
}

.article-sources ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-sources ul li {
    padding: 0.42rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.article-sources ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.article-sources ul li a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.article-sources ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ─── Service Guidelines Section ─── */
.svc-guidelines {
    background: var(--surface-warm);
    border-radius: 12px;
    padding: 1.4rem 1.75rem;
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.svc-guidelines h2 {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: none;
    padding-bottom: 0;
    margin: 0 0 0.8rem;
    line-height: 1.5;
}

.svc-guidelines > p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
    line-height: 1.6;
}

.svc-content .svc-guidelines-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.svc-content .svc-guidelines-list li {
    padding: 0.42rem 0;
    padding-left: 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.svc-content .svc-guidelines-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.svc-content .svc-guidelines-list li::before {
    display: none;
}

.svc-guidelines-list a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.svc-guidelines-list a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ---- Sticky Mobile CTA Bar ---- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -2px 12px rgba(27, 58, 75, 0.08);
    padding: 0.65rem 1rem;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.mobile-cta-bar a {
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.mobile-cta-bar .cta-book {
    background: var(--accent);
    color: #fff;
    flex: 1;
    justify-content: center;
}

.mobile-cta-bar .cta-book:hover {
    background: var(--accent-dark);
}

.mobile-cta-bar .cta-call {
    background: var(--surface-warm);
    color: var(--navy);
}

@media (max-width: 900px) {
    .mobile-cta-bar { display: flex; }
    body { padding-bottom: 60px; }
}

/* ---- Hamburger X Animation ---- */
.mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Menu Backdrop Overlay ---- */
.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 58, 75, 0.3);
    z-index: 50;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.nav-backdrop.active {
    display: block;
    opacity: 1;
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--navy);
    color: rgba(255,255,255,0.88);
    padding: 1.2rem 2rem;
    font-size: 0.84rem;
    line-height: 1.6;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    animation: cookieSlideUp 0.4s ease-out;
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner.show { display: flex; }
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
.cookie-banner p a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.cookie-banner-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    align-items: center;
}
.cookie-banner-buttons button {
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--sans);
    letter-spacing: 0.04em;
    transition: all 0.2s;
}
.cookie-btn-accept {
    background: var(--accent);
    color: #fff;
    padding: 0.7rem 2rem;
    font-size: 0.88rem;
    box-shadow: 0 2px 8px rgba(183,142,100,0.3);
}
.cookie-btn-accept:hover {
    background: var(--accent-dark);
    box-shadow: 0 3px 12px rgba(183,142,100,0.45);
    transform: translateY(-1px);
}
.cookie-btn-decline {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: none !important;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-btn-decline:hover {
    color: rgba(255,255,255,0.75);
}

@media (max-width: 900px) {
    .cookie-banner { bottom: 60px; }
}
