/* ========== CSS VARIABLES ========== */
:root {
    --color-primary: #1a2e44;
    --color-primary-dark: #0f1d2e;
    --color-primary-light: #2a4560;
    --color-accent: #4E6342;
    --color-accent-hover: #3D4F34;
    --color-accent-light: #8BA67B;
    --color-accent-subtle: rgba(78,99,66,0.07);
    --color-bg: #faf8f5;
    --color-bg-alt: #f5f1ec;
    --color-bg-dark: #1a2e44;
    --color-text: #1c1917;
    --color-text-light: #57534e;
    --color-text-lighter: #78716c;
    --color-white: #FFFFFF;
    --color-border: #e7e0d8;
    --shadow-sm: 0 1px 2px rgba(120,90,50,0.04);
    --shadow-md: 0 4px 16px rgba(120,90,50,0.06), 0 1px 3px rgba(120,90,50,0.03);
    --shadow-lg: 0 12px 40px rgba(120,90,50,0.07), 0 4px 12px rgba(120,90,50,0.04);
    --shadow-xl: 0 20px 60px rgba(120,90,50,0.09), 0 8px 20px rgba(120,90,50,0.05);
    --radius: 14px;
    --radius-lg: 22px;
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1200px;
    --banner-height: 40px;
    --nav-height: 76px;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + var(--banner-height)); }
body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary); }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--color-primary); line-height: 1.25; font-weight: 700; }

/* ========== ACCESSIBILITY ========== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
    color: #fff;
}
*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}
.nav-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 110px 0; }
.section { padding: 100px 0; }
.section-alt { padding: 100px 0; background: var(--color-bg-alt); }

.section h2,
.section-alt h2 {
    text-align: center;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 12px;
    color: var(--color-primary);
}
.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.85;
}
.section-header p + p {
    margin-top: 22px;
}

/* Paragraph spacing in narrative sections (Focus Areas pages) */
.section > .container > p,
.section-alt > .container > p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.85;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section > .container > p + p,
.section-alt > .container > p + p {
    margin-top: 22px;
}
.section > .container > h2 + p,
.section-alt > .container > h2 + p {
    margin-top: 0;
}

/* Narrative content blocks (Who We Help expanded descriptions) */
.narrative-content {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}
.narrative-content p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.85;
}
.narrative-content p + p {
    margin-top: 22px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

/* ========== TOP BANNER ========== */
.top-banner {
    background: linear-gradient(135deg, #3D4F34, #4E6342);
    color: var(--color-white);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    letter-spacing: 0.01em;
}
.top-banner a {
    color: var(--color-white);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}
.top-banner a:hover { color: #ccfbf1; }

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: var(--banner-height);
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(250,248,245,0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all 0.3s;
}
.nav.scrolled {
    box-shadow: 0 1px 12px rgba(120,90,50,0.06);
    border-bottom-color: var(--color-border);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 8px;
    margin-left: -64px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.nav-logo .logo-text { display: flex; gap: 0.35em; }
.nav-logo .logo-text span { color: var(--color-accent); }
.nav-logo span { color: var(--color-accent); }
.nav-logo img { height: 80px; width: auto; display: block; mix-blend-mode: multiply; }
.footer-brand .nav-logo img { height: 55px; width: auto; filter: brightness(0) invert(1); }
.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}
.nav-links a,
.nav-links .nav-dropdown-trigger {
    display: block;
    padding: 8px 9px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-light);
    border-radius: 8px;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .nav-dropdown-trigger:hover {
    color: var(--color-primary);
    background: var(--color-bg-alt);
}
.nav-cta {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    font-weight: 600 !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
}
.nav-cta:hover {
    background: var(--color-accent-hover) !important;
    transform: translateY(-1px);
}

/* Nav Dropdowns */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-trigger {
    background: none;
    border: none;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-dropdown-trigger svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.2s;
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(8px);
    z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-dropdown-trigger svg,
.nav-dropdown.open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}
.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-light);
    border-radius: 0;
    transition: all 0.15s;
}
.nav-dropdown-menu a:hover {
    color: var(--color-accent);
    background: var(--color-accent-subtle);
}
.nav-dropdown-menu .dropdown-group-label {
    display: block;
    padding: 10px 20px 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    cursor: default;
}
.nav-dropdown-menu .dropdown-group-divider {
    height: 1px;
    background: var(--color-border);
    margin: 6px 0;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
    padding: 10px 6px;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
    padding-top: calc(var(--nav-height) + var(--banner-height) + 80px);
    padding-bottom: 100px;
    background: url('../images/site/hero-heart-tree.jpg') center 35% / cover no-repeat;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 46, 68, 0.55);
    z-index: 0;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 5.5vw, 3.6rem);
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.hero-content h1 em {
    font-style: italic;
    color: var(--color-accent-light);
}
.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}
.hero-content .hero-subtext {
    font-size: 1rem;
    margin-bottom: 32px;
}
.hero-concerns {
    display: grid;
    grid-template-columns: 270px 270px;
    gap: 10px 32px;
    max-width: 572px;
    margin: 0 auto 32px;
    text-align: left;
}
.hero-concern {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
}
.hero-concern svg {
    width: 18px;
    height: 18px;
    fill: var(--color-accent-light);
    flex-shrink: 0;
}
@media (max-width: 480px) {
    .hero-concerns { grid-template-columns: 1fr; max-width: 280px; }
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(78,99,66,0.25);
}
.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(78,99,66,0.3);
    color: var(--color-white);
}
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}
.hero .btn-outline {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.7);
}
.hero .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--color-white);
    color: var(--color-white);
}

