/* ============================================================
   Greeba Wealth Management — bespoke demo site
   Deep navy + silver-blue accent + white. All Inter — modern
   corporate, regulated-firm aesthetic.
   ============================================================ */

:root {
    --gw-primary: #0d2138;          /* deep navy */
    --gw-primary-dark: #061226;
    --gw-accent: #2f5a87;            /* mid blue */
    --gw-accent-soft: #7a93b3;       /* silver-blue */
    --gw-ink: #0f172a;
    --gw-ink-soft: #475569;
    --gw-muted: #94a3b8;
    --gw-line: #e2e8f0;
    --gw-line-soft: #eef2f6;
    --gw-bg: #ffffff;
    --gw-bg-elevated: #ffffff;
    --gw-bg-soft: #f8fafc;
    --gw-paper: #f1f5f9;

    --gw-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --gw-shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 18px 36px -12px rgba(15, 23, 42, 0.10);
    --gw-shadow-soft: 0 1px 3px rgba(15, 23, 42, 0.05);

    --gw-radius: 6px;
    --gw-radius-lg: 12px;

    --gw-container: 1180px;
    --gw-container-narrow: 920px;
    --gw-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--gw-font);
    color: var(--gw-ink);
    background: var(--gw-bg);
    line-height: 1.65;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1, "cv05" 1;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; }
a { color: var(--gw-primary); }
.gw-shell ::selection { background: var(--gw-accent); color: #fff; }
.gw-shell ::-moz-selection { background: var(--gw-accent); color: #fff; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gw-accent);
    outline-offset: 3px;
    border-radius: 2px;
}

h1, h2, h3, h4 {
    font-family: var(--gw-font);
    font-weight: 700;
    color: var(--gw-primary);
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4rem); letter-spacing: -0.03em; font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.65rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.45rem); letter-spacing: -0.015em; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1.1rem; color: var(--gw-ink-soft); }
p:last-child { margin-bottom: 0; }

.gw-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gw-accent);
    margin: 0 0 1rem;
    display: inline-block;
}

.gw-section__head { text-align: center; max-width: 64ch; margin: 0 auto 3.5rem; }
.gw-section__head p { font-size: 1.1rem; line-height: 1.6; }

.gw-shell { display: flex; flex-direction: column; min-height: calc(100vh - 40px); }
.gw-main { flex: 1; }
.gw-container { max-width: var(--gw-container); margin: 0 auto; padding: 0 1.75rem; }

/* Screen-reader-only utility - visually hidden but still announced */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.gw-container--narrow { max-width: var(--gw-container-narrow); margin: 0 auto; padding: 0 1.75rem; }

/* Navbar */
.gw-nav {
    background: var(--gw-bg);
    border-bottom: 1px solid var(--gw-line-soft);
    position: sticky;
    top: var(--olxr-frame-h, 0);
    z-index: 50;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.gw-nav__inner {
    max-width: var(--gw-container);
    margin: 0 auto;
    padding: 1.25rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.gw-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    color: var(--gw-primary);
}
.gw-nav__brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--gw-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}
.gw-nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.gw-nav__brand-text strong { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em; }
.gw-nav__brand-text span { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gw-muted); margin-top: 0.15rem; font-weight: 600; }
.gw-nav__links { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.gw-nav__link {
    color: var(--gw-ink-soft);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s var(--gw-ease);
}
.gw-nav__link::after {
    content: "";
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 2px;
    background: var(--gw-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--gw-ease);
}
.gw-nav__link:hover { color: var(--gw-primary); }
.gw-nav__link:hover::after, .gw-nav__link.is-active::after { transform: scaleX(1); }
.gw-nav__link.is-active { color: var(--gw-primary); }
.gw-nav__cta {
    background: var(--gw-primary);
    color: #fff;
    padding: 0.7rem 1.35rem;
    border-radius: var(--gw-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s var(--gw-ease), transform 0.2s var(--gw-ease);
    margin-left: 0.5rem;
}
.gw-nav__cta:hover { background: var(--gw-primary-dark); transform: translateY(-1px); }

/* "Get started" split-button dropdown */
.gw-nav__cta-group { position: relative; }
.gw-nav__cta--split { border: 0; cursor: pointer; font-family: inherit; display: inline-flex; align-items: center; gap: 0.5rem; }
.gw-nav__cta--split::after { content: none; } /* suppress the default → arrow */
.gw-nav__cta-caret {
    font-size: 0.7rem;
    line-height: 1;
    opacity: 0.85;
    transition: transform 0.18s var(--gw-ease);
}
.gw-nav__cta-group.is-open .gw-nav__cta-caret { transform: rotate(180deg); }
.gw-nav__cta-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 320px;
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line);
    border-radius: var(--gw-radius-lg);
    box-shadow: var(--gw-shadow-card);
    padding: 0.5rem;
    z-index: 200;
    animation: gw-cta-menu-pop 0.16s var(--gw-ease);
}
@keyframes gw-cta-menu-pop {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.gw-nav__cta-menu-item {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--gw-radius);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s var(--gw-ease);
}
.gw-nav__cta-menu-item:hover,
.gw-nav__cta-menu-item:focus-visible { background: var(--gw-paper); outline: 0; }
.gw-nav__cta-menu-item strong {
    display: block;
    color: var(--gw-primary);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}
