/* ---------- Self-hosted fonts ---------- */
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 200 900;
    font-display: swap;
    src: url('/fonts/source-sans-3-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('/fonts/playfair-display-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    /* Primary — burgundy from the logo oval */
    --fc-burgundy: #722f37;
    --fc-burgundy-dark: #5a252b;
    --fc-burgundy-darker: #3d181c;
    --fc-burgundy-light: #8f3b44;
    --fc-burgundy-soft: rgba(114, 47, 55, 0.08);
    --fc-burgundy-focus: rgba(114, 47, 55, 0.7);

    /* Gold accent — the RF monogram */
    --fc-gold: #c9a227;
    --fc-gold-dark: #9e7f1c;
    --fc-gold-light: #e4c558;
    --fc-cream-accent: #f5e9c7;

    /* Deep navy reserved for body text & footer only */
    --fc-navy-dark: #14233c;
    --fc-navy-darker: #0b1726;

    /* Warm neutrals — ivory / cream paper */
    --fc-paper: #faf6ef;
    --fc-ivory: #faf6ef;
    --fc-cream: #f3ebd9;

    /* Greys for typography */
    --fc-ink: #2a1a1c;
    --fc-charcoal: #3a2a2d;
    --fc-ash: #5a4a4d;
    --fc-mist: #7a6c6e;
    --fc-muted: #9b8f91;
    --fc-line: #e8dfcc;
    --fc-input-border: #8a7a5e;

    /* Other accents */
    --fc-error: #b8156a;
    --fc-teal: #2a9d8f;
    --fc-teal-dark: #1e7e73;

    /* Effects */
    --fc-shadow: 0 10px 30px rgba(61, 24, 28, 0.08);
    --fc-shadow-lg: 0 20px 50px rgba(61, 24, 28, 0.18);
    --fc-radius: 14px;
    --fc-radius-sm: 8px;
    --fc-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.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;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.text-muted { color: var(--fc-mist); font-size: 0.88rem; }

:focus-visible {
    outline: 2px solid var(--fc-burgundy);
    outline-offset: 3px;
    border-radius: 4px;
}
.btn-fc:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px var(--fc-burgundy-focus);
}
.main-nav .nav-link:focus-visible {
    outline: 2px solid var(--fc-burgundy);
    outline-offset: 2px;
}
.service-card:focus-visible,
.link-card:focus-visible {
    outline: 3px solid var(--fc-burgundy);
    outline-offset: 4px;
}
.hero .btn-fc-outline:focus-visible {
    outline-color: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.35);
}

main :is(a, button, input, select, textarea, [tabindex]) {
    scroll-margin-top: 160px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-in { opacity: 1 !important; transform: none !important; }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--fc-charcoal);
    background: var(--fc-paper);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    color: var(--fc-ink);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }

p { color: var(--fc-ash); }

a { color: var(--fc-burgundy); text-decoration: none; transition: color var(--fc-transition); }
a:hover { color: var(--fc-burgundy-dark); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    background: var(--fc-ink);
    color: #fff;
    padding: 12px 20px;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; }