/* Trust bar */
.trust-bar {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
}
.trust-item svg { width: 20px; height: 20px; fill: var(--color-accent-light); flex-shrink: 0; }

/* ========== SERVICES ========== */
.services { background: var(--color-bg-alt); }
.services-image {
    max-width: 900px;
    margin: 0 auto 56px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.services-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon.blue { background: rgba(78,99,66,0.08); }
.service-icon.blue svg { fill: var(--color-accent); }
.service-icon.green { background: rgba(26,46,68,0.06); }
.service-icon.green svg { fill: var(--color-primary); }
.service-icon.warm { background: rgba(180,140,80,0.1); }
.service-icon.warm svg { fill: #a17c3e; }
.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}
.service-card p {
    font-size: 0.93rem;
    color: var(--color-text-light);
    line-height: 1.65;
}

/* Modalities strip */
.modalities {
    margin-top: 64px;
    text-align: center;
}
.modalities h3 {
    font-size: 1.05rem;
    margin-bottom: 22px;
    color: var(--color-text-light);
    font-weight: 500;
    font-family: var(--font-sans);
}
.modality-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.modality-tag {
    padding: 8px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.2s;
}
.modality-tag:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* ========== TEAM ========== */
.team { background: var(--color-white); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--color-white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    color: inherit;
}
.team-card-avatar {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.team-card-avatar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255,255,255,0.15), transparent);
}
.team-card-avatar .initials {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.25);
}
.team-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.team-card-avatar.photo-top img {
    object-position: center 12%;
}
.team-card-avatar.c1 { background: linear-gradient(145deg, #1a2e44 0%, #2a4560 50%, #4E6342 100%); }
.team-card-avatar.c2 { background: linear-gradient(145deg, #4E6342 0%, #6B8A5B 50%, #8BA67B 100%); }
.team-card-avatar.c3 { background: linear-gradient(145deg, #2a4560 0%, #1a2e44 50%, #4E6342 100%); }
.team-card-avatar.c4 { background: linear-gradient(145deg, #3D4F34 0%, #4E6342 50%, #8BA67B 100%); }
.team-card-avatar.c5 { background: linear-gradient(145deg, #1a2e44 0%, #2a4560 60%, #3b6080 100%); }
.team-card-avatar.c6 { background: linear-gradient(145deg, #4E6342 0%, #1a2e44 60%, #2a4560 100%); }
.team-card-avatar.c7 { background: linear-gradient(145deg, #2a4560 0%, #3D4F34 50%, #4E6342 100%); }
.team-card-avatar.c8 { background: linear-gradient(145deg, #6B8A5B 0%, #4E6342 50%, #1a2e44 100%); }

.team-card-body { padding: 22px 24px; }
.team-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-primary);
}
.team-card-body .role {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.team-card-body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
}
.team-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}
.team-specialties span {
    padding: 4px 12px;
    background: var(--color-accent-subtle);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* ========== HOMEPAGE RESOURCES ========== */
.resources { background: var(--color-bg-alt); }
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.resources-grid .resource-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--color-accent-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.resources-grid .resource-card-icon svg { width: 26px; height: 26px; fill: var(--color-accent); }
.resource-card-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.resource-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ========== FAQ ========== */
.faq { background: var(--color-white); }
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item.open {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.2s;
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--color-accent); transform: rotate(45deg); border-radius: 50%; }
.faq-icon svg { width: 14px; height: 14px; fill: var(--color-primary); }
.faq-item.open .faq-icon svg { fill: white; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner {
    padding: 0 28px 22px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--color-bg-alt); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 36px 30px;
    transition: all 0.3s;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}
.testimonial-stars svg { width: 18px; height: 18px; fill: #d4a843; }
.testimonial-card blockquote {
    font-family: var(--font-serif);
    font-size: 1.02rem;
    font-style: italic;
    line-height: 1.75;
    color: var(--color-text);
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}
.testimonial-avatar.t1 { background: linear-gradient(135deg, #1a2e44, #4E6342); }
.testimonial-avatar.t2 { background: linear-gradient(135deg, #4E6342, #8BA67B); }
.testimonial-avatar.t3 { background: linear-gradient(135deg, #2a4560, #3D4F34); }
.testimonial-author-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-primary);
}
.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--color-text-lighter);
}

/* ========== CONTACT ========== */
.contact {
    background: var(--color-bg-alt);
    position: relative;
}
.contact-bg {
    background: url('../images/site/beach-figure.jpg') center / cover no-repeat;
}
.contact-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.88);
    z-index: 0;
}
.contact-bg .container {
    position: relative;
    z-index: 1;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}
.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-accent-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; fill: var(--color-accent); }
.contact-detail-text strong {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-lighter);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.contact-detail-text span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
}

.contact-form {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-bg-alt);
    transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: -1px;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(78,99,66,0.08);
    background: var(--color-white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(rgba(15, 29, 46, 0.92), rgba(15, 29, 46, 0.95)), url('../images/site/moonrise-lake.jpg') center / cover no-repeat;
    color: rgba(255,255,255,0.7);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .nav-logo { color: var(--color-white); font-size: 1.4rem; margin-bottom: 16px; display: inline-block; }
.footer-brand .nav-logo span { color: #8BA67B; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #8BA67B; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
    padding: 16px 0;
    margin-top: calc(var(--nav-height) + var(--banner-height));
}
.breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-lighter);
}
.breadcrumb li a {
    color: var(--color-text-light);
    font-weight: 500;
}
.breadcrumb li a:hover {
    color: var(--color-accent);
}
.breadcrumb .separator {
    color: var(--color-text-lighter);
    font-size: 0.75rem;
}
.breadcrumb li:last-child {
    color: var(--color-accent);
    font-weight: 600;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    background: var(--color-bg-alt);
    padding: 80px 0 90px;
    position: relative;
}
.page-hero .section-header {
    margin-bottom: 0;
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-primary);
    margin-bottom: 20px;
}
.page-hero p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ========== CTA BANNER (inner pages) ========== */
.page-cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 88px 0;
    text-align: center;
}
.page-cta-banner h2 {
    color: var(--color-white);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    margin-bottom: 16px;
}
.page-cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.page-cta-banner .btn-primary {
    background: var(--color-accent);
    font-size: 1.05rem;
    padding: 16px 36px;
}
.page-cta-banner .btn-primary:hover {
    background: var(--color-accent-hover);
}

/* ========== THERAPIST PAGE ========== */
.therapist-hero {
    padding: 60px 0 80px;
    background: var(--color-bg-alt);
}
.therapist-hero-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}
.therapist-avatar-lg {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.therapist-avatar-lg .initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-white);
}
.therapist-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.25);
}
.therapist-hero-info h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--color-primary);
    margin-bottom: 8px;
}
.therapist-hero-info .role {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.therapist-hero-info p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}
.therapist-hero-info .btn {
    margin-top: 8px;
}

/* Therapist detail sections */
.therapist-section {
    padding: 80px 0;
}
.therapist-section:nth-child(even) {
    background: var(--color-bg-alt);
}
.therapist-section h2 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--color-primary);
}
.therapist-section p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 760px;
}
.specialties-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.specialty-card {
    flex: 1 1 200px;
    max-width: 260px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
    transition: all 0.2s;
}
.specialty-card:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}
.modality-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