.gw-nav__cta-menu-item span {
    display: block;
    font-size: 0.82rem;
    color: var(--gw-ink-soft);
    line-height: 1.45;
}
.gw-nav__toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    flex-direction: column;
    gap: 5px;
}
.gw-nav__toggle span { display: block; width: 22px; height: 2px; background: var(--gw-primary); }

/* Hero — clean corporate two-column */
.gw-hero {
    background: linear-gradient(180deg, #f8fafc 0%, var(--gw-bg) 100%);
    padding: 5rem 0 5.5rem;
    border-bottom: 1px solid var(--gw-line-soft);
    position: relative;
    overflow: hidden;
}
.gw-hero::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 90, 135, 0.06) 0%, transparent 60%);
    pointer-events: none;
}
.gw-hero__inner {
    max-width: var(--gw-container);
    margin: 0 auto;
    padding: 0 1.75rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.gw-hero h1 { margin-bottom: 1.5rem; }
.gw-hero__lead { font-size: clamp(1.1rem, 1.7vw, 1.25rem); line-height: 1.6; color: var(--gw-ink-soft); max-width: 52ch; margin-bottom: 2.25rem; }
.gw-hero__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Hero panel — fact summary card on the right */
.gw-hero__panel {
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line-soft);
    border-radius: var(--gw-radius-lg);
    padding: 2.25rem;
    box-shadow: var(--gw-shadow-card);
}
.gw-hero__panel-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gw-accent);
    margin: 0 0 1rem;
}
.gw-hero__panel h3 {
    font-size: 1.35rem;
    margin: 0 0 1rem;
    line-height: 1.3;
}
.gw-hero__panel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.gw-hero__panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--gw-line-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--gw-ink-soft);
}
.gw-hero__panel-list li:first-child { border-top: 0; padding-top: 0; }
.gw-hero__panel-list li::before {
    content: "✓";
    color: var(--gw-accent);
    font-weight: 700;
    flex: 0 0 auto;
    font-size: 0.95rem;
    margin-top: 0.05rem;
}
.gw-hero__panel-list li strong { color: var(--gw-ink); font-weight: 600; }
.gw-hero__panel-reg {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gw-line-soft);
    font-size: 0.78rem;
    color: var(--gw-muted);
    line-height: 1.5;
}

/* Trust bar */
.gw-trustbar {
    background: var(--gw-primary);
    border-bottom: 1px solid var(--gw-primary-dark);
    color: #fff;
}
.gw-trustbar__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    max-width: var(--gw-container);
    margin: 0 auto;
}
.gw-trustbar__item { padding: 2.25rem 1.5rem; position: relative; }
.gw-trustbar__item + .gw-trustbar__item::before {
    content: "";
    position: absolute;
    left: 0; top: 25%; bottom: 25%;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
}
.gw-trustbar__num { font-size: clamp(1.85rem, 2.8vw, 2.35rem); font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.025em; display: block; margin-bottom: 0.4rem; }
.gw-trustbar__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255, 255, 255, 0.7); font-weight: 700; }