.top-bar {
    background: var(--fc-burgundy-darker);
    color: #f1e4d9;
    font-size: 0.825rem;
    padding: 8px 0;
}
.top-bar a, .top-bar span {
    color: #f1e4d9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 18px;
    white-space: nowrap;
}
.top-bar a { padding: 4px 0; }
.top-bar a:last-child, .top-bar span:last-child { margin-right: 0; }
.top-bar a:hover { color: #fff; }
.top-bar i { color: var(--fc-gold-light); }

.main-nav {
    background: #fff;
    box-shadow: 0 2px 20px rgba(61, 24, 28, 0.06);
    padding: 14px 0;
    border-bottom: 3px solid var(--fc-gold);
}
.main-nav .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-top: 0;
    padding-bottom: 0;
}
.main-nav .navbar-brand img { height: 64px; width: auto; }
.main-nav .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.main-nav .brand-text-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fc-burgundy-darker);
    letter-spacing: 0.005em;
}
.main-nav .brand-text-cred {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--fc-mist);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 5px;
}
@media (max-width: 575px) {
    .main-nav .navbar-brand { gap: 10px; }
    .main-nav .navbar-brand img { height: 54px; }
    .main-nav .brand-text-cred { display: none; }
    .main-nav .brand-text-name { font-size: 1.02rem; }
}
.main-nav .navbar-nav { gap: 4px; }
.main-nav .nav-link {
    color: var(--fc-ink) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 16px !important;
    border-radius: var(--fc-radius-sm);
    transition: all var(--fc-transition);
}
.main-nav .nav-link:hover {
    color: var(--fc-burgundy) !important;
    background: var(--fc-ivory);
}
.main-nav .nav-link.active {
    color: var(--fc-burgundy) !important;
    background: var(--fc-burgundy-soft);
}

/* ---------- Buttons ---------- */
.btn-fc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--fc-radius-sm);
    transition: all var(--fc-transition);
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
}
.btn-fc-primary {
    background: var(--fc-gold);
    color: var(--fc-burgundy-darker);
    border-color: var(--fc-gold);
}
.btn-fc-primary:hover {
    background: var(--fc-burgundy-dark);
    border-color: var(--fc-burgundy-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(114, 47, 55, 0.38);
}
.btn-fc-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-fc-outline:hover {
    background: #fff;
    color: var(--fc-burgundy);
    border-color: #fff;
}
.btn-fc-outline-dark {
    background: transparent;
    color: var(--fc-burgundy);
    border-color: var(--fc-burgundy);
}
.btn-fc-outline-dark:hover {
    background: var(--fc-burgundy);
    color: #fff;
    border-color: var(--fc-burgundy);
}
.btn-fc-accent {
    background: var(--fc-burgundy);
    color: #fff;
    border-color: var(--fc-burgundy);
}
.btn-fc-accent:hover {
    background: var(--fc-burgundy-dark);
    border-color: var(--fc-burgundy-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(114, 47, 55, 0.35);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--fc-burgundy-darker) 0%, var(--fc-burgundy-dark) 45%, var(--fc-burgundy) 100%);
    color: #fff;
    padding: 64px 0 72px;
    overflow: hidden;
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-left { flex: 1 1 46%; min-width: 0; }
.hero-right { flex: 1 1 46%; min-width: 0; }
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 30%, rgba(228, 197, 88, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 82% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-gold-dark) 0%, var(--fc-gold-light) 50%, var(--fc-gold-dark) 100%);
}
.hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.22);
    margin-bottom: 24px;
    color: #fff;
}
.hero-eyebrow i { color: var(--fc-gold-light); }

.hero h1 {
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0;
}
.hero h1 .accent { color: var(--fc-gold-light); }

.hero-lead {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 28px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    text-align: right;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }

/* ---------- Page header (non-home) ---------- */
.page-header {
    background: linear-gradient(135deg, var(--fc-burgundy-darker) 0%, var(--fc-burgundy-dark) 50%, var(--fc-burgundy) 100%);
    color: #fff;
    padding: 72px 0 78px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 75% 30%, rgba(228, 197, 88, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 10% 85%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}
.page-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-gold-dark) 0%, var(--fc-gold-light) 50%, var(--fc-gold-dark) 100%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: #fff; margin: 0; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); }

.page-header .breadcrumb {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 14px;
    background: transparent;
    padding: 0;
}
.page-header .breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}
.page-header .breadcrumb li {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-weight: 500;
}
.page-header .breadcrumb li + li::before {
    content: "\203A";
    margin: 0 8px 0 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}
