/* ===================================================================
   Klinik Psikolog Mine Tosuner — tek dosyalık stil sistemi
   WordPress "insight-london" tema artıkları (8 ayrı CSS + Font Awesome
   + Bootstrap grid) kaldırıldı; her şey buradan geliyor.
   =================================================================== */

/* ---------- Tasarım değişkenleri ---------- */
:root {
    --brand:        #0a5f54;
    --brand-dark:   #073f38;
    --brand-deep:   #12433c;
    --brand-tint:   #f2f7f6;
    --brand-line:   #dbe8e5;

    --ink:          #1f2a28;
    --ink-soft:     #4a5754;
    --ink-mute:     #6d7a77;
    --surface:      #ffffff;
    --surface-alt:  #f7faf9;
    --line:         #e6ecea;

    --radius:       14px;
    --radius-sm:    10px;
    --radius-pill:  999px;

    --shadow-sm:    0 1px 2px rgba(16, 40, 36, .06);
    --shadow:       0 6px 20px rgba(16, 40, 36, .08);
    --shadow-lg:    0 18px 44px rgba(16, 40, 36, .14);

    --header-h:     78px;
    --wrap:         1180px;
    --measure:      74ch;

    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
            Arial, "Noto Sans", sans-serif;

    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
    margin: 0 0 .6em;
    line-height: 1.25;
    color: var(--brand-deep);
    font-weight: 700;
    letter-spacing: -.015em;
    text-wrap: balance;
}

h1 { font-size: clamp(1.85rem, 1.25rem + 2.1vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 1.13rem + .95vw, 1.75rem); }
h3 { font-size: 1.13rem; }

p  { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.05em; padding-left: 1.2em; }

a { color: var(--brand); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--brand-dark); text-decoration: underline; }

blockquote { margin: 0; padding: 0; border: 0; }

:focus-visible {
    outline: 3px solid var(--brand);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* ---------- Yerleşim ---------- */
.container {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 22px;
}

.section       { padding: clamp(38px, 5vw, 68px) 0; }
.section--tint { background: var(--surface-alt); }
.section--flush{ padding-top: 0; }

.prose { max-width: var(--measure); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--brand);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Butonlar ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    background: var(--brand);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover {
    background: var(--brand-dark);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}
.btn--ghost { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; }

.on-dark .btn { background: #fff; color: var(--brand-deep); }
.on-dark .btn:hover { background: rgba(255, 255, 255, .9); color: var(--brand-deep); }
.on-dark .btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .6); color: #fff; }
.on-dark .btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }

/* ===================================================================
   BAŞLIK / MENÜ
   =================================================================== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: var(--header-h);
    border-bottom: 1px solid var(--line);
    /* DİKKAT: backdrop-filter/filter/transform buraya YAZILMAMALI.
       Bu özellikler position:fixed alt elemanlar için kapsayıcı blok oluşturur
       ve mobil menü çekmecesini viewport yerine 66px'lik başlığın içine hapseder.
       Bu yüzden bulanıklık ayrı bir katmana (::before) taşındı. */
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, .94);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    backdrop-filter: saturate(160%) blur(12px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand img { height: 46px; width: auto; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 15.5px; font-weight: 700; color: var(--brand-deep); }
.brand-role { font-size: 12px; color: var(--ink-mute); letter-spacing: .02em; }

/* --- Ana navigasyon --- */
.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }

.nav-link {
    display: block;
    padding: 9px 13px;
    border-radius: var(--radius-sm);
    font-size: 15.5px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
}
.nav-link:hover,
.nav-link[aria-current="page"] { background: var(--brand-tint); color: var(--brand); text-decoration: none; }

.has-sub { position: relative; }

.sub-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}
.sub-toggle svg { width: 11px; height: 11px; transition: transform .2s var(--ease); flex: 0 0 auto; }

.sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 268px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-sub:hover > .sub-menu,
.has-sub:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.has-sub:hover .sub-toggle svg { transform: rotate(180deg); }

.sub-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--ink);
}
.sub-menu a:hover { background: var(--brand-tint); color: var(--brand); text-decoration: none; }

/* --- Sağdaki eylemler --- */
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: var(--radius-pill);
    background: var(--brand);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}
.phone-link:hover { background: var(--brand-dark); color: #fff; text-decoration: none; }
.phone-link svg { width: 15px; height: 15px; }

/* --- Dil seçici --- */
.lang { position: relative; }

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.lang-btn:hover { border-color: var(--brand); color: var(--brand); }
.lang-btn svg { width: 11px; height: 11px; transition: transform .2s var(--ease); }
.lang[data-open="true"] .lang-btn svg { transform: rotate(180deg); }

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 186px;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.lang[data-open="true"] .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-menu a {
    display: block;
    padding: 9px 13px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--ink);
}
.lang-menu a:hover { background: var(--brand-tint); color: var(--brand); text-decoration: none; }
.lang-menu a[aria-current="true"] { background: var(--brand-tint); color: var(--brand); font-weight: 600; }