/* Buttons */
.gw-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1.7rem;
    border-radius: var(--gw-radius);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s var(--gw-ease);
    font-size: 0.94rem;
    cursor: pointer;
    line-height: 1.2;
}
.gw-btn--primary { background: var(--gw-primary); color: #fff; }
.gw-btn--primary:hover { background: var(--gw-primary-dark); transform: translateY(-1px); box-shadow: 0 8px 18px -10px rgba(15, 23, 42, 0.45); }
.gw-btn--ghost { background: transparent; color: var(--gw-primary); border-color: var(--gw-line); }
.gw-btn--ghost:hover { background: var(--gw-primary); color: #fff; border-color: var(--gw-primary); }

/* Sections */
.gw-section { padding: 5.5rem 0; }
.gw-section--soft { background: var(--gw-bg-soft); }
.gw-section--deep { background: var(--gw-primary); color: #fff; }
.gw-section--deep h2, .gw-section--deep h3 { color: #fff; }
.gw-section--deep p { color: rgba(255, 255, 255, 0.78); }
.gw-section--deep .gw-eyebrow { color: var(--gw-accent-soft); }

/* Service / area cards */
.gw-areas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
@media (max-width: 640px) { .gw-areas { grid-template-columns: 1fr; } }

/* FAQ accordion (used on the FAQ page and the retirement-review landing) */
.gw-faq { max-width: 760px; margin: 0 auto; }
.gw-faq__item { border-bottom: 1px solid var(--gw-line); padding: 1.1rem 0; }
.gw-faq__item:first-of-type { border-top: 1px solid var(--gw-line); }
.gw-faq__q {
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 2rem;
    line-height: 1.45;
    color: var(--gw-primary);
}
.gw-faq__q::-webkit-details-marker { display: none; }
.gw-faq__q::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -0.05em;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.18s ease;
    color: var(--gw-accent);
}
.gw-faq__item[open] .gw-faq__q::after { content: "\2013"; transform: scale(1.15); }
.gw-faq__a { margin-top: 0.65rem; color: var(--gw-ink-soft); }
.gw-faq__a p { margin: 0 0 0.65rem; line-height: 1.65; }
.gw-faq__a p:last-child { margin-bottom: 0; }
.gw-faq__foot { text-align: center; margin-top: 2.5rem; color: var(--gw-muted); }

/* "The firm" block on About page - text + stats panel */
.gw-firm {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3.5rem;
    align-items: start;
}
.gw-firm__copy h2 { margin-bottom: 1.25rem; }
.gw-firm__stats {
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line-soft);
    border-radius: var(--gw-radius-lg);
    padding: 1.75rem;
    box-shadow: var(--gw-shadow-card);
    position: sticky;
    top: 1.5rem;
}
.gw-firm__stats-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--gw-accent);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gw-line-soft);
}
.gw-firm__stats-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1.5rem;
}
.gw-firm__stats-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.gw-firm__stats-num {
    font-family: var(--gw-font);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--gw-primary);
    letter-spacing: -0.03em;
    line-height: 1;
}
.gw-firm__stats-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--gw-muted);
    line-height: 1.4;
}
.gw-firm__stats-foot {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gw-line-soft);
    font-size: 0.82rem;
    color: var(--gw-ink-soft);
    line-height: 1.4;
}
.gw-firm__stats-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.5rem;
    background: var(--gw-accent);
    color: #fff;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    flex: 0 0 auto;
}
@media (max-width: 768px) {
    .gw-firm { grid-template-columns: 1fr; gap: 2rem; }
    .gw-firm__stats { position: static; }
}

