/* ================================================================
   Solución Hipotecaria — Brand stylesheet
   Premium financial-advisory palette:
     --sh-primary:  deep forest / military green (brand mark, headers)
     --sh-deep:     near-black charcoal (dark sections, headlines)
     --sh-gold:     warm gold accent (CTAs, highlights)
     --sh-gold-dk:  darker gold for hover
     --sh-cream:    warm off-white background
     --sh-paper:    secondary section background
   Typography: Playfair Display (serif headings) + Inter (body).
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --sh-primary:    #4D6647;   /* medium forest green */
    --sh-primary-dk: #354A30;   /* deeper forest */
    --sh-primary-lt: #6F8866;   /* lighter sage */
    --sh-deep:       #2A2E25;   /* warm charcoal-green */
    --sh-accent:     #8A9962;   /* light olive sage */
    --sh-gold:       #C9A961;   /* warm gold */
    --sh-gold-dk:    #A78845;   /* gold hover */
    --sh-gold-soft:  #F2EAD3;   /* cream-gold */
    --sh-cream:      #FAF8F4;   /* page background */
    --sh-paper:      #F2EFE7;   /* subtle paper bg */
    --sh-border:     #E2DDD0;   /* warm border */
    --sh-text:       #1F221C;   /* near-black body */
    --sh-muted:      #6B6F65;   /* muted gray-green */
}

/* ---------- Base ---------- */
html, body {
    height: 100%;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--sh-text);
    background: var(--sh-cream);
    line-height: 1.6;
    font-feature-settings: "ss01", "cv01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
img, svg { max-width: 100%; height: auto; }
main { flex: 1; }
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
    color: var(--sh-deep);
    letter-spacing: -0.012em;
    font-weight: 700;
    line-height: 1.18;
}
h1 { font-weight: 700; }
h2 { font-weight: 700; }
.lead { color: var(--sh-muted); font-size: 1.1rem; line-height: 1.65; }
p { color: var(--sh-text); }

a {
    color: var(--sh-primary);
    text-decoration: none;
    transition: color .15s ease;
}
a:hover { color: var(--sh-gold-dk); }

.text-deep       { color: var(--sh-deep) !important; }
.text-primary-sh { color: var(--sh-primary) !important; }
.text-gold       { color: var(--sh-gold-dk) !important; }

::selection { background: var(--sh-gold-soft); color: var(--sh-deep); }

/* ---------- Buttons ---------- */
.btn-sh-primary {
    background: var(--sh-gold);
    color: var(--sh-deep);
    border: none;
    padding: .8rem 1.7rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background .18s ease, transform .12s ease, box-shadow .18s ease;
    box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.btn-sh-primary:hover, .btn-sh-primary:focus {
    background: var(--sh-gold-dk);
    color: var(--sh-deep);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(167, 136, 69, .25);
}
.btn-sh-deep {
    background: var(--sh-primary);
    color: #fff;
    border: none;
    padding: .8rem 1.7rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background .18s ease, transform .12s ease;
}
.btn-sh-deep:hover, .btn-sh-deep:focus {
    background: var(--sh-primary-dk);
    color: #fff;
    transform: translateY(-1px);
}
.btn-sh-outline {
    background: transparent;
    color: var(--sh-primary);
    border: 1.5px solid var(--sh-primary);
    padding: .7rem 1.7rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: background .18s ease, color .18s ease;
}
.btn-sh-outline:hover {
    background: var(--sh-primary);
    color: #fff;
}

/* ---------- Top contact bar ---------- */
.sh-topbar {
    background: var(--sh-deep);
    color: rgba(255,255,255,.78);
    font-size: .82rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, .18);
}
.sh-topbar a { color: rgba(255,255,255,.92); }
.sh-topbar a:hover { color: var(--sh-gold); }
.sh-topbar .sh-topbar-divider {
    color: rgba(255,255,255,.25);
    margin: 0 .55rem;
}