.page-header .breadcrumb a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.5);
    text-underline-offset: 3px;
    padding: 2px 0;
}
.page-header .breadcrumb a:hover,
.page-header .breadcrumb a:focus-visible {
    text-decoration-color: #fff;
    color: #fff;
}
.page-header .breadcrumb [aria-current="page"] {
    color: #ffffff;
    font-weight: 600;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; background: #fff; }
.section-alt { background: var(--fc-ivory); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--fc-burgundy);
    margin-bottom: 12px;
    position: relative;
    padding: 0 32px;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--fc-gold);
}
.section-head .eyebrow::before { left: 0; }
.section-head .eyebrow::after { right: 0; }
.section-head h2 { margin-bottom: 16px; }
.section-foot { text-align: center; margin-top: 48px; }

/* ---------- Welcome ---------- */
.welcome { padding: 90px 0 40px; background: #fff; }
.welcome-card {
    background: #fff;
    border-radius: var(--fc-radius);
    padding: 48px;
    box-shadow: var(--fc-shadow);
    border-top: 4px solid var(--fc-burgundy);
    position: relative;
}
.welcome-card::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--fc-gold);
}
.welcome-quote {
    font-size: 1.35rem;
    color: var(--fc-ink);
    font-style: italic;
    font-weight: 500;
    padding: 20px 0;
    border-top: 1px solid var(--fc-line);
    border-bottom: 1px solid var(--fc-line);
    margin: 24px 0;
}
.welcome-quote::before { content: "\201C"; font-size: 2rem; color: var(--fc-burgundy); line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.welcome-quote::after { content: "\201D"; font-size: 2rem; color: var(--fc-burgundy); line-height: 0; vertical-align: -0.4em; margin-left: 4px; }

/* ---------- Service cards (home) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 28px; }
.service-grid > .service-card { grid-column: span 2; }
.service-grid > .service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-grid > .service-card:nth-child(5) { grid-column: 4 / span 2; }
@media (max-width: 900px) {
    .service-grid { grid-template-columns: 1fr 1fr; }
    .service-grid > .service-card,
    .service-grid > .service-card:nth-child(4),
    .service-grid > .service-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 560px) {
    .service-grid { grid-template-columns: 1fr; }
}

.service-card {
    background: #fff;
    border-radius: var(--fc-radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--fc-shadow);
    transition: all var(--fc-transition);
    text-decoration: none;
    color: var(--fc-ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--fc-line);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--fc-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--fc-transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fc-shadow-lg);
    color: var(--fc-burgundy-dark);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fc-burgundy) 0%, var(--fc-burgundy-light) 100%);
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 6px 16px rgba(114, 47, 55, 0.25);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--fc-ink);
}
.service-card p { font-size: 0.95rem; margin-bottom: 16px; }
.service-card .learn-more {
    margin-top: auto;
    color: var(--fc-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-card:hover .learn-more i { transform: translateX(4px); }
.service-card .learn-more i { transition: transform var(--fc-transition); }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.why-card {
    background: #fff;
    border-radius: var(--fc-radius);
    padding: 36px 28px;
    box-shadow: var(--fc-shadow);
    border-top: 4px solid var(--fc-burgundy);
    height: 100%;
    position: relative;
}
.why-card::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 48px;
    height: 4px;
    background: var(--fc-gold);
}
.why-card.why-gold { border-top-color: var(--fc-gold); }
.why-card.why-gold::before { background: var(--fc-burgundy); }
.why-card.why-teal { border-top-color: var(--fc-burgundy-light); }
.why-card.why-teal::before { background: var(--fc-gold); }
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--fc-burgundy) 0%, var(--fc-burgundy-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.why-card.why-gold .why-icon { background: linear-gradient(135deg, var(--fc-gold-dark) 0%, var(--fc-gold) 100%); }
.why-card.why-teal .why-icon { background: linear-gradient(135deg, var(--fc-burgundy-dark) 0%, var(--fc-burgundy-light) 100%); }
.why-card h3 { font-size: 1.25rem; margin-bottom: 12px; }

/* ---------- CTA section ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--fc-burgundy-darker) 0%, var(--fc-burgundy-dark) 55%, var(--fc-burgundy) 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(228, 197, 88, 0.22) 0%, transparent 42%),
        radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
}
.cta-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-gold-dark) 0%, var(--fc-gold-light) 50%, var(--fc-gold-dark) 100%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255, 255, 255, 0.88); font-size: 1.1rem; }

/* ---------- Content pages ---------- */
.content-section {
    padding: 80px 0;
    background: var(--fc-paper);
}
.content-section .content-body { max-width: 900px; margin: 0 auto; }
.content-body h2 {
    color: var(--fc-burgundy-darker);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fc-gold);
    display: inline-block;
    padding-right: 20px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
    color: var(--fc-burgundy);
    margin-top: 32px;
    margin-bottom: 12px;
}
.content-body p { font-size: 1.05rem; margin-bottom: 18px; }
.content-body ul li, .content-body ol li { margin-bottom: 6px; color: var(--fc-ash); }