/* Team grid (Team page) */
.gw-team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.gw-team-card {
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line-soft);
    border-radius: var(--gw-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--gw-shadow-soft);
    transition: transform 0.25s var(--gw-ease), box-shadow 0.25s var(--gw-ease);
}
.gw-team-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gw-shadow-card);
}
.gw-team-card__photo {
    background: var(--gw-paper);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.gw-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.gw-team-card__body { padding: 1.5rem 1.75rem 1.75rem; }
.gw-team-card__name { font-size: 1.25rem; margin: 0 0 0.25rem; color: var(--gw-primary); }
.gw-team-card__role {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--gw-accent);
    margin: 0 0 0.5rem;
}
.gw-team-card__creds {
    font-size: 0.82rem;
    color: var(--gw-muted);
    margin: 0 0 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px dashed var(--gw-line);
}
.gw-team-card__body p:last-child { margin-bottom: 0; }
.gw-team-card__social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--gw-line);
}
.gw-team-card__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--gw-radius);
    background: var(--gw-paper);
    color: var(--gw-accent);
    text-decoration: none;
    transition: background 0.18s var(--gw-ease), color 0.18s var(--gw-ease), transform 0.18s var(--gw-ease);
}
.gw-team-card__social-link:hover,
.gw-team-card__social-link:focus-visible {
    background: var(--gw-accent);
    color: #fff;
    transform: translateY(-1px);
    outline: 0;
}
@media (max-width: 768px) {
    .gw-team-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* "The Island" two-column block (image + copy) */
.gw-island {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.gw-island__media {
    border-radius: var(--gw-radius-lg);
    overflow: hidden;
    box-shadow: var(--gw-shadow-card);
    background: var(--gw-bg-soft);
}
.gw-island__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.gw-island__copy h2 { margin-bottom: 1.1rem; }
@media (max-width: 768px) {
    .gw-island { grid-template-columns: 1fr; gap: 2rem; }
}
.gw-area {
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line-soft);
    border-top: 3px solid var(--gw-accent);
    padding: 2.25rem 2rem 2rem;
    border-radius: var(--gw-radius-lg);
    transition: transform 0.25s var(--gw-ease), box-shadow 0.25s var(--gw-ease), border-color 0.25s var(--gw-ease);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    box-shadow: var(--gw-shadow-soft);
    position: relative;
    overflow: hidden;
}
.gw-area::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: var(--gw-accent);
    opacity: 0.04;
    transition: width 0.3s var(--gw-ease);
}
a.gw-area:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px -8px rgba(15, 23, 42, 0.18);
    border-top-color: var(--gw-primary);
}
a.gw-area:hover::before { width: 100%; }
.gw-area__num {
    font-family: var(--gw-font);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--gw-accent);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1.1rem;
    display: block;
    position: relative;
    z-index: 1;
}
.gw-area__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gw-primary);
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gw-line-soft);
    transition: color 0.2s var(--gw-ease), gap 0.2s var(--gw-ease);
    position: relative;
    z-index: 1;
}
a.gw-area:hover .gw-area__cta { color: var(--gw-accent); gap: 0.65rem; }
.gw-area__icon {
    width: 44px;
    height: 44px;
    background: var(--gw-paper);
    color: var(--gw-accent);
    border-radius: var(--gw-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}
.gw-area__title { font-size: 1.2rem; margin-bottom: 0.6rem; }
.gw-area__desc { font-size: 0.94rem; flex: 1; line-height: 1.6; }

/* Pillars */
.gw-pillars { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.gw-pillar {
    padding: 2rem;
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line-soft);
    border-radius: var(--gw-radius);
}
.gw-pillar h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.gw-pillar__mark { width: 32px; height: 3px; background: var(--gw-accent); border-radius: 2px; margin-bottom: 1.25rem; }

/* Inline list */
.gw-list { list-style: none; padding: 0; margin: 0 0 1.25rem; }
.gw-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.6rem;
    color: var(--gw-ink-soft);
    line-height: 1.6;
}
.gw-list li::before {
    content: "✓";
    color: var(--gw-accent);
    position: absolute;
    left: 0;
    font-weight: 700;
}

/* CTA strip */
.gw-cta-strip {
    background: var(--gw-primary);
    color: #fff;
    padding: 2.75rem 3rem;
    border-radius: var(--gw-radius-lg);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
}
.gw-cta-strip h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 1.85rem); margin: 0 0 0.4rem; }
.gw-cta-strip p { margin: 0; color: rgba(255, 255, 255, 0.78); }
.gw-cta-strip__body { flex: 1; min-width: 260px; }
.gw-cta-strip .gw-btn--primary { background: #fff; color: var(--gw-primary); }
.gw-cta-strip .gw-btn--primary:hover { background: var(--gw-paper); }

/* Page header */
.gw-pagehead {
    background: var(--gw-bg-soft);
    border-bottom: 1px solid var(--gw-line-soft);
    padding: 5rem 0 4.5rem;
    text-align: center;
}
.gw-pagehead h1 { margin-bottom: 1rem; }
.gw-pagehead p { font-size: 1.15rem; max-width: 62ch; margin: 0 auto; }

/* Service rows */
.gw-service-row {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 3.5rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--gw-line-soft);
}
.gw-service-row:last-child { border-bottom: 0; }
.gw-service-row__head { position: sticky; top: 1.5rem; align-self: start; }
.gw-service-row__head h3 { font-size: 1.5rem; }
.gw-service-row__head .gw-eyebrow {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gw-accent);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.6rem;
    display: block;
    font-family: var(--gw-font);
}
.gw-service-row__body h2 { font-size: clamp(1.5rem, 2.4vw, 1.8rem); margin-bottom: 1.1rem; line-height: 1.25; }