/* ---------- Navbar ---------- */
.sh-navbar {
    background: #fff;
    border-bottom: 1px solid var(--sh-border);
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.sh-navbar .navbar-brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--sh-deep);
    letter-spacing: -.012em;
    display: flex;
    align-items: center;
    gap: .65rem;
}
.sh-navbar .navbar-brand .sh-brand-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.sh-navbar .nav-link {
    color: var(--sh-text);
    font-weight: 500;
    font-size: .95rem;
    padding: .5rem 1rem;
    position: relative;
}
.sh-navbar .nav-link:hover,
.sh-navbar .nav-link.active {
    color: var(--sh-primary);
}
.sh-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: -2px;
    height: 2px;
    background: var(--sh-gold);
}
.sh-navbar .nav-cta {
    background: var(--sh-gold);
    color: var(--sh-deep);
    border-radius: 3px;
    padding: .6rem 1.3rem;
    font-weight: 600;
    transition: background .18s ease;
}
.sh-navbar .nav-cta:hover { background: var(--sh-gold-dk); color: var(--sh-deep); }

/* ---------- Hero ---------- */
.sh-hero {
    background: linear-gradient(135deg, var(--sh-primary-dk) 0%, var(--sh-primary) 60%, #3F4F38 100%);
    color: #fff;
    padding: 6rem 0 6.5rem;
    position: relative;
    overflow: hidden;
}
.sh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 100% 0%, rgba(201,169,97,.18) 0%, transparent 60%),
        radial-gradient(700px 400px at 0% 100%, rgba(201,169,97,.08) 0%, transparent 70%);
    pointer-events: none;
}
.sh-hero > .container { position: relative; z-index: 1; }
.sh-hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 4.6vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.sh-hero h1 em {
    font-style: italic;
    color: var(--sh-gold);
    font-weight: 600;
}
.sh-hero p { font-size: 1.12rem; color: rgba(255, 255, 255, 0.86); max-width: 38rem; }
.sh-hero .lead { color: rgba(255, 255, 255, 0.88); }
.sh-hero .sh-eyebrow {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .78rem;
    font-weight: 600;
    color: var(--sh-gold);
    margin-bottom: 1.1rem;
}
.sh-hero .text-muted, .sh-hero .text-muted.small { color: rgba(255, 255, 255, 0.78) !important; }
.sh-hero a { color: #fff; }
.sh-hero .sh-phone-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 6px;
    padding: 1.75rem;
    color: #fff;
}
.sh-hero .sh-phone-card .sh-eyebrow { color: var(--sh-gold); margin-bottom: .9rem; }
.sh-hero .sh-phone-card a { color: #fff; }
.sh-hero .sh-phone-card hr { border-color: rgba(255,255,255,.15); }

/* Hero outline button (lighter on dark hero) */
.sh-hero .btn-sh-outline {
    border-color: rgba(255,255,255,.55);
    color: #fff;
}
.sh-hero .btn-sh-outline:hover {
    background: #fff;
    color: var(--sh-deep);
    border-color: #fff;
}

/* ---------- Sections ---------- */
.sh-section { padding: 5rem 0; }
.sh-section-soft { background: var(--sh-paper); }
.sh-section-deep {
    background: var(--sh-deep);
    color: rgba(255,255,255,.86);
    position: relative;
}
.sh-section-deep h2, .sh-section-deep h3 { color: #fff; }
.sh-section-deep p, .sh-section-deep .lead { color: rgba(255, 255, 255, 0.82); }
.sh-section-deep .text-muted, .sh-section-deep .text-muted.small { color: rgba(255, 255, 255, 0.68) !important; }
.sh-section-deep a { color: #fff; }

.sh-eyebrow {
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .76rem;
    font-weight: 600;
    color: var(--sh-gold-dk);
    margin-bottom: .9rem;
    display: inline-block;
}
.sh-section-deep .sh-eyebrow { color: var(--sh-gold); }

/* Decorative gold rule under headings */
.sh-rule {
    width: 56px;
    height: 2px;
    background: var(--sh-gold);
    margin: 1rem 0 1.5rem;
    border: 0;
}
.text-center .sh-rule { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.sh-card {
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: 6px;
    padding: 2rem 1.85rem;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sh-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(31, 42, 28, 0.09);
    border-color: var(--sh-gold);
}
.sh-card .sh-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background: var(--sh-gold-soft);
    color: var(--sh-gold-dk);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    font-size: 1.45rem;
}
.sh-card h3 {
    font-size: 1.2rem;
    margin-bottom: .55rem;
    color: var(--sh-deep);
}
.sh-card p { margin: 0; color: var(--sh-muted); }

/* Dark cards on dark sections */
.sh-section-deep .sh-card {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.12);
}
.sh-section-deep .sh-card:hover { border-color: var(--sh-gold); }
.sh-section-deep .sh-card h3 { color: #fff; }
.sh-section-deep .sh-card p { color: rgba(255,255,255,.78); }
.sh-section-deep .sh-card .sh-card-icon {
    background: rgba(201,169,97,.15);
    color: var(--sh-gold);
}

/* ---------- Value tiles ---------- */
.sh-value {
    text-align: center;
    padding: 1.5rem 1rem;
}
.sh-value .sh-value-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sh-primary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

/* ---------- Process steps ---------- */
.sh-step {
    background: #fff;
    border-radius: 6px;
    padding: 2.25rem 1.85rem;
    height: 100%;
    border: 1px solid var(--sh-border);
    border-top: 3px solid var(--sh-gold);
    box-shadow: 0 4px 14px rgba(31, 42, 28, 0.04);
    transition: transform .18s ease, box-shadow .18s ease;
}
.sh-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(31, 42, 28, 0.08);
}
.sh-step .sh-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sh-primary);
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}
.sh-step h3 { font-size: 1.2rem; margin-bottom: .55rem; }
.sh-step p { color: var(--sh-muted); margin: 0; }