.content-intro {
    font-size: 1.2rem;
    color: var(--fc-charcoal);
    line-height: 1.7;
    margin-bottom: 32px;
    padding: 12px 16px 12px 20px;
    border-left: 4px solid var(--fc-burgundy);
    background: linear-gradient(90deg, var(--fc-burgundy-soft) 0%, transparent 100%);
    border-radius: 0 var(--fc-radius-sm) var(--fc-radius-sm) 0;
}

.content-cta {
    background: linear-gradient(135deg, var(--fc-ivory) 0%, var(--fc-cream-accent) 100%);
    border-radius: var(--fc-radius);
    padding: 32px 36px;
    margin-top: 48px;
    text-align: center;
    border: 1px solid var(--fc-line);
    border-left: 4px solid var(--fc-burgundy);
}
.content-cta h3 {
    margin-top: 0;
    color: var(--fc-burgundy-darker);
}
.content-cta p {
    color: var(--fc-charcoal);
    margin-bottom: 20px;
}

/* ---------- Services detail list grid ---------- */
.service-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin: 18px 0 28px; }
.service-list-col {
    background: #fff;
    border-radius: var(--fc-radius-sm);
    padding: 28px;
    border: 1px solid var(--fc-line);
    box-shadow: 0 4px 14px rgba(61, 24, 28, 0.05);
    position: relative;
}
.service-list-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--fc-gold);
    border-radius: var(--fc-radius-sm) var(--fc-radius-sm) 0 0;
}
.service-list-col ul { list-style: none; padding: 0; margin: 0; }
.service-list-col ul li {
    padding: 6px 0 6px 22px;
    position: relative;
    color: var(--fc-charcoal);
    font-size: 0.95rem;
}
.service-list-col ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--fc-gold-dark);
    font-size: 0.75rem;
    top: 9px;
}

