/* ==========================================================================
   Traditional Osteopathy - stylesheet
   Luxury Holistic theme: soft ivory base, muted sage + soft gold accents,
   warm sand section breaks, deep charcoal text.
   ========================================================================== */

:root {
    /* Core palette */
    --ivory:    #F7F6F2; /* base background */
    --sage:     #A8B5A2; /* primary accent */
    --sand:     #E6DED3; /* secondary background */
    --charcoal: #2F2F2F; /* text */
    --taupe:    #8A837A; /* secondary text / UI */
    --gold:     #C6A86B; /* luxury highlight */
    --olive:    #7E8F7C; /* depth / contrast */

    /* Derived shades */
    --sage-dark:  #93A18C; /* hover for sage */
    --gold-dark:  #B5965A; /* hover for gold */
    --olive-deep: #5E6C5C; /* readable accent text / links */

    /* Semantic aliases */
    --primary:   var(--sage);
    --secondary: var(--olive);
    --accent:    var(--gold);
    --dark:      var(--charcoal);
    --light:     var(--sand);

    /* Text shades */
    --text:       #2F2F2F; /* primary text / headings */
    --text-body:  #3A3833; /* body copy (warm near-charcoal) */
    --text-muted: #6E665C; /* secondary copy (readable dark taupe) */
    --text-faint: #B8B0A4; /* muted text on dark surfaces */
    --border:     #D8D2C7; /* warm light border */
    --star:       #C6A86B;

    /* Backwards-compatible aliases (referenced by a few inline styles) */
    --gray-800: var(--text);
    --gray-700: var(--text-body);
    --gray-600: var(--text-muted);
    --gray-400: var(--text-faint);
    --gray-300: var(--border);

    --shadow-md: 0 4px 6px -1px rgba(47, 41, 31, .10), 0 2px 4px -2px rgba(47, 41, 31, .10);
    --shadow-lg: 0 10px 20px -3px rgba(47, 41, 31, .12), 0 4px 6px -4px rgba(47, 41, 31, .10);
    --shadow-xl: 0 20px 30px -5px rgba(47, 41, 31, .14), 0 8px 10px -6px rgba(47, 41, 31, .10);
    --shadow-2xl: 0 25px 50px -12px rgba(47, 41, 31, .22);
}