/* --- Mobil menü düğmesi --- */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    cursor: pointer;
    position: relative;
}
.nav-toggle span {
    position: absolute;
    left: 12px;
    width: 18px;
    height: 2px;
    background: var(--brand-deep);
    border-radius: 2px;
    transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(12, 32, 29, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s var(--ease), visibility .25s;
}
body.nav-open .nav-scrim { opacity: 1; visibility: visible; }

/* ---------- Mobil ---------- */
@media (max-width: 1023px) {
    :root { --header-h: 66px; }

    .nav-toggle { display: block; order: 3; }
    .header-actions { margin-left: auto; }
    .phone-link span { display: none; }
    .phone-link { padding: 11px; }
    .brand-text { display: none; }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 99;
        width: min(360px, 86vw);
        height: 100vh;
        height: 100dvh;          /* mobil tarayıcı araç çubuğu açılıp kapanınca sabit kalsın */
        margin: 0;
        padding: calc(var(--header-h) + 18px) 20px calc(40px + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-left: 1px solid var(--line);
        box-shadow: -14px 0 34px rgba(16, 40, 36, .16);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        transform: translateX(101%);
        /* visibility de geçişe dahil: kapanırken hemen kaybolup animasyonu kesmesin,
           kapalıyken klavye ile odaklanılabilir kalmasın. */
        transition: transform .28s var(--ease), visibility .28s var(--ease);
        visibility: hidden;
    }
    body.nav-open .nav { transform: translateX(0); visibility: visible; }
    body.nav-open { overflow: hidden; }

    .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
    .nav-link { padding: 13px 14px; font-size: 16.5px; }

    .sub-toggle { width: 100%; justify-content: space-between; }

    .sub-menu {
        position: static;
        min-width: 0;
        padding: 2px 0 6px 12px;
        border: 0;
        border-left: 2px solid var(--brand-line);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    .has-sub[data-open="true"] > .sub-menu { display: block; }
    .has-sub[data-open="true"] .sub-toggle svg { transform: rotate(180deg); }
    .has-sub:hover > .sub-menu { display: none; }
    .has-sub[data-open="true"]:hover > .sub-menu { display: block; }
    .sub-menu a { padding: 11px 14px; }
}

/* Sabit başlığın altında kalmamak için */
.page-body { padding-top: var(--header-h); }

/* ===================================================================
   BREADCRUMB
   =================================================================== */
.breadcrumb {
    background: var(--surface-alt);
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 11px 0;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: "›"; color: var(--ink-mute); }
.breadcrumb span { color: var(--ink-mute); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
    position: relative;
    padding: clamp(40px, 5.5vw, 76px) 0;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: #fff;
    overflow: hidden;
}
.hero::after {
    content: "";
    position: absolute;
    top: -30%;
    right: -8%;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .09) 0%, transparent 68%);
    pointer-events: none;
}
.hero h1 { color: #fff; margin-bottom: .5em; }
.hero-inner { position: relative; z-index: 1; max-width: 78ch; }
.hero-lead { font-size: clamp(1rem, .95rem + .3vw, 1.15rem); line-height: 1.75; opacity: .94; margin: 0; }
.hero-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, .16);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}

/* Görselli hero */
.hero--media { background: var(--brand-deep); }
.hero--media::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    opacity: .3;
}
.hero--media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 95, 84, .92) 0%, rgba(18, 67, 60, .78) 100%);
    border-radius: 0;
    width: auto;
    height: auto;
    top: 0;
    right: 0;
}

/* ===================================================================
   HİZMET KARTLARI (görselli ızgara)
   =================================================================== */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2px;
    background: var(--line);
}
.tile {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--brand-deep);
}
.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease), opacity .3s var(--ease);
    opacity: .62;
}
.tile:hover img { transform: scale(1.06); opacity: .44; }
.tile span {
    position: absolute;
    inset: auto 0 0 0;
    padding: 20px 22px;
    background: linear-gradient(to top, rgba(7, 63, 56, .92) 0%, transparent 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}
.tile:hover { text-decoration: none; }

/* ===================================================================
   İÇERİK BLOKLARI
   =================================================================== */
.block { max-width: var(--measure); margin: 0 auto clamp(30px, 3.4vw, 46px); }
.block:last-child { margin-bottom: 0; }
.block p { color: var(--ink-soft); }
.block > h2 { margin-bottom: .7em; }

/* İşaretli liste */
.list-check { list-style: none; margin: 4px 0 0; padding: 0; }
.list-check li {
    position: relative;
    padding: 9px 0 9px 30px;
    color: var(--ink-soft);
    line-height: 1.6;
    border-bottom: 1px solid var(--line);
}
.list-check li:last-child { border-bottom: 0; }
.list-check li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 17px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand);
    opacity: .85;
}
.list-check a { font-weight: 600; }