/* ========== CONDITION/CONCERN PAGE ========== */
.condition-signs {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 32px;
}
.condition-signs li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    color: var(--color-text);
    padding: 14px 18px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 10px;
}
.condition-signs li .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-accent-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.condition-signs li .check svg { width: 12px; height: 12px; fill: var(--color-accent); }

/* Approach cards for condition pages */
.approach-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 32px;
}
.approach-card {
    flex: 1 1 300px;
    max-width: 480px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s;
}
.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.approach-card h3 {
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--color-primary);
}
.approach-card p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* Related concerns links */
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}
.related-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all 0.2s;
}
.related-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Two-column content layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Recommended therapists strip */
.therapist-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}
.therapist-mini-card {
    flex: 1 1 240px;
    max-width: 340px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.therapist-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
    color: inherit;
}
.therapist-mini-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}
.therapist-mini-avatar img,
.therapist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 50%;
}
.therapist-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}
.therapist-mini-card h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    font-family: var(--font-sans);
}
.therapist-mini-card .role {
    font-size: 0.75rem;
    color: var(--color-text-lighter);
}

/* ========== FULL-WIDTH IMAGE BREAKS ========== */
/* Page feature image (Who We Help pages) */
.page-feature-image {
    max-width: 900px;
    margin: 0 auto 0;
    border-radius: var(--radius);
    overflow: hidden;
    height: 340px;
}
.page-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.image-break {
    width: 100%;
    height: 360px;
    overflow: hidden;
}
.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========== PAGE HERO VARIANTS ========== */
.page-hero-resources {
    background: url('../images/site/sand-ripples.jpg') center / cover no-repeat;
    position: relative;
}
.page-hero-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.82);
}
.page-hero-resources .container {
    position: relative;
    z-index: 1;
}