/* --------------------------------------------------------------------------
   Base / reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--text-body);
    background: var(--ivory);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, p { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
}
@media (min-width: 640px)  { .container { max-width: 640px; } }
@media (min-width: 768px)  { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

.section { padding-block: 5rem; }
.section--white   { background: var(--ivory); }
.section--light   { background: var(--sand); }
.section--primary { background: var(--olive); color: #fff; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.25rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.section-header p { font-size: 1.25rem; color: var(--text-muted); max-width: 42rem; margin-inline: auto; }
.section--primary .section-header h2 { color: #fff; }

@media (min-width: 768px) { .section-header h2 { font-size: 3rem; } }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-block;
    text-align: center;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: .5rem;
    padding: .75rem 1.5rem;
    font-size: 1rem;
    transition: all .3s ease;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; font-weight: 700; }
.btn-block { display: block; width: 100%; }

.btn-primary { background: var(--sage); color: var(--charcoal); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--sage-dark); box-shadow: var(--shadow-lg); }

.btn-gold { background: var(--gold); color: var(--charcoal); box-shadow: var(--shadow-md); }
.btn-gold:hover { background: var(--gold-dark); box-shadow: var(--shadow-lg); }

.btn-white { background: #fff; color: var(--charcoal); box-shadow: var(--shadow-lg); }
.btn-white:hover { background: var(--sand); }

.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--charcoal); }

.btn-outline-dark { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-outline-dark:hover { background: var(--charcoal); color: #fff; }

/* --------------------------------------------------------------------------
   Circle icon badges
   -------------------------------------------------------------------------- */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    flex-shrink: 0;
}
.icon-circle--primary { background: var(--sage); color: var(--charcoal); }
.icon-circle--accent  { background: var(--olive); color: #fff; }
.icon-circle--ghost   { background: var(--sand); color: var(--olive); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 40;
    background: var(--ivory);
    box-shadow: var(--shadow-md);
    transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 1rem;
}

.brand { display: flex; align-items: center; gap: .75rem; }
.brand-logo { width: 3rem; height: 3rem; object-fit: contain; }
.brand-title { display: block; font-size: 1.25rem; font-weight: 700; color: var(--charcoal); }
.brand-subtitle { display: none; font-size: .75rem; color: var(--text-muted); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 1.75rem; }
.nav-link {
    color: var(--charcoal);
    font-weight: 500;
    font-size: 1.0625rem;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: color .3s ease, border-color .3s ease;
}
.nav-link:hover { color: var(--olive-deep); }
.nav-link.active { color: var(--charcoal); border-bottom-color: var(--gold); }

.menu-toggle { color: var(--charcoal); font-size: 1.5rem; line-height: 1; }

.btn-book { display: none; }

@media (min-width: 768px) {
    .brand-title { font-size: 1.5rem; }
    .brand-subtitle { display: block; }
}
@media (min-width: 1024px) {
    .main-nav { display: block; }
    .menu-toggle { display: none; }
    .btn-book { display: inline-block; }
}

/* --------------------------------------------------------------------------
   Mobile menu
   -------------------------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(47, 47, 47, .97);
    display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; height: 100%; }
.mobile-menu-close { align-self: flex-end; color: #fff; font-size: 1.875rem; padding: 1.5rem; }
.mobile-menu nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.mobile-nav-list { text-align: center; }
.mobile-nav-list li + li { margin-top: 2rem; }
.mobile-nav-link { color: #fff; font-weight: 500; font-size: 1.5rem; transition: color .3s ease; }
.mobile-nav-link:hover { color: var(--sage); }
.mobile-nav-link.active { color: var(--gold); }

/* --------------------------------------------------------------------------
   Main / hero
   -------------------------------------------------------------------------- */
main { display: block; }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Darker on the left (behind the text) so the cover photo stays visible on the right. */
    background: linear-gradient(90deg, rgba(47, 47, 47, .84) 0%, rgba(47, 47, 47, .58) 45%, rgba(74, 85, 74, .28) 100%);
}
.hero-content { position: relative; z-index: 10; padding-block: 5rem; }
.hero-inner { max-width: 48rem; }
.hero-title { font-size: 2.25rem; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-text { font-size: 1.25rem; color: #fff; opacity: .95; line-height: 1.625; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.scroll-indicator a { display: inline-block; color: #fff; font-size: 1.875rem; animation: bounce 1s infinite; }

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(.8, 0, 1, 1); }
    50%      { transform: none;              animation-timing-function: cubic-bezier(0, 0, .2, 1); }
}

