:root {
    --navy: #0a2864;
    --navy-deep: #061a44;
    --navy-light: #1a3a7a;
    --red: #c8102e;
    --red-deep: #a00c24;
    --green: #18a957;
    --green-deep: #128442;
    --white: #ffffff;
    --cream: #fafbfd;
    --gray-50: #f7f8fa;
    --gray-100: #eef0f4;
    --gray-200: #dde1ea;
    --gray-300: #c5c9d3;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #0d1226;

    --shadow-sm: 0 1px 2px rgba(10,40,100,0.05);
    --shadow-md: 0 4px 16px rgba(10,40,100,0.08);
    --shadow-lg: 0 12px 40px rgba(10,40,100,0.12);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* skip-link for keyboard / screen-reader accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 8px;
    z-index: 200;
    background: var(--navy);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92rem;
    transform: translateY(-200%);
    transition: transform 0.18s;
}
.skip-link:focus {
    transform: translateY(108px);
    color: var(--white);
}

/* Smooth-scroll offset so sticky header doesn't cover anchor targets */
:target {
    scroll-margin-top: 96px;
}

body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 0.4em;
    color: var(--navy);
}

a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.15s;
}
a:hover { color: var(--red-deep); }

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ============ HEADER ============ */
header.site-header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    z-index: 100;
    backdrop-filter: blur(8px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
}
.header-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}
.header-logo img {
    height: 52px;
    width: auto;
    display: block;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}
.header-nav a.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.15s;
    white-space: nowrap;
}
.header-nav a.nav-link:hover { color: var(--navy); }

.lang-switch {
    display: flex;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-left: 1px solid var(--gray-200);
    padding-left: 18px;
}
.lang-switch a {
    color: var(--gray-500);
    padding: 4px 6px;
}
.lang-switch a.current { color: var(--navy); }
.lang-switch a:hover { color: var(--red); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.18s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-deep);
    border-color: var(--red-deep);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-ghost {
    background: var(--white);
    color: var(--navy);
    border-color: var(--gray-200);
}
.btn-ghost:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-lg { padding: 16px 28px; font-size: 1rem; }

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.header-phone:hover {
    background: var(--gray-50);
    color: var(--red);
}
.header-phone svg {
    color: var(--red);
    flex-shrink: 0;
}

/* Open/closed status pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    transition: all 0.18s;
    white-space: nowrap;
}
.status-pill .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--gray-300);
}
.status-pill.is-open {
    background: rgba(24, 169, 87, 0.08);
    border-color: rgba(24, 169, 87, 0.25);
    color: var(--green-deep);
}
.status-pill.is-open .dot {
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(24, 169, 87, 0.55);
    animation: status-pulse-green 2s infinite;
}
.status-pill.is-closed {
    background: rgba(200, 16, 46, 0.06);
    border-color: rgba(200, 16, 46, 0.25);
    color: var(--red-deep);
}
.status-pill.is-closed .dot {
    background: var(--red);
}
.status-pill .email-link {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 2px;
}
.status-pill .email-link:hover { opacity: 0.78; }

@keyframes status-pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(24, 169, 87, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(24, 169, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 169, 87, 0); }
}

@media (max-width: 1180px) {
    .header-nav .nav-link { display: none; }
}
@media (max-width: 980px) {
    .lang-switch { display: none; }
    .status-pill .closed-email-text,
    .status-pill .open-hours-text { display: none; }
}
@media (max-width: 720px) {
    .header-inner { height: 60px; gap: 10px; }
    .header-logo img { height: 36px; }
    .header-phone-num { display: none; }
    .header-phone { padding: 8px; }
    .header-cta-text { display: none; }
    /* Hide the secondary "Free Consultation" header button on mobile —
       sticky bottom bar takes its job. */
    header.site-header .btn-primary { display: none; }
    .status-pill {
        padding: 5px 10px 5px 8px;
        font-size: 0.78rem;
    }
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--red);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 80px 0 100px;
}
.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
}
.hero h1 .accent { color: var(--red); }
.hero .lede {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0 0 32px;
    max-width: 540px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-trust {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.18);
    max-width: 540px;
}
.hero-trust strong {
    color: var(--white);
    font-weight: 700;
}
.hero-photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--gray-900);
}
.hero-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-photo-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(10,40,100,0.92);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--red);
}
.hero-photo-badge .name {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}
.hero-photo-badge .role {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 2px;
}
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 56px 0 72px;
    }
    .hero-photo-frame { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .hero-inner { padding: 40px 0 56px; gap: 32px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .hero-trust { font-size: 0.75rem; padding-top: 18px; }
}

/* ============ DETAIL SECTIONS ============ */
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
    color: var(--navy);
}
.section-intro {
    font-size: 1.08rem;
    color: var(--gray-600);
    max-width: 640px;
    margin: 0 0 48px;
}