.page-hero-focus {
    background: url('../images/site/forest-waterfall.jpg') center / cover no-repeat;
    position: relative;
}
.page-hero-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 245, 0.85);
}
.page-hero-focus .container {
    position: relative;
    z-index: 1;
}

/* ========== MOBILE ========== */
@media (max-width: 1024px) {
    .services-grid,
    .resources-grid,
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 100px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        gap: 4px;
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-links a { padding: 14px 16px; font-size: 1rem; }

    /* Mobile dropdown styling */
    .nav-dropdown { width: 100%; }
    .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 14px 16px; font-size: 1rem; }
    .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        box-shadow: none;
        border: none;
        background: var(--color-bg-alt);
        border-radius: 10px;
        min-width: 100%;
    }
    .nav-dropdown-menu {
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s;
        padding: 0;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        visibility: visible;
        max-height: 900px;
        padding: 8px 0;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
        visibility: hidden;
        max-height: 0;
    }
    .nav-dropdown:hover.open .nav-dropdown-menu {
        visibility: visible;
        max-height: 900px;
    }

    .nav-logo {
        margin-left: 0;
    }
    .nav-logo img {
        height: 60px;
    }
    .nav-logo .logo-text span {
        display: none;
    }
    .nav-logo .logo-text::after {
        content: "Counseling";
        color: var(--color-accent);
    }

    .hero { padding-top: calc(var(--nav-height) + var(--banner-height) + 40px); padding-bottom: 60px; }
    .services-image img { height: 240px; }
    .image-break { height: 240px; }
    .page-feature-image { height: 220px; }

    .top-banner { font-size: 0.78rem; padding: 8px 16px; }
    .section-padding { padding: 80px 0; }
    .section, .section-alt { padding: 70px 0; }
    .services-grid,
    .resources-grid,
    .testimonials-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

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

    /* Inner page mobile */
    .therapist-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .therapist-avatar-lg { margin: 0 auto; width: 180px; height: 180px; }
    .therapist-avatar-lg .initials { font-size: 3.5rem; }
    .therapist-hero-info .btn { margin: 0 auto; }
    .approach-card { max-width: 100%; }
    .therapist-mini-card { max-width: 100%; }
    .specialty-card { max-width: 100%; }

    /* Team card avatar — mobile photo adjustments */
    .team-card-avatar { height: 320px; }
    .team-card-avatar.c1,
    .team-card-avatar.c7 { height: 400px; }                    /* Debbie & Rebecca — extra tall to zoom out */
    .team-card-avatar.c1 img { object-position: center 25%; }  /* Debbie — center face */
    .team-card-avatar.c3 img { object-position: center 55%; }  /* Bianca — show chin */
    .team-card-avatar.c4 img { object-position: center 25%; }  /* Lauren — zoom out */
    .team-card-avatar.c5 img { object-position: center 10%; }  /* Matthew — show top of head */
    .team-card-avatar.c7 img { object-position: center 18%; }  /* Rebecca — center face */

    /* Contact form padding reduction */
    .contact-form { padding: 24px 20px; }

    /* Page hero & CTA banner padding reduction */
    .page-hero { padding: 50px 0 60px; }
    .page-cta-banner { padding: 56px 0; }

    /* Related concerns centering */
    .related-links { justify-content: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section-padding { padding: 60px 0; }
    .section, .section-alt { padding: 56px 0; }
    .team-card-avatar { height: 280px; }
    .team-card-avatar.c1,
    .team-card-avatar.c7 { height: 360px; }
    .testimonial-card { padding: 28px 22px; }
    .service-card { padding: 28px 20px; }
    .page-hero { padding: 40px 0 48px; }
    .page-cta-banner { padding: 44px 0; }
    .top-banner { font-size: 0.72rem; padding: 8px 12px; line-height: 1.4; }
    .image-break { height: 180px; }
}