@media (min-width: 640px) { .hero-actions { flex-direction: row; } }
@media (min-width: 768px) {
    .hero { padding-top: 6rem; }
    .hero-title { font-size: 3.75rem; }
    .hero-text { font-size: 1.5rem; }
}

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.service-card {
    background: #fff;
    border-radius: .75rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: all .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card-img { width: 100%; height: 12rem; object-fit: cover; }
.service-card-body { padding: 1.5rem; }
.service-icon { width: 3.5rem; height: 3.5rem; font-size: 1.5rem; margin-bottom: 1rem; }
.service-card-title { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: .75rem; }
.service-card-text { color: var(--text-muted); line-height: 1.625; }
.service-card-link { display: inline-block; margin-top: .75rem; color: var(--olive-deep); font-weight: 600; }
.service-card-link:hover { color: var(--charcoal); }
.about-cta { display: inline-block; margin-top: .5rem; color: var(--olive-deep); font-weight: 600; }
.about-cta:hover { color: var(--charcoal); }

@media (min-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-img { border-radius: 1rem; box-shadow: var(--shadow-2xl); width: 100%; }
.feature-photo { display: block; width: 100%; max-width: 24rem; margin-inline: auto; border-radius: 1rem; box-shadow: var(--shadow-2xl); }
.about-title { font-size: 2.25rem; font-weight: 700; color: var(--text); margin-bottom: 1.5rem; }
.about-text { font-size: 1.125rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1.5rem; }

.features { display: flex; flex-direction: column; gap: 1rem; }
.feature { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon { width: 3rem; height: 3rem; font-size: 1.25rem; }
.feature-title { font-size: 1.25rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.feature-text { color: var(--text-muted); }

@media (min-width: 768px)  { .about-title { font-size: 3rem; } }
@media (min-width: 1024px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   Conditions
   -------------------------------------------------------------------------- */
.conditions-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.condition-card {
    background: #fff;
    border-radius: .5rem;
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    transition: box-shadow .3s ease;
}
.condition-card:hover { box-shadow: var(--shadow-xl); }
.condition-icon { width: 3rem; height: 3rem; font-size: 1.25rem; margin-bottom: 1rem; }
.condition-title { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.condition-text { color: var(--text-muted); }

@media (min-width: 768px)  { .conditions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .conditions-grid { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   Testimonials (style retained for reuse)
   -------------------------------------------------------------------------- */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.testimonial-card { background: #fff; border-radius: .75rem; padding: 2rem; box-shadow: var(--shadow-lg); }
.testimonial-head { display: flex; align-items: center; margin-bottom: 1rem; }
.testimonial-avatar { width: 4rem; height: 4rem; border-radius: 9999px; margin-right: 1rem; object-fit: cover; }
.testimonial-name { font-size: 1.25rem; font-weight: 700; color: var(--text); }
.stars { display: flex; gap: .25rem; }
.stars i { color: var(--star); }
.testimonial-text { color: var(--text-body); font-style: italic; line-height: 1.625; }

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-lead { font-size: 1.25rem; margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon { width: 3rem; height: 3rem; font-size: 1.25rem; }
.contact-item h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.contact-item p { opacity: .9; }

.contact-card {
    background: #fff;
    color: var(--text-body);
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
    padding: 2rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid var(--border);
    border-radius: .5rem;
    color: var(--text);
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(168, 181, 162, .45);
}
.form-group textarea { resize: vertical; min-height: 7rem; }

.form-status { font-weight: 600; }
.form-status.is-success { color: #3f6b3a; }
.form-status.is-error { color: #a23b3b; }

@media (min-width: 768px)  { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--charcoal); color: #fff; padding-block: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo { width: 2.75rem; height: 2.75rem; object-fit: contain; }
.footer-brand h3 { font-size: 1.25rem; font-weight: 700; }
.footer-about { color: var(--text-faint); }
.footer-col h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; color: #fff; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-link { color: var(--text-faint); transition: color .3s ease; }
.footer-link:hover { color: var(--gold); }

.social-links { display: flex; gap: 1rem; }
.social-link {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .1);
    transition: background .3s ease, color .3s ease;
}
.social-link:hover { background: var(--gold); color: var(--charcoal); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-faint);
}

@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

/* --------------------------------------------------------------------------
   Content pages: page hero / banner
   -------------------------------------------------------------------------- */
.page-hero {
    background: linear-gradient(135deg, #73836F 0%, #4F5C4D 100%);
    color: #fff;
    text-align: center;
    padding: 8rem 0 4rem; /* top padding clears the fixed header */
}
.page-hero h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: .75rem; }
.page-hero p { font-size: 1.25rem; opacity: .95; max-width: 42rem; margin-inline: auto; }

@media (min-width: 768px) { .page-hero h1 { font-size: 3rem; } }

/* --------------------------------------------------------------------------
   Long-form prose content
   -------------------------------------------------------------------------- */
.prose { max-width: 52rem; margin-inline: auto; }
.prose > p:first-child { font-size: 1.1875rem; }
.prose h2 { font-size: 1.875rem; font-weight: 700; color: var(--text); margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.375rem; font-weight: 600; color: var(--text); margin: 2rem 0 .75rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { font-size: 1.0625rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1.25rem; }
.prose ul { margin: 0 0 1.25rem 1.5rem; padding: 0; list-style: disc; color: var(--text-body); line-height: 1.8; }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--olive-deep); text-decoration: underline; }
.prose a:hover { color: var(--charcoal); }
.prose blockquote {
    border-left: 4px solid var(--gold);
    background: var(--sand);
    padding: 1.25rem 1.5rem;
    margin: 0 0 1.5rem;
    border-radius: .25rem;
    font-style: italic;
    color: var(--charcoal);
}
.prose .attribution { font-style: italic; color: var(--text-muted); font-size: .95rem; }

/* --------------------------------------------------------------------------
   Philosophy quote band (home)
   -------------------------------------------------------------------------- */
.quote-band { background: #41503E; color: #fff; text-align: center; }
.quote-band blockquote {
    font-family: "Merriweather", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    max-width: 56rem;
    margin-inline: auto;
}
.quote-band .quote-author { display: block; margin-top: 1.5rem; font-size: 1rem; opacity: .85; font-style: normal; }

@media (min-width: 768px) { .quote-band blockquote { font-size: 1.875rem; } }

/* --------------------------------------------------------------------------
   Physician bio
   -------------------------------------------------------------------------- */
.physician {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 52rem;
    margin-inline: auto;
}
.physician-avatar {
    width: 9rem;
    height: 9rem;
    border-radius: 9999px;
    background: var(--sand);
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-inline: auto;
}
.physician-name { font-size: 1.75rem; font-weight: 700; color: var(--text); }
.physician-cred { color: var(--olive-deep); font-weight: 600; margin-bottom: 1rem; }
.physician p { color: var(--text-body); line-height: 1.8; margin-bottom: 1.25rem; }

@media (min-width: 768px) {
    .physician { grid-template-columns: auto 1fr; }
    .physician-avatar { margin-inline: 0; }
}

/* --------------------------------------------------------------------------
   Resources / links list
   -------------------------------------------------------------------------- */
.resource-list { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 48rem; margin-inline: auto; }
.resource-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .5rem;
    padding: 1rem 1.25rem;
    color: var(--charcoal);
    font-weight: 600;
    transition: box-shadow .2s ease, border-color .2s ease;
}
.resource-link:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.resource-link i { color: var(--gold); }

@media (min-width: 640px) { .resource-list { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------------------
   Office locations (contact page)
   -------------------------------------------------------------------------- */
.offices { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.office { background: #fff; border-radius: .75rem; box-shadow: var(--shadow-md); padding: 1.5rem; }
.office h3 { font-size: 1.25rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.office address { font-style: normal; color: var(--text-body); line-height: 1.6; margin-bottom: .5rem; }
.office a { display: flex; align-items: center; gap: .4rem; margin-top: .5rem; color: var(--olive-deep); font-weight: 600; width: fit-content; }
.office a:hover { color: var(--charcoal); }
.office a i { color: var(--gold); }

@media (min-width: 768px) { .offices { grid-template-columns: repeat(3, 1fr); } }

/* --------------------------------------------------------------------------
   Call-to-action band (home)
   -------------------------------------------------------------------------- */
.cta-band { background: var(--sage); color: var(--charcoal); text-align: center; }
.cta-band h2 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.cta-band p { font-size: 1.25rem; margin-bottom: 2rem; max-width: 42rem; margin-inline: auto; color: var(--charcoal); }
.cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }

@media (min-width: 640px) { .cta-actions { flex-direction: row; } }
@media (min-width: 768px) { .cta-band h2 { font-size: 3rem; } }

/* --------------------------------------------------------------------------
   FAQ accordion (native <details>)
   -------------------------------------------------------------------------- */
.faq-list { max-width: 52rem; margin-inline: auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .5rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--text);
    padding: 1.25rem 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; flex-shrink: 0; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-answer { padding: 0 0 1.25rem; color: var(--text-body); line-height: 1.8; }
.faq-answer a { color: var(--olive-deep); text-decoration: underline; }
.faq-answer a:hover { color: var(--charcoal); }

/* --------------------------------------------------------------------------
   Topic / condition link cards (hub pages) &mdash; reuses condition-card look
   -------------------------------------------------------------------------- */
a.condition-card { display: block; }
a.condition-card .condition-more { display: inline-block; margin-top: .75rem; color: var(--olive-deep); font-weight: 600; }
a.condition-card:hover .condition-more { color: var(--charcoal); }