/* Etiket bağlantıları */
.chip-list { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; margin: 16px 0 0; padding: 0; }
.chip-list a {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--brand-line);
    border-radius: var(--radius-pill);
    background: var(--brand-tint);
    color: var(--brand-deep);
    font-size: 14.5px;
    font-weight: 500;
}
.chip-list a:hover { background: var(--brand); border-color: var(--brand); color: #fff; text-decoration: none; }
.chip-list a.is-primary { background: var(--brand); border-color: var(--brand); color: #fff; font-weight: 600; }

/* Kart ızgarası */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 18px;
}
.card {
    padding: 24px 24px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}
.card h2, .card h3 { margin-bottom: .5em; font-size: 1.13rem; color: var(--brand); }
.card p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); margin-bottom: .7em; }
.card p:last-child { margin-bottom: 0; }

a.card { transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease); }
a.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--brand-line);
    text-decoration: none;
}

/* Alıntı bandı */
.quote-band {
    padding: clamp(44px, 5vw, 76px) 0;
    background:
        linear-gradient(120deg, rgba(10, 95, 84, .94), rgba(18, 67, 60, .9)),
        var(--quote-img, none) center / cover no-repeat;
    color: #fff;
    text-align: center;
}
.quote-band h2 { color: #fff; font-size: 1.1rem; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }
.quote-band blockquote p {
    max-width: 62ch;
    margin: 0 auto;
    font-size: clamp(1.15rem, 1rem + .8vw, 1.5rem);
    line-height: 1.55;
    font-style: italic;
}

/* SSS */
.faq { max-width: var(--measure); margin-inline: auto; }
.faq details {
    border-bottom: 1px solid var(--line);
    background: transparent;
}
.faq summary {
    position: relative;
    display: block;
    padding: 17px 40px 17px 0;
    cursor: pointer;
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 25px;
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--brand);
    border-bottom: 2px solid var(--brand);
    transform: rotate(45deg);
    transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 28px; }
.faq summary h3 { display: inline; margin: 0; font-size: 1.05rem; font-weight: 600; }
.faq details p { margin: 0; padding: 0 0 20px; color: var(--ink-soft); }

/* ===================================================================
   SAYFAYA ÖZEL
   =================================================================== */
/* Hakkımda */
.about-intro { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; max-width: none; }
.about-intro > img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
@media (max-width: 720px) {
    .about-intro { grid-template-columns: 1fr; gap: 20px; }
    .about-intro > img { max-width: 260px; }
}

/* İletişim */
.hours { list-style: none; margin: 0 0 14px; padding: 0; }
.hours li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15.5px;
    color: var(--ink-soft);
}
.hours li:last-child { border-bottom: 0; }
.note { font-size: 14.5px; color: var(--ink-mute); margin: 0; }
.steps { margin: 0; padding-left: 20px; }
.steps li { padding: 6px 0; font-size: 15.5px; color: var(--ink-soft); }

/* Hata sayfası */
.error-page { padding: clamp(56px, 7vw, 96px) 0; text-align: center; }
.error-code { font-size: clamp(60px, 9vw, 92px); font-weight: 800; color: var(--brand-line); line-height: 1; margin: 0; }
.error-page h1 { margin-top: 14px; }
.error-page .prose { margin-inline: auto; }
.error-page .chip-list { justify-content: center; }

/* ===================================================================
   ALT BİLGİ
   =================================================================== */
.site-footer {
    background: var(--brand-deep);
    color: rgba(255, 255, 255, .78);
    padding: clamp(40px, 4.5vw, 62px) 0 26px;
    font-size: 15.5px;
}
.site-footer a { color: rgba(255, 255, 255, .82); }
.site-footer a:hover { color: #fff; }
.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 34px;
}
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { padding: 5px 0; }
.footer-cols p { margin: 0 0 9px; }

.social { display: flex; gap: 10px; margin-top: 18px; list-style: none; padding: 0; }
.social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    transition: background .18s var(--ease), border-color .18s var(--ease);
}
.social a:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .45); }
.social svg { width: 17px; height: 17px; fill: currentColor; }

/* Coğrafi iç link bloğu */
.footer-geo { margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .14); }
.footer-geo h3 { margin-bottom: 12px; }
.footer-geo h3:not(:first-child) { margin-top: 26px; }
.geo-links { display: flex; flex-wrap: wrap; gap: 5px 15px; list-style: none; margin: 0; padding: 0; }
.geo-links a { font-size: 13.5px; opacity: .72; }
.geo-links a:hover { opacity: 1; }
.geo-links a.geo-all { font-weight: 700; opacity: 1; }

.footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
}
.footer-bottom p { margin: 0; }

/* ===================================================================
   YAZDIRMA
   =================================================================== */
@media print {
    .site-header, .nav, .site-footer, .breadcrumb, .cta-row, .nav-scrim { display: none !important; }
    .page-body { padding-top: 0; }
    body { font-size: 12pt; color: #000; }
    .hero, .quote-band { background: none !important; color: #000; }
    .hero h1, .quote-band h2 { color: #000; }
}