/* ---------- Team grid ---------- */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    margin-top: 16px;
}
.team-card {
    background: #fff;
    border-radius: var(--fc-radius);
    box-shadow: var(--fc-shadow);
    transition: all var(--fc-transition);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    border-top: 4px solid var(--fc-burgundy);
    position: relative;
}
.team-card::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--fc-gold);
}
.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fc-shadow-lg);
}
.team-photo {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
    background: var(--fc-cream);
    border-radius: var(--fc-radius-sm);
    overflow: hidden;
    position: relative;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fc-transition);
}
.team-card:hover .team-photo img {
    transform: scale(1.04);
}
.team-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; }
.team-body h3 {
    font-size: 1.2rem;
    margin: 0 0 4px;
    color: var(--fc-ink);
}
.team-role {
    color: var(--fc-burgundy);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.team-bio {
    font-size: 0.95rem;
    color: var(--fc-ash);
    flex-grow: 1;
    margin-bottom: 16px;
}
.team-email {
    font-size: 0.88rem;
    color: var(--fc-burgundy);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-top: 12px;
    margin-top: auto;
    border-top: 1px solid var(--fc-line);
    word-break: break-word;
}
@media (max-width: 860px) {
    .team-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
    .team-card { flex-direction: column; align-items: center; text-align: center; }
    .team-photo { flex: 0 0 140px; width: 140px; height: 140px; }
    .team-email { align-self: stretch; }
}

/* ---------- Resources link grid ---------- */
.link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 20px 0 36px;
}
.link-card {
    background: #fff;
    border-radius: var(--fc-radius);
    padding: 24px;
    border: 1px solid var(--fc-line);
    box-shadow: 0 4px 14px rgba(61, 24, 28, 0.05);
    text-decoration: none;
    color: var(--fc-ink);
    display: flex;
    flex-direction: column;
    transition: all var(--fc-transition);
    position: relative;
}
.link-card::after {
    content: "\f35d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--fc-muted);
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity var(--fc-transition);
}
.link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fc-shadow);
    border-color: var(--fc-burgundy);
    color: var(--fc-burgundy-dark);
}
.link-card:hover::after { opacity: 1; color: var(--fc-burgundy); }
.link-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--fc-burgundy-darker);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.link-card-title i {
    color: var(--fc-gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}
.link-card:hover .link-card-title { color: var(--fc-burgundy); }
.link-card-desc {
    font-size: 0.93rem;
    color: var(--fc-ash);
    margin-bottom: 14px;
    flex-grow: 1;
}
.link-card-url {
    font-size: 0.8rem;
    color: var(--fc-mist);
    font-weight: 600;
    letter-spacing: 0.04em;
    padding-top: 10px;
    border-top: 1px solid var(--fc-line);
}

/* ---------- FAQ accordion ---------- */
.fc-accordion .accordion-item {
    background: #fff;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius-sm);
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(61, 24, 28, 0.04);
    overflow: hidden;
}
.fc-accordion .accordion-button {
    background: #fff;
    color: var(--fc-ink);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 18px 22px;
    border: 0;
    box-shadow: none;
}
.fc-accordion .accordion-button:not(.collapsed) {
    background: var(--fc-ivory);
    color: var(--fc-burgundy-darker);
    box-shadow: inset 3px 0 0 var(--fc-burgundy);
}
.fc-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px var(--fc-burgundy-focus);
    border-color: transparent;
}
.fc-accordion .accordion-button::after {
    background-image: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--fc-burgundy);
    width: auto;
    height: auto;
    font-size: 0.9rem;
    transition: transform 0.2s ease, color 0.2s ease;
}
.fc-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    transform: rotate(0);
    color: var(--fc-gold-dark);
}
.fc-accordion .accordion-body {
    padding: 20px 22px 22px;
    color: var(--fc-ash);
    background: #fff;
    border-top: 1px solid var(--fc-line);
    font-size: 1rem;
    line-height: 1.65;
}
.fc-accordion .accordion-body p { margin-bottom: 12px; }
.fc-accordion .accordion-body ul { padding-left: 18px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-grid > div { display: flex; flex-direction: column; gap: 24px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card {
    background: #fff;
    border-radius: var(--fc-radius);
    padding: 36px;
    box-shadow: var(--fc-shadow);
    border-top: 4px solid var(--fc-burgundy);
    position: relative;
}
.contact-info-card::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--fc-gold);
}
.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--fc-line);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--fc-burgundy) 0%, var(--fc-burgundy-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-label {
    font-size: 0.8rem;
    color: var(--fc-mist);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.contact-info-value { font-size: 1.05rem; font-weight: 600; color: var(--fc-ink); }
.contact-info-value a { color: var(--fc-ink); }
.contact-info-value a:hover { color: var(--fc-burgundy); }

.map-wrapper {
    border-radius: var(--fc-radius);
    overflow: hidden;
    box-shadow: var(--fc-shadow);
    aspect-ratio: 16 / 9;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Forms ---------- */
.form-card {
    background: #fff;
    border-radius: var(--fc-radius);
    padding: 40px;
    box-shadow: var(--fc-shadow);
    border-top: 4px solid var(--fc-burgundy);
    position: relative;
}
.form-card::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--fc-gold);
}
.form-card h2 { margin-top: 0; color: var(--fc-burgundy-darker); }
.form-label-fc {
    font-weight: 600;
    color: var(--fc-ink);
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: block;
}
.form-label-fc .required {
    color: var(--fc-error);
    margin-left: 2px;
    font-weight: 700;
}
.form-help {
    font-size: 0.85rem;
    color: var(--fc-mist);
    margin-top: 4px;
    margin-bottom: 16px;
    line-height: 1.5;
}
.form-control, .form-select {
    border: 1.5px solid var(--fc-input-border);
    border-radius: var(--fc-radius-sm);
    padding: 12px 16px;
    font-size: 1rem;
    transition: all var(--fc-transition);
    background: #fff;
    width: 100%;
}
.form-control:focus, .form-select:focus {
    outline: 2px solid transparent;
    outline-offset: 0;
    border-color: var(--fc-burgundy);
    box-shadow: 0 0 0 4px var(--fc-burgundy-focus);
}
.form-control[aria-invalid="true"],
.form-select[aria-invalid="true"] {
    border-color: var(--fc-error);
    box-shadow: 0 0 0 4px rgba(184, 21, 106, 0.6);
}
textarea.form-control { min-height: 140px; resize: vertical; }

/* ---------- Alerts ---------- */
.alert-success-fc {
    background: #f2efe4;
    border: 1px solid var(--fc-cream-accent);
    color: var(--fc-burgundy-darker);
    padding: 18px 22px;
    border-radius: var(--fc-radius-sm);
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: start;
    border-left: 4px solid var(--fc-gold);
}
.alert-success-fc i { color: var(--fc-gold-dark); font-size: 1.3rem; margin-top: 2px; }
.alert-error-fc {
    background: #fde8ef;
    border: 1px solid #eba4c3;
    color: #6e0f41;
    padding: 18px 22px;
    border-radius: var(--fc-radius-sm);
    margin-bottom: 24px;
    display: flex;
    gap: 12px;
    align-items: start;
}
.alert-error-fc i { color: var(--fc-error); font-size: 1.3rem; margin-top: 2px; }
.alert-error-fc ul {
    margin: 6px 0 0;
    padding-left: 20px;
    color: #6e0f41;
}
.alert-error-fc ul li { margin-bottom: 2px; }
.alert-error-fc a { color: #6e0f41; font-weight: 700; text-decoration: underline; }
.alert-info-fc {
    background: var(--fc-ivory);
    border: 1px solid var(--fc-line);
    color: var(--fc-burgundy-darker);
    padding: 18px 22px;
    border-radius: var(--fc-radius-sm);
    margin: 24px 0;
    display: flex;
    gap: 12px;
    align-items: start;
    border-left: 4px solid var(--fc-burgundy);
}
.alert-info-fc i { color: var(--fc-burgundy); font-size: 1.3rem; margin-top: 2px; }
.alert-info-fc a { color: var(--fc-burgundy); font-weight: 700; }

.field-validation-error, .text-danger {
    color: var(--fc-error);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 6px;
    display: block;
}
.field-validation-error::before,
.text-danger::before {
    content: "\f06a";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 6px;
}
.field-validation-error:empty,
.text-danger:empty { display: none; }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--fc-navy-darker);
    color: #c5cbd7;
    padding: 72px 0 0;
    border-top: 4px solid var(--fc-burgundy);
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fc-burgundy) 0%, var(--fc-gold) 50%, var(--fc-burgundy) 100%);
}
.site-footer .footer-heading {
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.site-footer .footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: var(--fc-gold);
    border-radius: 2px;
}
.site-footer p { color: #a5acbd; font-size: 0.95rem; }
.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer .footer-links li { padding: 6px 0; }
.site-footer .footer-links a {
    color: #a5acbd;
    font-size: 0.93rem;
    transition: all var(--fc-transition);
}
.site-footer .footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-contact { font-size: 0.95rem; color: #a5acbd; font-style: normal; }
.footer-contact a,
.footer-contact > span { color: #a5acbd; display: inline-flex; align-items: center; gap: 8px; }
.footer-contact a:hover { color: #fff; }
.footer-contact i { color: var(--fc-gold); width: 16px; text-align: center; }
.footer-cert { margin-top: 16px; }
.footer-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(201, 162, 39, 0.15);
    color: var(--fc-gold-light);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 22px 0;
    margin-top: 56px;
    font-size: 0.85rem;
    color: #8b92a3;
}
.footer-tagline { color: var(--fc-gold-light); font-weight: 500; }

/* ---------- Process section ---------- */
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.process-intro .eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--fc-burgundy);
    margin-bottom: 12px;
}
.process-intro h2 { margin-bottom: 20px; }
.process-intro p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.process-steps::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    background: linear-gradient(180deg, var(--fc-burgundy) 0%, var(--fc-gold) 100%);
    opacity: 0.35;
}
.process-step {
    display: flex;
    gap: 22px;
    padding: 14px 0;
    align-items: flex-start;
}
.process-step-number {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fc-burgundy) 0%, var(--fc-burgundy-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(114, 47, 55, 0.28);
    border: 3px solid #fff;
}
.process-step-body { padding-top: 10px; }
.process-step-body h3 {
    font-size: 1.2rem;
    margin: 0 0 6px;
    color: var(--fc-ink);
}
.process-step-body p {
    font-size: 0.98rem;
    margin: 0;
    color: var(--fc-ash);
}
@media (max-width: 860px) {
    .process-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- By-the-numbers strip ---------- */
.by-numbers {
    background: linear-gradient(135deg, var(--fc-burgundy-darker) 0%, var(--fc-burgundy-dark) 50%, var(--fc-burgundy) 100%);
    color: #fff;
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.by-numbers::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(228, 197, 88, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 40%);
}
.by-numbers::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--fc-gold-dark) 0%, var(--fc-gold-light) 50%, var(--fc-gold-dark) 100%);
}
.by-numbers .container { position: relative; z-index: 2; }
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}
.number-item { padding: 0 20px; }
.number-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--fc-gold-light);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.number-label {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}
.number-item + .number-item {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}
@media (max-width: 700px) {
    .numbers-grid { grid-template-columns: 1fr; gap: 32px; }
    .number-item + .number-item {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        padding-top: 32px;
    }
}

/* ---------- Team teaser (home) ---------- */
.team-teaser .team-grid { max-width: 900px; margin: 0 auto; }
.team-teaser .team-card { padding: 22px; }
.team-teaser .team-photo { flex: 0 0 130px; width: 130px; height: 130px; }

/* ---------- FAQ teaser ---------- */
.faq-teaser { max-width: 840px; margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .main-nav .navbar-nav { margin-top: 14px; gap: 0; }
    .main-nav .nav-link { padding: 10px 14px !important; }
    .hero { padding: 52px 0 60px; }
    .hero-lead { max-width: 100%; margin-left: 0; text-align: left; }
    .hero-ctas { justify-content: flex-start; }
    .section { padding: 60px 0; }
    .welcome-card { padding: 32px 24px; }
    .page-header { padding: 56px 0 60px; }
}

@media (max-width: 600px) {
    .top-bar { font-size: 0.78rem; }
    .top-bar a, .top-bar span { margin-right: 10px; }
    .hero h1 { font-size: 2rem; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-fc { justify-content: center; }
    .form-card, .contact-info-card, .welcome-card { padding: 28px 22px; }
}

/* Fade-in on load */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.25s; }
.fade-in-delay-3 { animation-delay: 0.4s; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