section.detail {
    padding: 88px 0;
}
section.detail.alt { background: var(--gray-50); }
.detail-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}
.detail-side h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.1rem);
    margin-bottom: 12px;
}
.detail-side .scope-pill {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.detail-side .summary {
    color: var(--gray-600);
    font-size: 1rem;
}
.detail-side .cta-row {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--red);
}
.detail-side .cta-row .label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    font-weight: 700;
    margin-top: 8px;
}
.detail-side .cta-row .label:first-child { margin-top: 0; }
.detail-side .cta-row .value {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
}
.detail-body h3 {
    font-size: 1.25rem;
    margin: 0 0 8px;
    color: var(--navy);
}
.detail-body h3:not(:first-child) { margin-top: 36px; }
.detail-body p {
    color: var(--gray-700);
    font-size: 1rem;
    margin: 0 0 12px;
}
.detail-body ul {
    padding-left: 22px;
    margin: 12px 0;
}
.detail-body li {
    color: var(--gray-700);
    margin-bottom: 8px;
}
.detail-body li strong { color: var(--navy); font-weight: 700; }
.detail-body .highlight-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--red);
    padding: 18px 22px;
    margin-top: 24px;
    border-radius: var(--radius-sm);
    color: var(--gray-800);
    font-size: 0.96rem;
}
@media (max-width: 900px) {
    .detail-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    section.detail { padding: 56px 0; }
    .detail-side h2 { font-size: 1.6rem; }
    .detail-body h3 { font-size: 1.1rem; }
    .detail-body p, .detail-body li { font-size: 0.96rem; }
}

/* ============ TRUST BAND ============ */
.trust-band {
    background: var(--navy-deep);
    color: var(--white);
    padding: 64px 0;
    border-top: 6px solid var(--red);
}
.trust-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
}
.trust-band h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 2.4vw, 2rem);
}
.trust-band .lede {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
}
.admissions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 22px;
}
.admission {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--red);
    border-radius: 4px;
}
.admission .seal {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.78rem;
    flex-shrink: 0;
}
@media (max-width: 800px) {
    .trust-inner { grid-template-columns: 1fr; gap: 28px; }
    .admissions-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .trust-band { padding: 48px 0; }
    .admission [style*="grid-column"] { grid-column: 1 !important; }
}

/* ============ CONTACT ============ */
.contact-section {
    padding: 88px 0;
    background: var(--white);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.contact-cta h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
}
.contact-cta p {
    color: var(--gray-600);
    font-size: 1.05rem;
}
.contact-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
    align-items: start;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .label {
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    color: var(--gray-500);
    font-weight: 700;
    padding-top: 4px;
}
.contact-row .value {
    color: var(--gray-800);
    font-size: 1.02rem;
    font-weight: 500;
}
.contact-row .value a {
    color: var(--navy);
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s;
}
.contact-row .value a:hover { border-bottom-color: var(--red); }
.contact-row .value .small { font-size: 0.88rem; color: var(--gray-600); font-weight: 400; }
@media (max-width: 800px) {
    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .contact-row { grid-template-columns: 1fr; gap: 4px; }
    .contact-row .label { padding-top: 0; }
}
@media (max-width: 600px) {
    .contact-section { padding: 56px 0; }
    .contact-card { padding: 24px; }
    .contact-cta .btn { width: 100%; }
}

