/* ── Registrar Office page ── */
.ro-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 88px 0 72px;
}
.ro-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ro-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(20, 28, 44, .94) 0%, rgba(31, 31, 31, .82) 42%, rgba(32, 36, 52, .9) 100%);
}
.ro-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ro-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}
.ro-hero__copy { max-width: 640px; }
.ro-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rsbt-gold);
}
.ro-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--rsbt-gold);
}
.ro-eyebrow--on-dark { color: #f0dca0; }
.ro-eyebrow--on-dark::before { background: #f0dca0; }
.ro-hero__title {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.02em;
}
.ro-hero__subtitle {
    margin: 14px 0 0;
    font-size: 15px;
    color: #d6b565;
    font-weight: 600;
}
.ro-hero__tagline {
    margin: 18px 0 0;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.45;
    color: #f3f4f6;
    font-weight: 500;
    font-style: italic;
}
.ro-breadcrumb {
    margin-top: 28px;
    font-size: 13px;
    color: #9ca3af;
}
.ro-breadcrumb a { color: #d6b565; }
.ro-breadcrumb a:hover { text-decoration: underline; }
.ro-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.ro-btn-alt {
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
}
.ro-btn-alt:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}
.ro-hero__visual {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
}
.ro-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.ro-hero__visual:hover img { transform: scale(1.03); }

.ro-intro p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.85;
    color: #374151;
    text-align: center;
}
.ro-intro p:last-child { margin-bottom: 0; }

.ro-stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #242838 50%, #1f1f1f 100%);
    padding: 48px 0;
}
.ro-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.ro-stat-card {
    text-align: center;
    padding: 24px 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
    transition: transform .35s ease, border-color .35s ease;
}
.ro-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 181, 101, .4);
}
.ro-stat-card__value {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: #f0dca0;
    line-height: 1.1;
}
.ro-stat-card__label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #d1d5db;
    line-height: 1.45;
    letter-spacing: .02em;
}

.ro-message {
    background: linear-gradient(135deg, #fdf9f4 0%, #fff 100%);
    border: 1px solid #ece7dc;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
    position: relative;
}
.ro-message__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}
.ro-message__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #242838, #1a1a1a);
    color: #f0dca0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid #d6b565;
}
.ro-message__header h2 {
    margin: 4px 0 0;
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    color: #1f2937;
}
.ro-message__role {
    margin: 4px 0 0;
    color: #6b7280;
    font-size: 15px;
}
.ro-message__quote {
    position: absolute;
    top: 28px;
    right: 32px;
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(214, 181, 101, .2);
    pointer-events: none;
}
.ro-message__body p {
    margin: 0 0 16px;
    color: #374151;
    line-height: 1.85;
    font-size: 16px;
}
.ro-message__body p:first-child {
    font-weight: 600;
    color: #1f2937;
}
.ro-message__signature {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ece7dc;
}
.ro-message__signature p {
    margin: 0 0 4px;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.5;
}
.ro-message__signature p:nth-child(2) {
    font-weight: 700;
    color: #1f2937;
    font-size: 16px;
}

.ro-mission {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}
.ro-mission__content h2 {
    margin: 0 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3.5vw, 34px);
    color: #1f2937;
    line-height: 1.2;
}
.ro-mission__content p {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
    font-size: 16px;
}
.ro-mission__media {
    border-radius: 14px;
    overflow: hidden;
}
.ro-mission__media img {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.ro-sec-head { margin-bottom: 36px; }
.ro-sec-head--center { text-align: center; }
.ro-sec-head--center .ro-eyebrow { justify-content: center; }
.ro-sec-head h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    color: #1f2937;
    line-height: 1.2;
}
.ro-sec-head__lead {
    margin: 14px auto 0;
    max-width: 680px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.75;
}

.ro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
}
.ro-split__content h2 {
    margin: 0 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3.5vw, 34px);
    color: #1f2937;
    line-height: 1.2;
}
.ro-split__content p {
    margin: 0;
    color: #4b5563;
    line-height: 1.8;
    font-size: 16px;
}
.ro-split__media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .12);
}
.ro-split__media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.ro-split__media:hover img { transform: scale(1.04); }

.ro-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.ro-service-card {
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 14px;
    padding: 22px 18px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.ro-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
    border-color: #d6b565;
}
.ro-service-card__icon {
    display: inline-flex;
    font-size: 26px;
    margin-bottom: 10px;
}
.ro-service-card h3 {
    margin: 0 0 8px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #1f2937;
    line-height: 1.35;
}
.ro-service-card p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.65;
}

.ro-responsibilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.ro-responsibility-card {
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.ro-responsibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, .09);
    border-color: #d6b565;
}
.ro-responsibility-card__icon {
    display: inline-flex;
    font-size: 28px;
    margin-bottom: 12px;
}
.ro-responsibility-card h3 {
    margin: 0 0 8px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #1f2937;
    line-height: 1.35;
}
.ro-responsibility-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

.ro-structure {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.ro-structure-card {
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.ro-structure-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, .1);
    border-color: #d6b565;
}
.ro-structure-card__icon {
    display: inline-flex;
    font-size: 28px;
    margin-bottom: 12px;
}
.ro-structure-card h3 {
    margin: 0 0 10px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #1f2937;
    line-height: 1.35;
}
.ro-structure-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
}

.ro-pathways {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
    background: #fff;
    border: 1px solid #ece7dc;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}
.ro-pathways__content h2 {
    margin: 0 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3.5vw, 32px);
    color: #1f2937;
    line-height: 1.2;
}
.ro-pathways__content p {
    margin: 0 0 24px;
    color: #4b5563;
    line-height: 1.8;
    font-size: 16px;
}
.ro-pathways__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.ro-pathways__media {
    border-radius: 14px;
    overflow: hidden;
}
.ro-pathways__media img {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.ro-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #242838 45%, #1f1f1f 100%);
    color: #fff;
    padding: 72px 0;
    text-align: center;
}
.ro-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.ro-cta h2 {
    margin: 0 0 20px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.2;
}
.ro-contact-list {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #e5e7eb;
    font-size: 16px;
}
.ro-contact-list a {
    color: #f0dca0;
    text-decoration: none;
}
.ro-contact-list a:hover { text-decoration: underline; }
.ro-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.ro-cta .btn-main { background: #fff; color: #1f1f1f; }
.ro-cta .btn-main:hover { background: #fdf9f4; }
.ro-cta .btn-alt {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}
.ro-cta .btn-alt:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

@media (max-width: 1100px) {
    .ro-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ro-structure { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
    .ro-hero__inner,
    .ro-split,
    .ro-mission,
    .ro-pathways {
        grid-template-columns: 1fr;
    }
    .ro-hero__visual { max-width: 520px; }
    .ro-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .ro-responsibilities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
    .ro-hero { padding: 64px 0 52px; }
    .ro-stats__grid,
    .ro-structure,
    .ro-services,
    .ro-responsibilities { grid-template-columns: 1fr; }
    .ro-message { padding: 24px; }
    .ro-message__quote { font-size: 56px; top: 16px; right: 16px; }
    .ro-mission,
    .ro-pathways { padding: 24px; }
    .ro-hero__actions,
    .ro-pathways__actions,
    .ro-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }
}