/* Article meta */
.gw-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--gw-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-bottom: 1rem;
}
.gw-meta__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gw-accent); display: inline-block; }

/* Team avatars */
.gw-member__avatar {
    width: 88px;
    height: 88px;
    background: var(--gw-primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}
.gw-member__name { font-size: 1.5rem; margin-bottom: 0.15rem; }
.gw-member__role { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gw-accent); font-weight: 700; margin-bottom: 0.5rem; }
.gw-member__creds { font-size: 0.9rem; color: var(--gw-muted); margin-bottom: 1rem; }

/* Contact form */
.gw-form {
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line-soft);
    padding: 2.75rem;
    border-radius: var(--gw-radius-lg);
    box-shadow: var(--gw-shadow-soft);
}
.gw-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.gw-form__field { display: flex; flex-direction: column; }
.gw-form__field--full { grid-column: 1 / -1; }
.gw-form label { font-size: 0.85rem; font-weight: 600; color: var(--gw-ink); margin-bottom: 0.4rem; }
.gw-form input, .gw-form textarea, .gw-form select {
    background: var(--gw-bg);
    border: 1px solid var(--gw-line);
    border-radius: var(--gw-radius);
    padding: 0.8rem 0.95rem;
    font: inherit;
    color: var(--gw-ink);
    transition: all 0.2s var(--gw-ease);
}
.gw-form input:focus, .gw-form textarea:focus, .gw-form select:focus {
    outline: 0;
    border-color: var(--gw-accent);
    box-shadow: 0 0 0 3px rgba(47, 90, 135, 0.12);
}
.gw-form textarea { min-height: 160px; resize: vertical; }
.gw-form__note { font-size: 0.85rem; color: var(--gw-muted); margin-top: 1.25rem; }

/* Contact info panel */
.gw-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3.5rem; align-items: start; }
.gw-contact-info h3 { font-size: 0.78rem; margin: 0 0 0.4rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gw-primary); }
.gw-contact-info p { margin: 0; color: var(--gw-ink); line-height: 1.5; }
.gw-contact-info a { color: var(--gw-primary); text-decoration: underline; text-underline-offset: 3px; }

/* Lead line above the contact tiles */
.gw-contact-info__lead {
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--gw-ink);
    margin: 0 0 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gw-line-soft);
}

/* Stacked icon-led contact tiles */
.gw-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.gw-contact-tile {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.1rem 1.2rem;
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line-soft);
    border-radius: var(--gw-radius-lg);
    transition: border-color 0.2s var(--gw-ease), box-shadow 0.2s var(--gw-ease);
}
.gw-contact-tile:hover {
    border-color: var(--gw-accent-soft);
    box-shadow: var(--gw-shadow-soft);
}
.gw-contact-tile__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--gw-radius);
    background: var(--gw-paper);
    color: var(--gw-accent);
    flex: 0 0 auto;
    font-size: 1rem;
}
.gw-contact-tile__body { flex: 1; min-width: 0; }
.gw-contact-tile__sub {
    color: var(--gw-muted);
    font-size: 0.86rem;
}

/* Trust footer signature - FSA pill */
.gw-contact-info__foot {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gw-line-soft);
    font-size: 0.85rem;
    color: var(--gw-ink-soft);
    line-height: 1.5;
}
.gw-contact-info__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.22rem 0.55rem;
    background: var(--gw-accent);
    color: #fff;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    flex: 0 0 auto;
    margin-top: 0.1rem;
}