/* ========== RESOURCES & ARTICLES ========== */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 960px) {
    .resource-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .resource-grid { grid-template-columns: 1fr; }
}
.resource-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: transparent;
    color: inherit;
}
.resource-card .category-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.resource-card .worksheet-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: var(--color-accent);
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}
.resource-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-primary);
    line-height: 1.35;
}
.resource-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.65;
    flex-grow: 1;
}
.resource-card .read-more {
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.resource-card:hover .read-more {
    gap: 8px;
}
.resource-category-heading {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
}
.resource-category + .resource-category {
    margin-top: 64px;
}

/* Article page */
.article-hero {
    background: var(--color-bg-alt);
    padding: 80px 0 60px;
}
.article-hero .container {
    max-width: 820px;
}
.article-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
    color: var(--color-text-light);
}
.article-meta .category-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-accent-subtle);
    color: var(--color-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 24px;
}
.article-body p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 24px;
}
.article-body h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 18px;
    color: var(--color-primary);
}
.article-body h3 {
    font-size: 1.2rem;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--color-primary);
}
.article-body ul, .article-body ol {
    margin: 0 0 24px 24px;
    color: var(--color-text);
    line-height: 1.85;
}
.article-body li {
    margin-bottom: 8px;
    font-size: 1.02rem;
}
.article-body blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 16px 24px;
    margin: 32px 0;
    background: var(--color-accent-subtle);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text-light);
}
.article-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}
.article-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
}
.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}
.article-related {
    background: var(--color-bg-alt);
    padding: 80px 0;
}
.article-related .container {
    max-width: 820px;
}
.related-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.related-article-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.related-article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
    color: inherit;
}
.related-article-card .category-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 8px;
}
.related-article-card h4 {
    font-size: 0.95rem;
    color: var(--color-primary);
    line-height: 1.35;
}

@media print {
    .top-banner, .nav, .breadcrumb, .article-actions, .article-related, .page-cta-banner, .footer { display: none; }
    .article-body { padding: 0; }
    .article-hero { padding: 24px 0; }
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