/* ============ FOOTER ============ */
footer.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 32px;
    font-size: 0.9rem;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.footer-logo img { height: 36px; width: auto; }
.footer-lang {
    display: flex;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.footer-lang a {
    color: rgba(255,255,255,0.55);
    padding: 4px 8px;
    border: 1px solid transparent;
    border-radius: 4px;
}
.footer-lang a.current {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}
.footer-lang a:hover { color: var(--white); }

footer .copyright {
    color: rgba(255,255,255,0.55);
    font-size: 0.82rem;
}
footer .disclaimer {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    font-style: italic;
    margin-top: 8px;
    max-width: 720px;
}

/* ============ CHOOSER (homepage) ============ */
.chooser-page {
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-light) 100%);
    color: var(--white);
}
.chooser-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 32px 72px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.chooser-question {
    text-align: center;
    margin-bottom: 56px;
}
.chooser-question .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}
.chooser-question h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    line-height: 1.05;
}
.chooser-question .multilang {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-top: 14px;
    line-height: 1.7;
}
.chooser-question .multilang span {
    display: inline-block;
    margin: 0 8px;
}
.chooser-question .multilang em {
    font-style: normal;
    color: var(--white);
    font-weight: 600;
}
.chooser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.chooser-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    transition: all 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.chooser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.chooser-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.32);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.chooser-card:hover::before { transform: scaleX(1); }
.chooser-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--white);
    color: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}
.chooser-card .card-icon svg {
    width: 34px;
    height: 34px;
}
.chooser-card h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}
.chooser-card .scope {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 18px;
}
.chooser-card .desc {
    color: rgba(255,255,255,0.78);
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0 0 28px;
    flex-grow: 1;
}
.chooser-card .card-langs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 24px;
}
.chooser-card .card-langs span {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 999px;
}
.chooser-card .card-cta {
    color: var(--white);
    font-weight: 700;
    font-size: 0.96rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 0;
}
.chooser-card .card-cta::after {
    content: '→';
    transition: transform 0.18s;
}
.chooser-card:hover .card-cta::after { transform: translateX(4px); }
.chooser-card .multilabel {
    margin-bottom: 18px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 0.02em;
}
.chooser-card .multilabel em {
    font-style: normal;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

@media (max-width: 800px) {
    .chooser-grid { grid-template-columns: 1fr; }
    .chooser-card { padding: 36px 28px; }
}

/* Header on chooser uses transparent variant */
header.site-header.on-dark {
    background: transparent;
    border-bottom: none;
    backdrop-filter: none;
}
header.site-header.on-dark .header-logo img {
    /* white logo on dark header */
}
header.site-header.on-dark .header-phone {
    color: var(--white);
}
header.site-header.on-dark .header-phone:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

/* ============ TEAM FEATURE (Philippines / Alyza) ============ */
.team-feature {
    padding: 88px 0;
    background: var(--white);
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
}
.team-photo-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4 / 5;
    background: var(--navy-deep);
}
.team-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-photo-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(10, 40, 100, 0.92);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--red);
}
.team-photo-badge .name {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
}
.team-photo-badge .role {
    font-size: 0.82rem;
    opacity: 0.82;
    margin-top: 2px;
}
.team-text h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.1rem);
    margin-top: 14px;
    margin-bottom: 14px;
}
.team-text p {
    color: var(--gray-700);
    font-size: 1rem;
    margin: 0 0 12px;
}
.team-text p em {
    font-style: italic;
    color: var(--navy);
}
@media (max-width: 800px) {
    .team-grid { grid-template-columns: 1fr; gap: 32px; }
    .team-photo-frame { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 600px) {
    .team-feature { padding: 56px 0; }
}

/* ============ MOBILE STICKY CTA BAR ============ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(10, 40, 100, 0.08);
    gap: 8px;
}
.mobile-cta-bar .btn {
    flex: 1;
    padding: 14px 8px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 8px;
}
.mobile-cta-bar .btn-call {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--navy);
}
.mobile-cta-bar .btn-call:hover {
    background: var(--navy);
    color: var(--white);
}
.mobile-cta-bar .btn-schedule {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}
.mobile-cta-bar .btn-schedule:hover {
    background: var(--red-deep);
    border-color: var(--red-deep);
    color: var(--white);
}
.mobile-cta-bar .btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .mobile-cta-bar { display: flex; }
    /* Add space at bottom of body so footer content isn't hidden behind sticky bar */
    body { padding-bottom: 76px; }
    footer.site-footer { padding-bottom: 56px; }
}