/* Footer */
.gw-foot {
    background: var(--gw-primary);
    color: #fff;
    padding: 4.5rem 0 1.75rem;
}
.gw-foot__inner {
    max-width: var(--gw-container);
    margin: 0 auto;
    padding: 0 1.75rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2.75rem;
}
.gw-foot__brand { font-size: 1.4rem; font-weight: 700; color: #fff; display: block; margin-bottom: 0.85rem; letter-spacing: -0.02em; }
.gw-foot__heading { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gw-accent-soft); margin: 0 0 1.1rem; }
.gw-foot__addr, .gw-foot__txt { color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; margin: 0; line-height: 1.7; }
.gw-foot__hours { list-style: none; padding: 0; margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 0.86rem; max-width: 12rem; }
.gw-foot__hours li { display: grid; grid-template-columns: 5.25rem 1fr; gap: 0.5rem; padding: 0.28rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.gw-foot__hours li:last-child { border-bottom: 0; }
.gw-foot__hours li > span:first-child { color: rgba(255, 255, 255, 0.85); }
.gw-foot__hours li > span:last-child { font-variant-numeric: tabular-nums; }
.gw-foot__hours li.is-closed > span:last-child { font-style: italic; color: rgba(255, 255, 255, 0.42); }
.gw-foot__social-row { max-width: var(--gw-container); margin: 2.5rem auto 0; padding: 0 1.75rem; }
.gw-foot__social { display: flex; gap: 0.5rem; }
.gw-foot__social-link {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.75);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.2s var(--gw-ease); text-decoration: none;
}
.gw-foot__social-link:hover { background: var(--gw-accent); color: #fff; transform: translateY(-1px); }
.gw-foot__link { display: block; color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 0.92rem; margin-bottom: 0.45rem; transition: color 0.2s var(--gw-ease); }
.gw-foot__link:hover { color: var(--gw-accent-soft); }
.gw-foot__bar {
    max-width: var(--gw-container);
    margin: 3.5rem auto 0;
    padding: 1.5rem 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}
.gw-foot__legal { display: inline-flex; gap: 0.55rem; align-items: center; }
.gw-foot__legal a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: color 0.2s var(--gw-ease); }
.gw-foot__legal a:hover { color: var(--gw-accent-soft); }
.gw-foot__legal span { opacity: 0.5; }
.gw-foot__regs a { color: var(--gw-accent-soft); text-decoration: underline; }

