/* ── Hero ────────────────────────────────────────────────────────────────── */
#op-hero {
    background: var(--dark);
    padding: 80px 0 72px;
    border-bottom: 1px solid var(--border);
}
.op-hero-inner { max-width: 720px; }
.op-hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--white);
    margin: 0 0 20px;
    line-height: 1.1;
}
.op-hero-sub { font-size: 1rem; color: var(--white); line-height: 1.7; margin: 0 0 40px; max-width: 580px; }
.op-hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border);
    padding-top: 36px;
}
.op-stat { display: flex; flex-direction: column; gap: 6px; padding-right: 48px; margin-right: 48px; border-right: 1px solid var(--border); }
.op-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.op-stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--red);
    letter-spacing: -0.03em;
    line-height: 1;
}
.op-stat-label { font-size: 0.78rem; color: var(--white); line-height: 1.4; }

/* ── Offices ─────────────────────────────────────────────────────────────── */
#op-offices {
    background: var(--ultra-light-blue);
    padding: var(--section-gap) 0;
    border-bottom: 1px solid var(--gray-200);
}
.op-section-heading {
    font-family: var(--font-display);
    font-size: var(--fs-subheading);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--black);
    margin: 0 0 40px;
    line-height: 1.2;
}
.op-offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
/* Static bordered card — matches the homepage "Special Offers" .promo-card
   (gray-400 border, 2px radius, hard gray offset shadow, no hover). */
.op-office-card {
    background: var(--white);
    border: 1px solid var(--gray-400);
    border-radius: var(--radius);
    box-shadow: 4px 4px 0 0 var(--gray-400);
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.op-office-region {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
}
.op-office-country {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--black);
    margin: 0;
    letter-spacing: -0.01em;
}
.op-office-address {
    font-size: 0.82rem;
    color: var(--color-black);
    line-height: 1.65;
    margin: 0;
}
.op-office-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}
.op-office-contact a {
    font-size: 0.78rem;
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.2s;
    font-family: var(--font-display);
    font-weight: 600;
}
.op-office-contact a:hover { color: var(--red); }

/* ── Partners ────────────────────────────────────────────────────────────── */
#op-partners {
    background: var(--ultra-light-blue);
    padding: var(--section-gap) 0;
}
.op-partners-intro {
    font-size: 0.9rem;
    color: var(--color-black);
    line-height: 1.7;
    margin: 0 0 48px;
    max-width: 560px;
}
.op-regions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-bottom: 48px;
}
.op-region-group {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 32px 28px;
}
.op-region-title {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    margin: 0 0 20px;
}
.op-country-list { display: flex; flex-wrap: wrap; gap: 8px; }
.op-country-tag {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-black);
    border: 1px solid var(--gray-200);
    padding: 5px 12px;
    border-radius: var(--radius);
    transition: border-color 0.2s, color 0.2s;
}
.op-country-tag:hover { border-color: var(--red); color: var(--red); }
.op-partner-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 3px solid var(--red);
}
.op-partner-cta > p {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

/* ── Partner map (scoped; widget kept as-is, fitted to the content area) ──── */
#op-map {
    padding-top: var(--section-gap);
}
#op-map #map {
    width: 100%;
    height: 560px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--off-white);
}
/* Keep Google InfoWindow text on-brand and readable. */
#op-map #map .info_content h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin: 0 0 6px;
}
#op-map #map .info_content p {
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0 0 8px;
}
#op-map #map .info_content a {
    font-size: 0.82rem;
    color: var(--red);
}

/* ── Stats row below the map — reuses .op-hero-stats / .op-stat ──────────── */
/* Those classes were built for the dark hero; here they stretch full-width as
   equal columns, with the dividers retinted for the white section. */
#op-stats {
    padding: var(--section-gap) 0;
}
#op-stats .op-hero-stats {
    border-top: none;
    padding-top: 0;
}
/* Equal columns spanning the whole container; reset the hero-era offsets so the
   divider borders sit cleanly at the column edges. */
#op-stats .op-stat {
    flex: 1;
    align-items: center;
    text-align: center;
    margin-right: 0;
    padding: 0 var(--space-md);
}
#op-stats .op-hero-stats,
#op-stats .op-stat {
    border-color: var(--gray-200);
}
/* #op-stats sits on the white page (not the dark hero) — keep its labels black */
#op-stats .op-stat-label {
    color: var(--color-black);
}

@media (max-width: 1024px) {
    .op-offices-grid { grid-template-columns: repeat(2, 1fr); }
    .op-hero-stats { flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .op-offices-grid { grid-template-columns: 1fr; }
    .op-regions { grid-template-columns: 1fr; }
    .op-partner-cta { flex-direction: column; align-items: flex-start; }
    #op-map #map { height: 420px; }
    .op-hero-stats { flex-direction: column; gap: 24px; }
    .op-stat { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
    .op-stat:last-child { border-bottom: none; padding-bottom: 0; }
}