/* ---------- Banks strip ---------- */
.sh-banks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .85rem;
    margin-top: 2rem;
}
.sh-bank-pill {
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: 4px;
    padding: 1.1rem .85rem;
    text-align: center;
    font-weight: 600;
    color: var(--sh-deep);
    transition: all .18s ease;
    font-size: .95rem;
    letter-spacing: .01em;
}
.sh-bank-pill:hover {
    border-color: var(--sh-gold);
    color: var(--sh-primary);
    box-shadow: 0 4px 12px rgba(31, 42, 28, 0.06);
}

/* ---------- FAQ accordion ---------- */
.sh-faq .accordion-item {
    border: 1px solid var(--sh-border);
    border-radius: 6px !important;
    margin-bottom: .65rem;
    overflow: hidden;
    background: #fff;
}
.sh-faq .accordion-button {
    font-weight: 600;
    color: var(--sh-deep);
    background: #fff;
    padding: 1.1rem 1.3rem;
}
.sh-faq .accordion-button:not(.collapsed) {
    background: var(--sh-paper);
    color: var(--sh-primary);
    box-shadow: none;
}
.sh-faq .accordion-button:focus {
    box-shadow: 0 0 0 .15rem rgba(201, 169, 97, 0.28);
}

/* ---------- CTA banner ---------- */
.sh-cta {
    background: linear-gradient(135deg, var(--sh-primary-dk) 0%, var(--sh-primary) 100%);
    color: #fff;
    border-radius: 8px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
}
.sh-cta::after {
    content: '';
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(201,169,97,.18) 0%, transparent 70%);
    pointer-events: none;
}
.sh-cta h2 { color: #fff; }
.sh-cta p, .sh-cta .lead { color: rgba(255, 255, 255, 0.9); }
.sh-cta a { color: #fff; }
.sh-cta .text-muted, .sh-cta .text-muted.small { color: rgba(255, 255, 255, 0.78) !important; }
.sh-cta .sh-eyebrow { color: var(--sh-gold); }
.sh-cta .sh-rule { background: var(--sh-gold); }

/* ---------- PyME panel ---------- */
.sh-pyme {
    background: linear-gradient(135deg, var(--sh-deep), var(--sh-primary));
    color: #fff;
    border-radius: 8px;
    padding: 3rem;
}
.sh-pyme h2 { color: #fff; }
.sh-pyme p, .sh-pyme .lead { color: rgba(255, 255, 255, 0.88); }
.sh-pyme .sh-eyebrow { color: var(--sh-gold) !important; }
.sh-pyme .text-muted, .sh-pyme .text-muted.small { color: rgba(255, 255, 255, 0.7) !important; }
.sh-pyme a { color: #fff; }
.sh-pyme .sh-pyme-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,169,97,0.25);
    border-radius: 6px;
    padding: 1.35rem;
}
.sh-pyme .sh-pyme-card h4 { color: #fff; font-size: 1rem; margin-bottom: .4rem; }
.sh-pyme .sh-pyme-card p { color: rgba(255,255,255,0.82); font-size: .9rem; margin: 0; }

/* ---------- Footer ---------- */
.sh-footer {
    background: var(--sh-deep);
    color: #cfd3c2;
    padding: 3.5rem 0 1.5rem;
    border-top: 3px solid var(--sh-gold);
}
.sh-footer h5 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
    font-weight: 600;
}
.sh-footer a { color: #cfd3c2; transition: color .15s ease; }
.sh-footer a:hover { color: var(--sh-gold); }
.sh-footer p, .sh-footer li, .sh-footer ul { color: #cfd3c2; }
.sh-footer ul li { margin-bottom: .45rem; }
.sh-footer .sh-foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    color: #7d8270;
    font-size: .87rem;
}
.sh-footer .sh-foot-brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
}
.sh-footer .sh-foot-brand img { width: 40px; height: 40px; }
.sh-footer .sh-foot-brand span {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* ---------- Forms ---------- */
.form-control, .form-select {
    border-radius: 4px;
    border: 1px solid var(--sh-border);
    padding: .8rem 1rem;
    background: #fff;
    color: var(--sh-text);
    font-size: .98rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--sh-gold);
    box-shadow: 0 0 0 .2rem rgba(201, 169, 97, 0.18);
}
label, .form-label { font-weight: 600; color: var(--sh-deep); font-size: .92rem; }

/* ---------- Auth panels ---------- */
.sh-auth-panel {
    max-width: 460px;
    margin: 3rem auto;
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: 6px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(31, 42, 28, 0.06);
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
    .sh-hero { padding: 3.5rem 0 4rem; }
    .sh-hero h1 { font-size: 2.1rem; line-height: 1.15; }
    .sh-section { padding: 3.25rem 0; }
    .sh-cta { padding: 2.25rem 1.25rem; border-radius: 6px; }
    .sh-pyme { padding: 2.25rem 1.25rem; border-radius: 6px; }
    .sh-topbar { display: none; }
    .sh-card { padding: 1.5rem 1.25rem; }
    .sh-step { padding: 1.85rem 1.35rem; }
    .sh-amount-card { padding: 1.35rem 1.4rem; }
    .sh-amount-card .sh-amount { font-size: 1.55rem; }
    .sh-phone-card a { word-break: break-word; }
    .sh-banks { grid-template-columns: repeat(2, 1fr); }
    .navbar-brand { font-size: 1.15rem; }
    .navbar-brand .sh-brand-mark { width: 30px; height: 30px; }
    h1 { font-size: 1.95rem; }
    h2 { font-size: 1.65rem; }
    h3 { font-size: 1.15rem; }
    .lead { font-size: 1rem; }
    .container { padding-left: 1.1rem; padding-right: 1.1rem; }
}
@media (max-width: 480px) {
    .sh-hero h1 { font-size: 1.85rem; }
    .sh-banks { grid-template-columns: 1fr; }
    .sh-cta h2 { font-size: 1.5rem; }
}

/* ---------- Misc ---------- */
.alert ul { margin: 0; padding-left: 1rem; }
.alert {
    border-radius: 4px;
    border: 1px solid transparent;
}
.alert-danger { background: #fdf3f3; border-color: #f0c9c9; color: #8a2a2a; }
.alert-success { background: #f0f5e9; border-color: #c8d8b3; color: #3a5a1c; }

.dropdown-menu {
    max-height: 300px;
    overflow-y: auto;
    border-radius: 4px;
    border: 1px solid var(--sh-border);
    box-shadow: 0 8px 24px rgba(31,42,28,.08);
}
.spinner-border-sm { width: 1rem; height: 1rem; }
.hidden { display: none !important; }

.sh-amount-card {
    background: #fff;
    border: 1px solid var(--sh-border);
    border-left: 3px solid var(--sh-gold);
    border-radius: 4px;
    padding: 1.85rem 2.25rem;
    text-align: left;
    box-shadow: 0 4px 14px rgba(31,42,28,.04);
}
.sh-amount-card .sh-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--sh-deep);
    line-height: 1.1;
}

/* ---------- 24hr badge ---------- */
.sh-badge-24 {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--sh-gold-soft);
    color: var(--sh-deep);
    border: 1px solid rgba(201,169,97,.4);
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
}
.sh-badge-24 i { color: var(--sh-gold-dk); }
.sh-section-deep .sh-badge-24,
.sh-cta .sh-badge-24,
.sh-hero .sh-badge-24 {
    background: rgba(201,169,97,.15);
    color: var(--sh-gold);
    border-color: rgba(201,169,97,.4);
}
.sh-section-deep .sh-badge-24 i,
.sh-cta .sh-badge-24 i,
.sh-hero .sh-badge-24 i { color: var(--sh-gold); }

/* ---------- SEO pages ---------- */
.sh-breadcrumbs {
    background: var(--sh-paper);
    padding: .85rem 0;
    border-bottom: 1px solid var(--sh-border);
    font-size: .88rem;
}
.sh-breadcrumbs ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem .5rem;
}
.sh-breadcrumbs li:not(:last-child)::after {
    content: "›";
    color: var(--sh-muted);
    margin-left: .5rem;
}
.sh-breadcrumbs a { color: var(--sh-primary); }
.sh-breadcrumbs a:hover { color: var(--sh-gold-dk); }
.sh-breadcrumbs li[aria-current="page"] {
    color: var(--sh-deep);
    font-weight: 600;
}