/* Responsive */
@media (max-width: 960px) {
    .gw-nav__toggle { display: inline-flex; }
    .gw-nav__links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--gw-bg);
        border-bottom: 1px solid var(--gw-line);
        flex-direction: column;
        gap: 0;
        padding: 1rem 1.75rem 1.5rem;
        margin-left: 0;
        display: none;
        z-index: 50;
        box-shadow: 0 18px 30px -12px rgba(15, 23, 42, 0.12);
    }
    .gw-nav__links.is-open { display: flex; }
    .gw-nav__link { padding: 0.85rem 0; border-bottom: 1px solid var(--gw-line-soft); width: 100%; }
    .gw-nav__link::after { display: none; }
    .gw-nav__cta { width: 100%; justify-content: center; margin: 0.75rem 0 0; }
    .gw-nav__cta-group { width: 100%; }
    .gw-nav__cta-menu { position: static; min-width: 0; box-shadow: none; border: 0; padding: 0.25rem 0 0; background: transparent; animation: none; }
    .gw-nav__cta-menu-item { background: var(--gw-bg-soft); margin-top: 0.4rem; }

    .gw-hero { padding: 4rem 0 4rem; }
    .gw-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .gw-service-row { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
    .gw-service-row__head { position: static; }
    .gw-contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gw-contact-grid .gw-form { order: -1; }
    .gw-form__row { grid-template-columns: 1fr; gap: 1rem; }
    .gw-foot__inner { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
    .gw-section { padding: 4rem 0; }
    .gw-cta-strip { padding: 2rem; }
}
@media (max-width: 720px) {
    .gw-trustbar__row { grid-template-columns: 1fr; }
    .gw-trustbar__item + .gw-trustbar__item::before {
        left: 25%; right: 25%; top: 0; bottom: auto; width: auto; height: 1px;
    }
}
@media (max-width: 540px) {
    .gw-foot__inner { grid-template-columns: 1fr; }
    .gw-form { padding: 1.75rem; }
    .gw-hero__panel { padding: 1.75rem; }
}

/* ============================================================
   Motion package — gated behind prefers-reduced-motion.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
    [data-reveal] {
        opacity: 0;
        transform: translateY(14px);
        transition: opacity 600ms cubic-bezier(0.22, 0.61, 0.36, 1),
                    transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
        will-change: opacity, transform;
    }
    [data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

    /* Pillar mark line-draw */
    .gw-pillar .gw-pillar__mark {
        transform-origin: left center;
        transform: scaleX(0);
        transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .gw-pillar[data-reveal].is-revealed .gw-pillar__mark {
        transform: scaleX(1);
        transition-delay: 200ms;
    }
}

/* --- CTA arrow micro-interaction (anchor buttons + nav CTA) --- */
a.gw-btn::after,
.gw-nav__cta::after {
    content: "\2192"; /* → */
    display: inline-block;
    margin-left: 0.35rem;
    transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
a.gw-btn:hover::after,
.gw-nav__cta:hover::after { transform: translateX(4px); }

/* ============================================================
   Pull-quote band — adviser voice between sections.
   Navy bg, silver-blue accent. All-Inter, italic at scale.
   ============================================================ */
.gw-pullquote-band {
    background: var(--gw-primary);
    color: #ffffff;
    padding: 4.5rem 0;
    position: relative;
}
.gw-pullquote-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gw-accent-soft);
}
.gw-pullquote { max-width: 760px; margin: 0 auto; padding: 0 1.75rem; text-align: center; }
.gw-pullquote::before {
    content: "\201C";
    display: block;
    font-family: var(--gw-font);
    font-size: 4.5rem;
    line-height: 0.6;
    color: var(--gw-accent-soft);
    margin: 0 0 1rem;
    font-weight: 600;
}
.gw-pullquote__text {
    font-family: var(--gw-font);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    line-height: 1.45;
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 2rem;
    letter-spacing: -0.01em;
}
.gw-pullquote__attrib {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(122, 147, 179, 0.25);
}
.gw-pullquote__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gw-primary-dark);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--gw-font);
    font-size: 0.85rem;
    font-weight: 600;
    flex: 0 0 auto;
}
.gw-pullquote__avatar--photo {
    object-fit: cover;
    object-position: top center;
    background: var(--gw-paper);
    letter-spacing: 0.04em;
    border: 2px solid var(--gw-accent-soft);
    flex: 0 0 auto;
}
.gw-pullquote__attrib > span { display: flex; flex-direction: column; text-align: left; line-height: 1.25; }
.gw-pullquote__name { font-family: var(--gw-font); font-size: 0.95rem; font-weight: 600; color: #ffffff; }
.gw-pullquote__role { font-size: 0.74rem; color: var(--gw-accent-soft); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }

/* ============================================================
   Insights — index card list + article detail layout
   ============================================================ */

/* Category tag — replaces the loose eyebrow on article cards */
.gw-tag {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    background: var(--gw-paper);
    color: var(--gw-accent);
    border: 1px solid var(--gw-line);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Index list of article cards */
.gw-articles {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 961px) {
    .gw-articles { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
.gw-articles > li { display: flex; }
.gw-article-card {
    display: flex;
    flex-direction: column;
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line);
    border-radius: var(--gw-radius-lg);
    padding: 2rem 2rem 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s var(--gw-ease), box-shadow 0.25s var(--gw-ease), border-color 0.25s var(--gw-ease);
    flex: 1;
    position: relative;
    overflow: hidden;
}
.gw-article-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gw-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--gw-ease);
}
.gw-article-card:hover,
.gw-article-card:focus-visible {
    transform: translateY(-3px);
    box-shadow: var(--gw-shadow-card);
    border-color: var(--gw-line);
    text-decoration: none;
}
.gw-article-card:hover::after,
.gw-article-card:focus-visible::after { transform: scaleX(1); }
.gw-article-card h2 {
    font-size: clamp(1.3rem, 2vw, 1.55rem);
    margin: 0 0 0.85rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.gw-article-card__lead {
    color: var(--gw-ink-soft);
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
    flex: 1;
}
.gw-article-card__foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gw-line-soft);
    font-size: 0.78rem;
    color: var(--gw-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.gw-article-card__author {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gw-primary);
}
.gw-article-card__author-initials {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gw-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--gw-font);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--gw-accent);
    flex: 0 0 auto;
    transition: border-color 0.2s var(--gw-ease);
}
.gw-article-card:hover .gw-article-card__author-initials,
.gw-article-card:focus-visible .gw-article-card__author-initials { border-color: var(--gw-accent); }
.gw-article-card__more {
    margin-left: auto;
    color: var(--gw-accent);
    letter-spacing: 0.08em;
}

.gw-articles__note {
    text-align: center;
    margin: 2.5rem 0 0;
    font-size: 0.9rem;
    color: var(--gw-muted);
    font-style: italic;
}