/* ============ VISA PAGE — LIBERTY HERO ============ */
.city-hero {
    background: var(--navy-deep);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: center;
}
.city-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--red);
    z-index: 3;
}
.city-hero-inner {
    padding: 96px 0 110px;
    text-align: center;
    position: relative;
    width: 100%;
    z-index: 2;
}
.city-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/liberty.jpg');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}
.city-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 26, 68, 0.88) 0%, rgba(10, 40, 100, 0.72) 50%, rgba(200, 16, 46, 0.45) 100%),
        linear-gradient(180deg, rgba(6, 26, 68, 0.4) 0%, rgba(6, 26, 68, 0.85) 100%);
}
.city-hero-content {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 32px;
}
@media (max-width: 600px) {
    .city-hero { min-height: 0; }
    .city-hero-inner { padding: 56px 0 72px; }
    .city-hero-content { padding: 0 20px; }
    .city-hero-langs { gap: 6px; margin: 24px 0 28px; }
    .city-hero-langs .chip { font-size: 0.8rem; padding: 6px 12px; }
    .city-hero-ctas { flex-direction: column; }
    .city-hero-ctas .btn { width: 100%; }
}
@media (max-width: 600px) {
    .business-image-band { height: 280px; }
    .business-image-band .quote { padding: 0 20px; }
}
.city-hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    margin: 0 0 18px;
    letter-spacing: -0.03em;
}
.city-hero h1 .accent { color: var(--red); }
.city-hero .lede {
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    max-width: 660px;
    margin: 0 auto 32px;
}
.city-hero-langs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 32px 0 36px;
}
.city-hero-langs .chip {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.city-hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ CITY-CARDS (Prague + Warsaw) ============ */
.cities {
    background: var(--navy);
    padding: 0;
    position: relative;
}
.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.city-card {
    height: 320px;
    position: relative;
    display: flex;
    align-items: end;
    padding: 32px;
    color: var(--white);
    overflow: hidden;
    background: var(--navy-deep);
    border-right: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
}
.city-card:last-child { border-right: 0; }
.city-card .city-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.city-card.prague .city-bg {
    background-image: url('/assets/prague.jpg');
    background-position: center 40%;
}
.city-card.warsaw .city-bg {
    background-image: url('/assets/warsaw.jpg');
    background-position: center 25%;
}
.city-card:hover .city-bg { transform: scale(1.04); }
.city-card .city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 26, 68, 0.15) 0%, rgba(6, 26, 68, 0.85) 100%);
}
.city-card .city-text {
    position: relative;
    z-index: 1;
}
.city-card .city-flag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    margin-bottom: 12px;
    border-radius: 3px;
}
.city-card .city-name {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
}
.city-card .city-sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    margin-top: 6px;
    line-height: 1.5;
    max-width: 380px;
}
@media (max-width: 700px) {
    .cities-grid { grid-template-columns: 1fr; }
    .city-card { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); height: 280px; }
}

/* ============ BUSINESS SECTION IMAGE ============ */
.business-image-band {
    position: relative;
    height: 360px;
    background: var(--navy-deep);
    overflow: hidden;
}
.business-image-band .bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/business.jpg');
    background-size: cover;
    background-position: center 35%;
}
.business-image-band .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 26, 68, 0.85) 0%, rgba(10, 40, 100, 0.45) 60%, rgba(10, 40, 100, 0.2) 100%);
}
.business-image-band .quote {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
    padding: 0 32px;
    color: var(--white);
}
.business-image-band .quote .label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}
.business-image-band .quote h3 {
    color: var(--white);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}
.business-image-band .quote p {
    color: rgba(255,255,255,0.88);
    font-size: 1.02rem;
    line-height: 1.5;
    margin: 0;
}