.sh-state-link {
    display: block;
    padding: .7rem .95rem;
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: 4px;
    color: var(--sh-deep);
    text-decoration: none;
    font-weight: 500;
    transition: all .15s ease;
}
.sh-state-link:hover {
    border-color: var(--sh-gold);
    color: var(--sh-primary);
    background: var(--sh-paper);
}

.sh-state-card {
    display: block;
    padding: 1.1rem 1.35rem;
    background: #fff;
    border: 1px solid var(--sh-border);
    border-radius: 6px;
    color: var(--sh-deep);
    text-decoration: none;
    transition: all .18s ease;
    height: 100%;
}
.sh-state-card:hover {
    border-color: var(--sh-gold);
    box-shadow: 0 6px 20px rgba(31, 42, 28, 0.07);
    transform: translateY(-2px);
    color: var(--sh-deep);
}
.sh-state-card-name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: .15rem;
    font-family: 'Playfair Display', serif;
    color: var(--sh-deep);
}
.sh-state-card-cap {
    color: var(--sh-muted);
    font-size: .85rem;
}

/* Clickable card anchors */
.sh-card-link, a.sh-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.sh-card-link:hover, a.sh-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(31, 42, 28, 0.10);
    border-color: var(--sh-gold);
}
.sh-card-link h3, a.sh-card h3 { color: var(--sh-deep); }
.sh-card-link p, a.sh-card p { color: var(--sh-muted); }

/* Bank pills as anchors */
a.sh-bank-pill {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.sh-bank-pill:hover {
    color: var(--sh-primary);
    border-color: var(--sh-gold);
    background: var(--sh-paper);
}
.sh-section-deep a.sh-bank-pill {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}
.sh-section-deep a.sh-bank-pill:hover {
    background: rgba(201,169,97,.12);
    color: var(--sh-gold);
    border-color: var(--sh-gold);
}

.btn-sh-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    padding: .7rem 1.6rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all .18s ease;
}
.btn-sh-outline-light:hover {
    background: #fff;
    border-color: #fff;
    color: var(--sh-deep);
}

/* ---------- Contact info group ---------- */
.sh-contact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .75rem;
    color: var(--sh-muted);
    font-size: .95rem;
}
.sh-contact-row a {
    color: var(--sh-primary);
    font-weight: 600;
}
.sh-contact-row a:hover { color: var(--sh-gold-dk); }
.sh-contact-row .sep { color: var(--sh-border); }