/* Back-to-index link on detail pages */
.gw-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gw-muted);
    text-decoration: none;
    margin-bottom: 2.5rem;
    transition: color 0.2s var(--gw-ease), transform 0.2s var(--gw-ease);
}
.gw-back-link:hover {
    color: var(--gw-primary);
    transform: translateX(-2px);
    text-decoration: none;
}

/* Article detail layout */
.gw-article { max-width: 720px; margin: 0 auto; }
.gw-article__head { margin-bottom: 2.5rem; text-align: left; }
.gw-article__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0.75rem 0 1.25rem;
}
.gw-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: var(--gw-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}
.gw-article__author {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--gw-ink-soft);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    transition: color 0.2s var(--gw-ease);
}
.gw-article__author:hover { color: var(--gw-primary); text-decoration: none; }
.gw-article__author:hover .gw-article__author-initials,
.gw-article__author:hover .gw-article__author-photo { border-color: var(--gw-accent); }
.gw-article__author-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid transparent;
    background: var(--gw-paper);
    flex: 0 0 auto;
    transition: border-color 0.2s var(--gw-ease);
}
.gw-article-card__author-photo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    background: var(--gw-paper);
    flex: 0 0 auto;
    margin-right: 0.45rem;
}
.gw-article__author-initials {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gw-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--gw-font);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--gw-line);
    transition: border-color 0.2s var(--gw-ease);
    flex: 0 0 auto;
}
.gw-article__author-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}
.gw-article__author-text strong { color: var(--gw-primary); font-weight: 700; }
.gw-article__body { font-size: 1.05rem; line-height: 1.7; color: var(--gw-ink); }
.gw-article__body p { color: var(--gw-ink); }
.gw-article__lead {
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--gw-ink-soft);
    margin: 0 0 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--gw-line-soft);
}

/* Share buttons (article footer) */
.gw-article__foot {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gw-line-soft);
}
.gw-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}
.gw-share__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gw-muted);
    margin-right: 0.4rem;
}
.gw-share__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--gw-line);
    border-radius: 6px;
    background: var(--gw-bg);
    color: var(--gw-ink-soft);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s var(--gw-ease);
}
.gw-share__link:hover {
    background: var(--gw-primary);
    color: #ffffff;
    border-color: var(--gw-primary);
    text-decoration: none;
}

/* "Read next" related post card */
.gw-related {
    max-width: 720px;
    margin: 4rem auto 0;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gw-line-soft);
}
.gw-related__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gw-accent);
    margin: 0 0 1rem;
}
.gw-related__card {
    display: block;
    padding: 1.5rem 1.75rem;
    background: var(--gw-bg-elevated);
    border: 1px solid var(--gw-line);
    border-left: 3px solid var(--gw-accent);
    border-radius: var(--gw-radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s var(--gw-ease);
}
.gw-related__card:hover { background: var(--gw-paper); text-decoration: none; }
.gw-related__card h3 { font-size: 1.2rem; margin: 0.5rem 0 0.85rem; line-height: 1.25; }
.gw-related__cta { font-size: 0.85rem; font-weight: 600; color: var(--gw-accent); }

/* Footer policy modal (demo) - shown when Privacy/Cookie policy/Terms are clicked */
.gw-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.gw-modal[hidden] { display: none; }
.gw-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 35, 63, 0.55);
}
.gw-modal__panel {
    position: relative;
    background: var(--gw-paper, #ffffff);
    border-radius: 10px;
    max-width: 480px;
    width: 100%;
    padding: 2rem 2.2rem 1.9rem;
    box-shadow: 0 18px 48px rgba(20, 35, 63, 0.28);
    color: var(--gw-ink);
}
.gw-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 1rem;
    background: transparent;
    border: 0;
    font-size: 1.6rem;
    color: var(--gw-muted, #6f7c8c);
    cursor: pointer;
    line-height: 1;
}
.gw-modal__close:hover { color: var(--gw-ink); }
.gw-modal__eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gw-accent);
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.gw-modal__panel h2 {
    font-family: var(--gw-display, "Playfair Display", Georgia, serif);
    font-size: 1.5rem;
    margin: 0 0 0.85rem;
    color: var(--gw-primary);
}
.gw-modal__panel p {
    color: var(--gw-ink-soft, var(--gw-ink));
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 1.5rem;
}
.gw-modal__ctas {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

