:root {
    --sirs-white: #fff;
    --sirs-orange: #f64c1e;
    --sirs-orange-dark: #dc3b11;
    --sirs-brown: #472a2a;
    --sirs-brown-dark: #2f1919;
    --sirs-cream: #fff7f2;
    --sirs-orange-soft: #fff0eb;
    --sirs-text: #282323;
    --sirs-muted: #746969;
    --sirs-border: #eadfdb;
    --shadow: 0 22px 60px rgba(47, 25, 25, 0.11);
    --radius: 4px;
}

[id] {
    scroll-margin-top: 82px;
}

.lead-form.is-success .btn-block {
    display: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--sirs-white);
    color: var(--sirs-text);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

h2 {
    font-family: "Roboto Slab", serif;
}

body.modal-open,
body.menu-open {
    overflow: hidden;
}

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

button,
a {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    left: 18px;
    top: -60px;
    background: var(--sirs-orange);
    color: #fff;
    padding: 11px 16px;
}

.skip-link:focus {
    top: 18px;
}

.eyebrow {
    margin: 0 0 19px;
    color: var(--sirs-orange);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.19em;
    line-height: 1.4;
}

.eyebrow-light {
    color: #ffc0ac;
}

.section {
    padding: 126px 0;
}

.section h2 {
    color: var(--sirs-brown);
    font-family: "Roboto Slab", serif;
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.08;
    margin: 0 0 25px;
}

.btn {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 30px;
    display: inline-flex;
    gap: 18px;
    justify-content: center;
    min-height: 52px;
    padding: 13px 21px;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
}

.btn span {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.35s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover span {
    transform: translate(3px, -3px);
}

.btn-orange {
    background: var(--sirs-orange);
    color: #fff;
}

.btn-orange:hover {
    background: var(--sirs-orange-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border-color: var(--sirs-brown);
    color: var(--sirs-brown);
}

.btn-outline:hover {
    background: var(--sirs-brown);
    color: #fff;
}

.btn-small {
    font-size: 13px;
    min-height: 42px;
    padding: 8px 15px;
}

.btn-block {
    width: 100%;
}

.text-link {
    align-items: center;
    color: var(--sirs-brown);
    display: inline-flex;
    font-size: 16px;
    font-weight: 600;
    gap: 12px;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.text-link span {
    color: var(--sirs-orange);
    font-size: 19px;
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: var(--sirs-orange);
}

.text-link:hover span {
    transform: translateX(4px);
}

.text-link-light {
    color: #fff;
}

.text-link-light:hover {
    color: #ffc0ac;
}


/* Header */

.site-header {
    background: #fff;
    color: var(--sirs-brown);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
    z-index: 50;
}

.site-header.is-scrolled {
    background: #fff;
    box-shadow: 0 5px 28px rgba(47, 25, 25, 0.07);
    color: var(--sirs-brown);
    position: fixed;
}

.nav-wrap {
    align-items: center;
    display: flex;
    height: 110px;
    justify-content: space-between;
    margin-inline: auto;
    max-width: 1600px;
    padding-inline: 0;
    position: relative;
    width: calc(100% - 160px);
}

.brand {
    display: flex;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.brand-logo {
    height: 88px;
    object-fit: contain;
    width: 320px;
}

.brand-logo-dark {
    display: none;
}

.is-scrolled .brand-logo-light {
    display: none;
}

.is-scrolled .brand-logo-dark {
    display: block;
}

.desktop-nav {
    align-items: center;
    display: flex;
    gap: 29px;
    margin-left: 0;
    margin-right: auto;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 700;
    position: relative;
}

.desktop-nav a:after {
    background: var(--sirs-orange);
    bottom: -8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    width: 100%;
    transition: transform 0.3s ease;
}

.desktop-nav a:hover:after,
.desktop-nav a:focus-visible:after {
    transform: scaleX(1);
}

@media (min-width: 821px) and (max-width: 1360px) {
    .desktop-nav,
    .nav-phone {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .mobile-nav {
        display: block;
        min-height: calc(100vh - 110px);
        top: 110px;
    }
}

.nav-actions {
    align-items: center;
    display: flex;
    gap: 22px;
    margin-left: auto;
}

.nav-phone {
    align-items: center;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
}

.nav-phone i {
    color: var(--sirs-orange);
    font-size: 15px;
}

.nav-actions .btn-small {
    font-size: 14px;
    min-height: 46px;
    border-radius: 20px !important;
    padding-inline: 18px;
}

.menu-toggle {
    background: none;
    border: 0;
    display: none;
    height: 44px;
    padding: 8px;
    width: 44px;
}

.menu-toggle span {
    background: currentColor;
    display: block;
    height: 2px;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 25px;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    background: #fff;
    color: var(--sirs-brown);
    display: none;
    left: 0;
    min-height: calc(100vh - 88px);
    padding: 38px 32px 32px;
    position: fixed;
    right: 0;
    top: 88px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    z-index: 49;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav nav {
    display: grid;
    gap: 21px;
}

.mobile-nav nav a {
    font-family: "Roboto Slab", serif;
    font-size: 32px;
    line-height: 1.2;
}

.mobile-nav-apply {
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}

.mobile-nav-contact {
    border-top: 1px solid var(--sirs-border);
    display: grid;
    gap: 4px;
    margin-top: 52px;
    padding-top: 20px;
}

.mobile-nav-contact span {
    color: var(--sirs-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mobile-nav-contact a {
    font-size: 14px;
    font-weight: 700;
}


/* Hero */

.hero {
    background: #fff;
    color: #fff;
    min-height: 940px;
    overflow: hidden;
    position: relative;
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-shade {
    inset: 0;
    position: absolute;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
    width: 100%;
}

.hero-slide.is-active img {
    transform: scale(1);
}

.hero-shade {
    background: transparent;
    z-index: 2;
}

.hero-section-thumb {
    bottom: 60px;
    left: 0;
    position: absolute;
    top: auto;
    transform: none;
    width: 950px;
    z-index: 3;
}

.hero-inner {
    align-items: center;
    display: flex;
    gap: 70px;
    justify-content: flex-end;
    max-width: 1600px;
    min-height: 100svh;
    padding-bottom: 75px;
    padding-top: 120px;
    position: relative;
    width: calc(100% - 160px);
    z-index: 3;
}

.hero-copy {
    display: block;
    margin-left: auto;
    max-width: 760px;
    text-align: right;
}

.hero h2 {
    color: var(--sirs-brown);
    font-family: "Roboto Slab", serif;
    font-size: 76px;
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.25;
    margin: 0 0 24px;
}

.hero h2 em {
    color: var(--sirs-orange);
    font-style: normal;
}

.hero .eyebrow-light {
    color: var(--sirs-orange);
}

.hero-description {
    color: var(--sirs-muted);
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    max-width: 700px;
}

.hero-buttons {
    align-items: center;
    display: flex;
    gap: 26px;
    justify-content: flex-end;
    margin-top: 34px;
}

.hero-trust {
    align-items: center;
    color: var(--sirs-muted);
    display: flex;
    font-size: 11px;
    gap: 11px;
    justify-content: flex-end;
    margin: 40px 0 0;
}

.hero-trust span {
    background: var(--sirs-orange);
    border-radius: 50%;
    display: inline-block;
    height: 7px;
    width: 7px;
}

.hero-trust i {
    background: var(--sirs-border);
    display: inline-block;
    height: 14px;
    margin: 0 5px;
    width: 1px;
}

.hero .text-link-light {
    color: var(--sirs-brown);
}

.hero .text-link-light:hover {
    color: var(--sirs-orange);
}

.hero-form-card {
    background: #fff;
    border-top: 4px solid var(--sirs-orange);
    box-shadow: 0 23px 60px rgba(25, 11, 11, 0.25);
    color: var(--sirs-text);
    display: none;
    flex: 0 0 405px;
    padding: 30px 28px 27px;
}

.form-card-head {
    display: flex;
    gap: 15px;
    margin-bottom: 23px;
}

.form-card-mark {
    background: var(--sirs-orange);
    display: block;
    flex: 0 0 4px;
    height: 80px;
    margin-top: 3px;
}

.form-card-head .eyebrow {
    font-size: 10px;
    margin-bottom: 7px;
}

.form-card-head h2 {
    color: var(--sirs-brown);
    font-family: "Roboto Slab", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 8px;
}

.form-card-head p:last-child {
    color: var(--sirs-muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.form-grid {
    display: grid;
    gap: 15px 13px;
    grid-template-columns: 1fr 1fr;
}

.field {
    min-width: 0;
}

.field-full {
    grid-column: 1/-1;
}

.field label {
    color: var(--sirs-brown);
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.field label span {
    color: var(--sirs-orange);
}

.field input,
.field select,
.field textarea {
    background: #fff;
    border: 1px solid var(--sirs-border);
    border-radius: 2px;
    color: var(--sirs-text);
    font-family: inherit;
    font-size: 13px;
    min-height: 41px;
    outline: 0;
    padding: 9px 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.field select {
    appearance: auto;
}

.field textarea {
    min-height: 96px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--sirs-orange);
    box-shadow: 0 0 0 3px rgba(246, 76, 30, 0.1);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: #b72d18;
}

.field-error {
    color: #b72d18;
    display: block;
    font-size: 10px;
    line-height: 1.25;
    min-height: 0;
    padding-top: 4px;
}

.consent {
    align-items: flex-start;
    color: var(--sirs-muted);
    display: flex;
    font-size: 10px;
    gap: 8px;
    line-height: 1.4;
    margin: 14px 0;
}

.consent input {
    accent-color: var(--sirs-orange);
    flex: 0 0 auto;
    margin-top: 2px;
}

.form-status {
    font-size: 12px;
    line-height: 1.4;
    margin: 11px 0 0;
    min-height: 18px;
}

.form-status.success {
    color: #237443;
}

.form-status.error {
    color: #b72d18;
}

.lead-form.is-success .form-grid,
.lead-form.is-success .consent {
    display: none;
}

.hero-controls {
    align-items: center;
    bottom: 29px;
    display: none;
    gap: 16px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 4;
}

.slider-arrow {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    font-size: 17px;
    height: 40px;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease;
    width: 40px;
}

.slider-arrow:hover {
    background: var(--sirs-orange);
    border-color: var(--sirs-orange);
}

.slider-progress {
    background: rgba(255, 255, 255, 0.35);
    height: 1px;
    overflow: hidden;
    width: 150px;
}

.slider-progress span {
    background: var(--sirs-orange);
    display: block;
    height: 100%;
    transform-origin: left;
    transform: scaleX(0);
    width: 100%;
}

.slider-progress span.is-running {
    animation: progress 6s linear forwards;
}

.slide-numbers {
    align-items: center;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    font-size: 11px;
    gap: 7px;
    margin-left: auto;
}

.slide-numbers .current {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.slide-numbers .slash {
    color: var(--sirs-orange);
    font-size: 16px;
}

.hero-controls .slider-prev {
    order: 0;
}

.hero-controls .slider-progress {
    order: 1;
}

.hero-controls .slider-next {
    order: 2;
}

.hero-controls .slide-numbers {
    order: 3;
}

@keyframes progress {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}


/* Trust / intro */

.trust-strip {
    background: #fff;
    border-bottom: 1px solid var(--sirs-border);
    border-top: 1px solid var(--sirs-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    align-items: center;
    border-right: 1px solid var(--sirs-border);
    display: flex;
    gap: 12px;
    min-height: 104px;
    padding: 17px 24px;
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border: 0;
}

.trust-item img {
    color: var(--sirs-orange);
    height: 30px;
    width: 30px;
}

.trust-item span {
    display: grid;
    gap: 3px;
}

.trust-item b {
    color: var(--sirs-brown);
    font-size: 12px;
}

.trust-item small {
    color: var(--sirs-muted);
    font-size: 10px;
}

.split-intro {
    align-items: end;
    display: grid;
    gap: 60px;
    grid-template-columns: 1.15fr 0.85fr;
    margin-bottom: 54px;
}

.split-intro h2 {
    max-width: 680px;
}

.split-intro>p {
    color: var(--sirs-muted);
    font-size: 16px;
    margin: 0 0 5px;
    max-width: 420px;
}

.modal-close {
    background: none;
    border: 0;
    color: var(--sirs-brown);
    font-size: 33px;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 14px;
    top: 7px;
    z-index: 2;
}

.whatsapp-float {
    align-items: center;
    background: #168c52;
    border-radius: 30px;
    bottom: 24px;
    color: #fff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 500;
    gap: 9px;
    padding: 12px 16px;
    position: fixed;
    right: 24px;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 35;
}

.whatsapp-float i {
    font-size: 19px;
}

.whatsapp-float:hover {
    background: #10703f;
    color: #fff;
    transform: translateY(-3px);
}


/* Modal */

.sticky-enquiry {
    align-items: center;
    background: var(--sirs-orange);
    border: 0;
    border-radius: 9px 0 0 9px;
    box-shadow: 0 12px 28px rgba(79, 35, 24, 0.24);
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 9px;
    left: auto;
    padding: 15px 10px 17px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    z-index: 60;
}

.sticky-enquiry i {
    font-size: 16px;
}

.sticky-enquiry span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1;
    text-orientation: mixed;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
}

.sticky-enquiry:hover {
    background: var(--sirs-orange-dark);
    box-shadow: 0 14px 32px rgba(79, 35, 24, 0.32);
    transform: translate(-3px, -50%);
}

.modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    background: rgba(47, 25, 25, 0.76);
    inset: 0;
    position: absolute;
}

.modal-dialog {
    background: #fff;
    border-top: 4px solid var(--sirs-orange);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 40px);
    max-width: 580px;
    overflow: auto;
    padding: 36px 36px 32px;
    position: relative;
    width: calc(100% - 32px);
    z-index: 1;
}

.modal-close {
    color: var(--sirs-muted);
    font-size: 28px;
    right: 16px;
    top: 10px;
}

.modal-dialog h2 {
    color: var(--sirs-brown);
    font-family: "Roboto Slab", serif;
    font-size: 39px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 10px;
}

.modal-intro {
    color: var(--sirs-muted);
    font-size: 13px;
    margin: 0 0 24px;
}

.modal-form .field input,
.modal-form .field select,
.modal-form .field textarea {
    min-height: 44px;
}

.modal-form .field textarea {
    min-height: 100px;
}


/* Reveal / focus / responsive */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-delay {
    transition-delay: 0.13s;
}

:focus-visible {
    outline: 3px solid rgba(246, 76, 30, 0.42);
    outline-offset: 3px;
}

@media (min-width: 1500px) {
    .container:not(.nav-wrap):not(.hero-inner) {
        width: min(1320px, calc(100% - 96px));
    }
}

@media (max-width: 1100px) {
    .container:not(.nav-wrap):not(.hero-inner) {
        width: min(100% - 48px, 960px);
    }
    .nav-wrap {
        width: calc(100% - 48px);
    }
    .desktop-nav {
        gap: 16px;
        margin-right: 20px;
    }
    .desktop-nav a {
        font-size: 11px;
    }
    .nav-phone span {
        display: none;
    }
    .hero-inner {
        gap: 38px;
        grid-template-columns: minmax(0, 1fr) 370px;
    }
    .hero h2 {
        font-size: clamp(48px, 6vw, 68px);
    }
    .boarding-grid {
        gap: 48px;
    }
}

@media (max-width: 820px) {
    [id] {
        scroll-margin-top: 92px;
    }
    .section {
        padding: 90px 0;
    }
    .nav-wrap {
        height: 76px;
        padding-inline: 24px;
        width: 100%;
    }
    .nav-actions {
        margin: 0;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
    }
    .brand {
        flex-basis: 150px;
        left: auto;
        position: static;
        transform: none;
    }
    .brand-logo {
        height: auto;
        width: 150px;
    }
    .desktop-nav,
    .nav-phone {
        display: none;
    }
    .nav-actions>.btn-small {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .mobile-nav {
        display: block;
        min-height: calc(100vh - 76px);
        top: 76px;
    }
    .hero {
        min-height: 800px;
    }
    .hero-inner {
        align-items: flex-start;
        display: flex;
        justify-content: flex-start;
        min-height: 800px;
        padding: 132px 28px 350px;
        width: 100%;
    }
    .hero-copy {
        margin: 0;
        max-width: 620px;
        min-width: 0;
        text-align: left;
        width: 100%;
    }
    .hero-section-thumb {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: min(90vw, 430px);
    }
    .hero h2 {
        font-size: clamp(42px, 8vw, 58px);
        line-height: 1.08;
        max-width: 100%;
        overflow-wrap: normal;
    }
    .hero-description {
        font-size: 15px;
        max-width: 510px;
    }
    .hero-buttons {
        justify-content: flex-start;
    }
    .hero-form-card {
        display: none;
    }
    .hero-controls {
        display: none;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-item {
        border-bottom: 1px solid var(--sirs-border);
        min-height: 90px;
    }
    .trust-item:nth-child(2) {
        border-right: 0;
    }
    .trust-item:nth-child(3) {
        border-bottom: 0;
        padding-left: 0;
    }
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }
    .boarding-visual figure {
        height: 500px;
    }
    .boarding-copy {
        padding-top: 35px;
    }
    .split-intro {
        align-items: start;
        gap: 20px;
        grid-template-columns: 1fr;
    }
    .split-intro>p {
        max-width: 580px;
    }
}

@media (max-width: 560px) {
    .container:not(.nav-wrap):not(.hero-inner) {
        width: calc(100% - 36px);
    }
    .section {
        padding: 75px 0;
    }
    .section h2 {
        font-size: 38px;
    }
    .hero {
        min-height: 720px;
    }
    .hero-inner {
        min-height: 720px;
        padding: 112px 22px 260px;
    }
    .hero-section-thumb {
        bottom: auto;
        top: clamp(425px, calc(590px - 42vw), 455px);
        width: min(94vw, 430px);
    }
    .hero h2 {
        font-size: 38px;
        margin-bottom: 18px;
    }
    .hero .eyebrow-light {
        font-size: 10px;
        letter-spacing: 0.16em;
    }
    .hero-description {
        font-size: 14px;
        line-height: 1.65;
    }
    .hero-buttons {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-top: 27px;
    }
    .hero-trust {
        font-size: 10px;
        line-height: 1.5;
        margin-top: 28px;
    }
    .hero-form-card {
        margin-top: 37px;
        flex-basis: 100%;
        padding: 24px 20px 22px;
    }
    .form-grid {
        gap: 12px;
        grid-template-columns: 1fr;
    }
    .field-full {
        grid-column: auto;
    }
    .sticky-enquiry {
        padding: 12px 8px 14px;
        top: 54%;
    }
    .sticky-enquiry span {
        font-size: 10px;
    }
    .hero-controls {
        bottom: 19px;
        gap: 10px;
    }
    .slider-progress {
        width: 80px;
    }
    .slide-numbers {
        display: none;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3) {
        border-bottom: 1px solid var(--sirs-border);
        border-right: 0;
        min-height: 75px;
        padding: 15px 0;
    }
    .trust-item:last-child {
        border-bottom: 0;
    }
    .trust-item img {
        height: 26px;
        width: 26px;
    }
    .boarding-visual figure {
        height: 370px;
    }
    .experience-list {
        margin-top: 28px;
    }
    .experience-item {
        gap: 11px;
        grid-template-columns: 29px 1fr 18px;
        padding: 18px 0;
    }
    .experience-item strong {
        font-size: 20px;
    }
    .experience-item small {
        font-size: 11px;
    }
    .whatsapp-float {
        bottom: 76px;
        font-size: 0;
        height: 47px;
        justify-content: center;
        padding: 0;
        right: 16px;
        width: 47px;
    }
    .whatsapp-float i {
        font-size: 23px;
    }
    .modal-dialog {
        padding: 31px 20px 24px;
    }
    .modal-dialog h2 {
        font-size: 33px;
    }
    .modal-intro {
        font-size: 12px;
    }
}

@media (max-width: 379px) {
    .container:not(.nav-wrap):not(.hero-inner) {
        width: calc(100% - 28px);
    }
    .nav-wrap {
        height: 70px;
        padding-inline: 16px;
    }
    .brand-logo {
        width: 135px;
    }
    .btn-small {
        font-size: 11px;
        padding-inline: 11px;
    }
    .hero-inner {
        min-height: 720px;
        padding: 104px 18px 250px;
    }
    .hero h2 {
        font-size: 37px;
    }
    .hero-description {
        font-size: 14px;
    }
    .hero-form-card {
        padding-inline: 16px;
    }
    .section h2 {
        font-size: 34px;
    }
}

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


/* =========================================================
   ABOUT US SECTION
   FULL WIDTH + NO FONT FAMILY
   ========================================================= */

.about-school {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 70px 0 55px;
    background: #fff;
    color: #3f2825;
    overflow: hidden;
    box-sizing: border-box;
}

.about-school *,
.about-school *::before,
.about-school *::after {
    box-sizing: border-box;
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.about-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 4.2%;
    display: grid;
    grid-template-columns: 28% 22% 50%;
    gap: 0;
    align-items: start;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.about-left {
    width: 100%;
    padding-right: 35px;
    position: relative;
    z-index: 5;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: #f04b24;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.about-label i {
    display: block;
    width: 50px;
    height: 1px;
    background: #f04b24;
}

.about-left h2 {
    margin: 0;
    color: #492925;
    font-size: 48px;
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: -1.8px;
}

.about-left h2 span {
    display: block;
    margin-top: 4px;
    color: #f04b24;
}

.about-intro {
    width: 100%;
    max-width: 460px;
    margin: 25px 0 22px;
    color: #60636a;
    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   LEFT FEATURES
   ========================================================= */

.about-feature {
    width: 100%;
    max-width: 465px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 86px;
    padding: 12px 0;
    border-bottom: 1px solid #ebe5e2;
}

.feature-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff2ec;
    border: 1px solid #ffd8ca;
    color: #f04b24;
    font-size: 22px;
}

.feature-content {
    min-width: 0;
    flex: 1;
}

.feature-content h4 {
    margin: 0 0 7px;
    color: #3f302d;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.feature-content p {
    margin: 0;
    color: #62656a;
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   BUTTON
   ========================================================= */

.about-btn {
    width: 223px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    padding: 0 17px 0 25px;
    border-radius: 30px;
    background: #f04b24;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-btn i {
    font-size: 15px;
    transition: transform 0.3s ease;
}

.about-btn:hover {
    background: #db3d1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 75, 36, 0.18);
}

.about-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   CENTER IMAGE
   ========================================================= */

.about-image-wrap {
    position: relative;
    width: 100%;
    height: 575px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
}


/* Background organic shape */

.about-image-bg {
    position: absolute;
    width: 92%;
    height: 88%;
    top: 5%;
    left: 4%;
    background: #fff0df;
    border-radius: 52% 48% 9% 9% / 43% 43% 8% 8%;
    transform: rotate(-2deg);
}


/* Student image */

.about-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 49% 49% 6% 6% / 41% 41% 6% 6%;
}

.about-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}


/* Orange curved bottom */

.about-image::after {
    content: "";
    position: absolute;
    z-index: 4;
    width: 120%;
    height: 16%;
    left: -10%;
    bottom: -5%;
    background: #f04b24;
    border-radius: 50%;
    transform: rotate(-7deg);
}


/* =========================================================
   RIGHT SIDE
   ========================================================= */

.about-right {
    width: 100%;
    padding-left: 25px;
}


/* Heading */

.right-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.right-heading h3 {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    color: #3e2522;
    font-size: 19px;
    line-height: 1.3;
    font-weight: 700;
}

.heading-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
}

.heading-decoration span {
    width: 47px;
    height: 1px;
    display: block;
    background: #f5a28e;
}

.heading-decoration i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f04b24;
    font-size: 17px;
}


/* =========================================================
   CARDS
   ========================================================= */

.about-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
}

.about-card {
    width: 100%;
    min-width: 0;
    min-height: 278px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 27px 18px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #eee9e6;
    border-radius: 13px;
    box-shadow: 0 3px 14px rgba(72, 43, 38, 0.025);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #f5c8bb;
    box-shadow: 0 15px 35px rgba(72, 43, 38, 0.09);
}


/* =========================================================
   CARD ICON
   ========================================================= */

.card-icon {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 50%;
    background: #fff1eb;
    color: #f04b24;
    font-size: 29px;
}

.card-icon.brown {
    background: #f5eeeb;
    color: #5a302b;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.about-card h4 {
    margin: 0 0 12px;
    color: #432522;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    text-transformation: uppercase !important;
}

.about-card p {
    width: 100%;
    max-width: 215px;
    margin: 0;
    color: #626469;
    font-size: 15px;
    line-height: 1.55;
}


/* Bottom line */

.card-line {
    display: block;
    width: 46px;
    height: 2px;
    margin-top: auto;
    padding-top: 16px;
    background: #f04b24;
    background-clip: content-box;
}

.card-line.brown-line {
    background: #5a302b;
    background-clip: content-box;
}


/* =========================================================
   STATS BAR
   ========================================================= */

.about-stats {
    width: calc(100% - 8.4%);
    max-width: none;
    min-height: 124px;
    margin: 26px 4.2% 0;
    padding: 18px 35px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    border-radius: 15px;
    background: #572f2b;
    box-shadow: 0 8px 25px rgba(64, 33, 29, 0.08);
}


/* =========================================================
   STAT ITEM
   ========================================================= */

.stat-item {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.stat-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff8f3;
    font-size: 34px;
}

.stat-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.stat-info strong {
    margin: 0;
    color: #f04b24;
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.stat-info strong span {
    font-size: 22px;
}

.stat-info small {
    margin-top: 7px;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
}


/* =========================================================
   STAT DIVIDER
   ========================================================= */

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.22);
}


/* =========================================================
   1400px
   ========================================================= */

@media (max-width: 1400px) {
    .about-container {
        grid-template-columns: 29% 21% 50%;
        padding: 0 3.8%;
    }
    .about-left {
        padding-right: 25px;
    }
    .about-right {
        padding-left: 18px;
    }
    .about-image-wrap {
        height: 530px;
    }
    .about-card {
        min-height: 260px;
    }
    .stat-item {
        gap: 12px;
    }
    .stat-info strong {
        font-size: 31px;
    }
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {
    .about-school {
        padding-top: 60px;
    }
    .about-container {
        grid-template-columns: 30% 21% 49%;
    }
    .about-left h2 {
        font-size: 40px;
    }
    .about-image-wrap {
        height: 500px;
    }
    .about-card {
        padding: 22px 12px 18px;
        min-height: 250px;
    }
    .card-icon {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
        font-size: 25px;
    }
    .about-card h4 {
        font-size: 17px;
    }
    .about-card p {
        font-size: 12px;
    }
}


/* =========================================================
   1000px
   ========================================================= */

@media (max-width: 1000px) {
    .about-container {
        grid-template-columns: 1fr 0.85fr;
        row-gap: 40px;
    }
    .about-left {
        grid-column: 1;
        padding-right: 25px;
    }
    .about-image-wrap {
        grid-column: 2;
        height: 490px;
    }
    .about-right {
        grid-column: 1 / -1;
        padding-left: 0;
    }
    .about-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 25px 30px;
    }
    .stat-divider {
        display: none;
    }
}


/* =========================================================
   768px
   ========================================================= */

@media (max-width: 768px) {
    .about-school {
        padding: 50px 0 40px;
    }
    .about-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0 6%;
        gap: 35px;
    }
    /* LEFT */
    .about-left {
        width: 100%;
        padding-right: 0;
    }
    .about-left h2 {
        font-size: 40px;
    }
    .about-intro {
        max-width: 650px;
    }
    .about-feature {
        max-width: 600px;
    }
    /* IMAGE */
    .about-image-wrap {
        width: 100%;
        max-width: 430px;
        height: 500px;
        margin: 0 auto;
        padding: 0;
    }
    /* RIGHT */
    .about-right {
        width: 100%;
        padding-left: 0;
    }
    .about-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    /* STATS */
    .about-stats {
        width: 88%;
        margin: 35px auto 0;
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
    }
}


/* =========================================================
   600px
   ========================================================= */

@media (max-width: 600px) {
    .about-school {
        padding: 45px 0 35px;
    }
    .about-container {
        padding: 0 5%;
        gap: 30px;
    }
    .about-label {
        font-size: 15px;
    }
    .about-left h2 {
        font-size: 35px;
        letter-spacing: -1px;
    }
    .about-intro {
        font-size: 14px;
    }
    .about-image-wrap {
        height: 450px;
        max-width: 370px;
    }
    .about-cards {
        grid-template-columns: 1fr;
    }
    .about-card {
        min-height: 230px;
    }
    .about-card p {
        max-width: 300px;
        font-size: 13px;
    }
    .about-stats {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 28px 20px;
    }
    .stat-item {
        justify-content: flex-start;
        padding-left: 10%;
    }
}


/* =========================================================
   450px
   ========================================================= */

@media (max-width: 450px) {
    .about-school {
        padding: 40px 0 30px;
    }
    .about-container {
        padding: 0 5%;
    }
    .about-left h2 {
        font-size: 31px;
    }
    .about-intro {
        font-size: 13px;
    }
    .about-feature {
        gap: 12px;
    }
    .feature-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 18px;
    }
    .feature-content h4 {
        font-size: 16px;
    }
    .feature-content p {
        font-size: 13px;
    }
    .about-btn {
        width: 205px;
        height: 45px;
    }
    .about-image-wrap {
        height: 400px;
        max-width: 340px;
    }
    .right-heading h3 {
        font-size: 17px;
    }
    .about-card {
        min-height: 225px;
    }
    .stat-item {
        padding-left: 3%;
    }
    .stat-info strong {
        font-size: 30px;
    }
}


/* =========================================================
   360px
   ========================================================= */

@media (max-width: 360px) {
    .about-left h2 {
        font-size: 28px;
    }
    .about-image-wrap {
        height: 360px;
    }
    .stat-info strong {
        font-size: 27px;
    }
    .stat-info small {
        font-size: 12px;
    }
}


/* =========================================
   UNIQUE SECTION
========================================= */

.unique-section {
    width: 100%;
    background: #ffffff;
    padding: 30px 0 30px;
    overflow: hidden;
}

.unique-container {
    width: min(1450px, 92%);
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.unique-heading {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 72px;
}

.unique-eyebrow {
    display: inline-block;
    color: #f4511e;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 20px;
}

.unique-heading-line {
    width: 78px;
    height: 2px;
    background: #f4511e;
    margin: 0 auto 25px;
}

.unique-heading h2 {
    margin: 0;
    color: #1d1d2b;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.15;
}

.unique-heading h2 span {
    color: #f4511e;
}

.unique-heading p {
    max-width: 760px;
    margin: 25px auto 0;
    color: #686b78;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
}


/* =========================================
   FEATURES GRID
========================================= */

.unique-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 0 auto;
}

.unique-feature {
    position: relative;
    text-align: center;
    padding: 0 45px 10px;
}

.unique-feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 42px;
    right: 0;
    width: 1px;
    height: 292px;
    background: #e5e5e5;
}


/* =========================================
   ICON
========================================= */

.unique-icon-wrap {
    position: relative;
    width: 154px;
    height: 154px;
    margin: 0 auto 27px;
}

.unique-icon-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #f4511e;
    border-left-color: #f4511e;
    transform: rotate(-25deg);
}

.unique-icon-wrap::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background: #f4511e;
    border-radius: 50%;
    top: -3px;
    right: 12px;
    box-shadow: 0 0 0 4px rgba(244, 81, 30, 0.08);
}

.unique-icon {
    position: absolute;
    inset: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid #f0f0f0;
    box-shadow: 0 14px 35px rgba(25, 25, 35, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.unique-icon-image {
    width: 48px;
    height: 48px;
    display: block;
    filter: brightness(0) saturate(100%) invert(36%) sepia(87%) saturate(3616%) hue-rotate(354deg) brightness(99%) contrast(96%);
    transition: transform 0.35s ease;
}


/* =========================================
   FEATURE TITLE
========================================= */

.unique-feature h3 {
    margin: 0;
    color: #171827;
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.3;
}

.unique-small-line {
    width: 58px;
    height: 2px;
    background: #f4511e;
    margin: 23px auto 24px;
}

.unique-feature p {
    max-width: 300px;
    margin: 0 auto;
    color: #666a78;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}


/* =========================================
   HOVER
========================================= */

.unique-feature {
    transition: transform 0.35s ease;
}

.unique-feature:hover {
    transform: translateY(-7px);
}

.unique-feature:hover .unique-icon {
    box-shadow: 0 18px 45px rgba(25, 25, 35, 0.12), 0 0 0 5px rgba(244, 81, 30, 0.04);
}

.unique-feature:hover .unique-icon-image {
    transform: scale(1.08);
}

.unique-feature:hover .unique-icon-wrap::before {
    transform: rotate(25deg);
}


/* =========================================
   BOTTOM DECORATIVE LINE
========================================= */

.unique-bottom-line {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 82px;
}

.unique-bottom-line span {
    width: 42%;
    height: 1px;
    background: #e4e4e4;
}

.unique-bottom-line i {
    width: 7px;
    height: 7px;
    display: block;
    border: 1px solid #f4511e;
    transform: rotate(45deg);
}

.unique-bottom-line i:nth-child(3) {
    width: 10px;
    height: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .unique-section {
        padding: 75px 0 60px;
    }
    .unique-heading {
        margin-bottom: 55px;
    }
    .unique-feature {
        padding: 0 25px 10px;
    }
    .unique-feature h3 {
        font-size: 20px;
    }
    .unique-feature p {
        font-size: 15px;
    }
    .unique-icon-wrap {
        width: 135px;
        height: 135px;
    }
    .unique-icon-image {
        width: 40px;
        height: 40px;
    }
    .unique-feature:not(:last-child)::after {
        height: 270px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .unique-section {
        padding: 65px 0 50px;
    }
    .unique-container {
        width: 90%;
    }
    .unique-heading {
        margin-bottom: 50px;
    }
    .unique-eyebrow {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }
    .unique-heading-line {
        width: 55px;
        margin-bottom: 20px;
    }
    .unique-heading h2 {
        font-size: 34px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    .unique-heading p {
        font-size: 15px;
        line-height: 1.7;
        margin-top: 20px;
    }
    .unique-features {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .unique-feature {
        padding: 0 10px 45px;
    }
    .unique-feature:not(:last-child)::after {
        top: auto;
        bottom: 0;
        right: 15%;
        width: 70%;
        height: 1px;
    }
    .unique-icon-wrap {
        width: 130px;
        height: 130px;
        margin-bottom: 25px;
    }
    .unique-icon {
        inset: 10px;
    }
    .unique-icon-image {
        width: 38px;
        height: 38px;
    }
    .unique-feature h3 {
        font-size: 21px;
    }
    .unique-feature p {
        max-width: 330px;
        font-size: 15px;
        line-height: 1.7;
    }
    .unique-bottom-line {
        margin-top: 45px;
    }
    .unique-bottom-line span {
        width: 32%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {
    .unique-section {
        padding-top: 50px;
    }
    .unique-heading h2 {
        font-size: 30px;
    }
    .unique-heading p {
        font-size: 14px;
    }
    .unique-feature {
        padding-left: 0;
        padding-right: 0;
    }
    .unique-icon-wrap {
        width: 120px;
        height: 120px;
    }
    .unique-icon-image {
        width: 35px;
        height: 35px;
    }
}


/* ==========================================
   SIRS WHY CHOOSE US
   FULL WIDTH VERSION
========================================== */

.sirs-why-section {
    width: 100%;
    background: #ffffff;
    padding: 40px 0 0;
    overflow: hidden;
}


/* ==========================================
   FULL WIDTH MAIN CONTAINER
========================================== */

.sirs-why-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: clamp(35px, 5vw, 90px);
    padding-right: clamp(35px, 5vw, 90px);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(600px, 1.18fr);
    gap: clamp(45px, 5vw, 90px);
    align-items: start;
}


/* ==========================================
   LEFT SIDE
========================================== */

.sirs-why-left {
    position: relative;
    min-height: 600px;
    padding-top: 5px;
    overflow: visible;
    isolation: isolate;
}

.sirs-why-left>*:not(.sirs-school-sketch) {
    position: relative;
    z-index: 1;
}

.sirs-why-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #f4511e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.sirs-why-eyebrow span {
    display: block;
    width: 58px;
    height: 2px;
    background: #f4511e;
}


/* ==========================================
   HEADING
========================================= */

.sirs-why-left h2 {
    margin: 28px 0 0;
    color: #492925;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 400 !important;
    letter-spacing: 1px;
}

.sirs-why-left h2 strong {
    color: #f4511e;
    font-weight: 400;
}


/* ==========================================
   LINE
========================================= */

.sirs-heading-line {
    width: 43px;
    height: 2px;
    background: #f4511e;
    margin-top: 20px;
}


/* ==========================================
   DESCRIPTION
========================================= */

.sirs-why-text {
    max-width: 500px;
    margin: 16px 0 0;
    color: #5f6574;
    font-size: 16px;
    line-height: 1.8;
}


/* ==========================================
   VALUE
========================================= */

.sirs-value-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.sirs-value-icon {
    width: 53px;
    height: 53px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4511e;
    border-left: 2px solid #f4511e;
    font-size: 24px;
}

.sirs-value-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sirs-value-content strong {
    color: #171e33;
    font-size: 15px;
    font-style: italic;
}

.sirs-value-content span {
    color: #555c6d;
    font-size: 15px;
    font-style: italic;
}


/* ==========================================
   SCHOOL SKETCH
========================================== */

.sirs-school-sketch {
    position: absolute;
    left: clamp(-45px, -2vw, -30px);
    bottom: -115px;
    width: min(900px, 135%);
    max-width: none;
    height: auto;
    opacity: 0.62;
    pointer-events: none;
    z-index: 0;
}


/* ==========================================
   RIGHT FEATURE GRID
========================================== */

.sirs-why-right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


/* ==========================================
   FEATURE CARD
========================================== */

.sirs-feature-card {
    position: relative;
    min-height: 320px;
    padding: 25px 30px 20px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}


/* ==========================================
   CARD CORNER
========================================== */

.sirs-feature-card::before {
    content: "";
    position: absolute;
    top: -53px;
    left: -53px;
    width: 105px;
    height: 105px;
    border: 1.5px solid #f4511e;
    border-radius: 0 0 100% 0;
    transition: 0.35s ease;
}


/* ==========================================
   NUMBER
========================================== */

.sirs-card-number {
    position: relative;
    z-index: 2;
    text-align: left;
    color: #f4511e;
    font-size: 21px;
    font-weight: 700;
}


/* ==========================================
   ICON
========================================== */

.sirs-feature-icon {
    width: 100px;
    height: 100px;
    margin: 5px auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff5ef;
    color: #f4511e;
    font-size: 38px;
    transition: transform 0.35s ease, background 0.35s ease;
}


/* ==========================================
   TITLE
========================================== */

.sirs-feature-card h3 {
    margin: 0;
    color: #141c34;
    font-size: 24px;
    font-weight: 500;
}


/* ==========================================
   TEXT
========================================== */

.sirs-feature-card p {
    max-width: 330px;
    margin: 10px auto 0;
    color: #626979;
    font-size: 16px;
    line-height: 1.6;
}


/* ==========================================
   DOTS
========================================== */

.sirs-card-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 14px;
}

.sirs-card-dots span {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffd8c9;
}

.sirs-card-dots span:first-child {
    background: #f4511e;
}


/* ==========================================
   HOVER
========================================== */

.sirs-feature-card:hover {
    transform: translateY(-6px);
    border-color: #f1d4c8;
    box-shadow: 0 20px 45px rgba(20, 28, 50, 0.08);
}

.sirs-feature-card:hover::before {
    width: 125px;
    height: 125px;
}

.sirs-feature-card:hover .sirs-feature-icon {
    transform: scale(1.05);
    background: #ffede5;
}


/* ==========================================
   BOTTOM HIGHLIGHTS
========================================== */

.sirs-highlight-container {
    width: 100%;
    max-width: none;
    margin: 30px 0 0;
    padding: 18px clamp(35px, 5vw, 90px);
    box-sizing: border-box;
    border-top: 1px solid #e6e6e6;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


/* ==========================================
   HIGHLIGHT
========================================== */

.sirs-highlight {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 30px;
    border-right: 1px solid #e5e5e5;
}

.sirs-highlight:first-child {
    padding-left: 0;
}

.sirs-highlight:last-child {
    border-right: none;
    padding-right: 0;
}


/* ==========================================
   HIGHLIGHT ICON
========================================== */

.sirs-highlight-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff5ef;
    color: #f4511e;
    font-size: 25px;
}


/* ==========================================
   HIGHLIGHT TEXT
========================================== */

.sirs-highlight h4 {
    margin: 0 0 7px;
    color: #151d35;
    font-size: 20px;
    font-weight: 500;
}

.sirs-highlight p {
    margin: 0;
    color: #777c88;
    font-size: 16px;
    line-height: 1.55;
}


/* ==========================================
   LARGE DESKTOP
========================================== */

@media (min-width: 1600px) {
    .sirs-why-container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 100px;
    }
    .sirs-feature-card {
        min-height: 330px;
    }
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {
    .sirs-why-section {
        padding-top: 70px;
    }
    .sirs-why-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-left: 6%;
        padding-right: 6%;
    }
    .sirs-why-left {
        min-height: 570px;
    }
    .sirs-why-left h2 {
        max-width: 750px;
    }
    .sirs-why-text {
        max-width: 650px;
    }
    .sirs-school-sketch {
        width: min(720px, 110%);
        left: -20px;
    }
    .sirs-highlight-container {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 6%;
        padding-right: 6%;
        gap: 25px;
    }
    .sirs-highlight {
        border-right: none;
        padding: 15px 20px;
    }
    .sirs-highlight:nth-child(1),
    .sirs-highlight:nth-child(3) {
        border-right: 1px solid #e5e5e5;
    }
    .sirs-highlight:first-child {
        padding-left: 20px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {
    .sirs-why-section {
        padding-top: 10px;
    }
    .sirs-why-container {
        width: 100%;
        padding-left: 22px;
        padding-right: 22px;
        gap: 34px;
    }
    .sirs-why-left {
        min-height: 590px;
    }
    .sirs-why-eyebrow {
        font-size: 10px;
        letter-spacing: 2.5px;
    }
    .sirs-why-eyebrow span {
        width: 40px;
    }
    .sirs-why-left h2 {
        margin-top: 23px;
        font-size: clamp(33px, 9.5vw, 39px);
        line-height: 1.1;
        letter-spacing: -1px;
    }
    .sirs-why-text {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.75;
    }
    .sirs-school-sketch {
        bottom: 0;
        left: 50%;
        max-width: none;
        transform: translateX(-50%);
        width: calc(100% + 44px);
        opacity: 0.42;
    }
    /* Cards */
    .sirs-why-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .sirs-feature-card {
        min-height: 0;
        padding: 26px 22px 28px;
    }
    .sirs-feature-icon {
        width: 90px;
        height: 90px;
        font-size: 32px;
    }
    .sirs-feature-card h3 {
        font-size: 19px;
    }
    /* Highlights */
    .sirs-highlight-container {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 20px 22px;
        gap: 0;
        margin-top: 45px;
    }
    .sirs-highlight,
    .sirs-highlight:nth-child(1),
    .sirs-highlight:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding: 20px 0;
    }
    .sirs-highlight:last-child {
        border-bottom: none;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 420px) {
    .sirs-why-left h2 {
        font-size: 28px;
    }
    .sirs-why-left {
        min-height: 570px;
    }
    .sirs-school-sketch {
        left: 50%;
        width: calc(100% + 36px);
    }
    .sirs-feature-card {
        min-height: 0;
    }
    .sirs-feature-icon {
        width: 82px;
        height: 82px;
        font-size: 29px;
    }
    .sirs-feature-card h3 {
        font-size: 18px;
    }
    .sirs-feature-card p {
        font-size: 13px;
    }
}


/* =========================================================
   MISSION / VISION / COMMITMENTS
   FULL WIDTH
   NO FONT FAMILY
   ========================================================= */

.mvc-section {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 30px 0 30px;
    background: radial-gradient( circle at 15% 20%, rgba(240, 75, 36, 0.035), transparent 28%), #fffdfb;
    color: #15182c;
    overflow: hidden;
    box-sizing: border-box;
}

.mvc-section *,
.mvc-section *::before,
.mvc-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   HEADER
   ========================================================= */

.mvc-header {
    width: 100%;
    padding: 0 6%;
    margin-bottom: 48px;
    text-align: center;
}

.mvc-header-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 17px;
}

.mvc-header-label span {
    color: #f04b24;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}

.mvc-header-label i {
    width: 42px;
    height: 1px;
    display: block;
    background: #f04b24;
}

.mvc-header h2 {
    margin: 0;
    color: #14182d;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 1px;
}

.mvc-header h2 span {
    color: #f04b24;
}

.mvc-header>p {
    width: 100%;
    margin: 18px auto 0;
    color: #626579;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   THREE CARDS
   ========================================================= */

.mvc-grid {
    width: 100%;
    padding: 0 4%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}


/* =========================================================
   CARD
   ========================================================= */

.mvc-card {
    position: relative;
    width: 100%;
    min-width: 0;
    min-height: 475px;
    padding: 34px 36px 31px;
    border: 1px solid #ebe8e6;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    transition: min-height 0.45s ease, box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.mvc-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient( circle, rgba(240, 75, 36, 0.08), transparent 68%);
    pointer-events: none;
}

.mvc-card:hover {
    transform: translateY(-5px);
    border-color: #f0d6ce;
    box-shadow: 0 18px 45px rgba(47, 35, 32, 0.08);
}


/* =========================================================
   TOP
   ========================================================= */

.mvc-card-top {
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mvc-number {
    position: absolute;
    top: -34px;
    left: -36px;
    width: 67px;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0ded8;
    border-bottom: 1px solid #f0ded8;
    border-radius: 0 0 38px 0;
    color: #f04b24;
    font-size: 18px;
    font-weight: 700;
}

.mvc-icon {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    border-radius: 50%;
    background: linear-gradient( 145deg, #fff0e9, #fff7f3);
    color: #f04b24;
    font-size: 36px;
    box-shadow: inset 0 0 0 1px rgba(240, 75, 36, 0.03);
}

.mvc-card-label {
    margin-top: 16px;
    color: #f04b24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
   CARD HEADING
   ========================================================= */

.mvc-card h3 {
    position: relative;
    margin: 0;
    text-align: center;
    color: #15182d;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.mvc-card h3 span {
    display: block;
    color: #f04b24;
}

.mvc-short-text {
    width: 100%;
    max-width: 390px;
    margin: 17px auto 0;
    text-align: center;
    color: #5c6072;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   EXPLORE BUTTON
   ========================================================= */

.mvc-toggle {
    width: 100%;
    max-width: 210px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 28px auto 0;
    padding: 0 8px 0 12px;
    border: 1px solid #f04b24;
    border-radius: 20px;
    background: transparent;
    color: #f04b24;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.mvc-toggle i {
    transition: transform 0.3s ease;
}

.mvc-toggle:hover {
    background: #f04b24;
    color: #ffffff;
}

.mvc-toggle:hover i {
    transform: translateX(4px);
}

.mvc-card.active .mvc-toggle {
    background: #f04b24;
    color: #ffffff;
}

.mvc-card.active .mvc-toggle i {
    transform: rotate(90deg);
}


/* =========================================================
   EXPANDABLE CONTENT
   ========================================================= */

.mvc-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    border-top: 0 solid transparent;
    transition: max-height 0.55s ease, opacity 0.35s ease, margin-top 0.45s ease, padding-top 0.45s ease;
}

.mvc-card.active {
    min-height: 0;
    box-shadow: 0 18px 50px rgba(52, 35, 31, 0.1);
}

.mvc-card.active .mvc-content {
    max-height: 1600px;
    opacity: 1;
    margin-top: 30px;
    padding-top: 27px;
    border-top: 1px solid #eee5e1;
}


/* =========================================================
   EXPANDED CONTENT TYPOGRAPHY
   ========================================================= */

.mvc-content h4 {
    margin: 0 0 15px;
    color: #24263a;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
}

.mvc-content>p {
    margin: 0 0 18px;
    color: #5c6070;
    font-size: 13px;
    line-height: 1.7;
}

.mvc-content-group {
    margin-top: 21px;
}

.mvc-content-group strong {
    display: block;
    margin-bottom: 9px;
    color: #24263a;
    font-size: 14px;
    font-weight: 700;
}

.mvc-content-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mvc-content-group li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 17px;
    color: #5a5e70;
    font-size: 13px;
    line-height: 1.55;
}

.mvc-content-group li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #f04b24;
}


/* =========================================================
   COMMITMENTS
   ========================================================= */

.commitment-list {
    width: 100%;
}

.commitment-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #eee8e5;
}

.commitment-item:first-child {
    padding-top: 0;
}

.commitment-item:last-child {
    border-bottom: 0;
}

.commitment-item>span {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff0e9;
    color: #f04b24;
    font-size: 10px;
    font-weight: 700;
}

.commitment-item strong {
    display: block;
    margin-bottom: 4px;
    color: #25273a;
    font-size: 17px;
    font-weight: 500;
}

.commitment-item p {
    margin: 0;
    color: #606375;
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   CARD DIFFERENTIATION
   ========================================================= */

.mission-card {
    border-top: 3px solid #f04b24;
}

.vision-card {
    border-top: 3px solid #5a302b;
}

.vision-card .mvc-card-label {
    color: #5a302b;
}

.vision-card .mvc-icon {
    color: #5a302b;
    background: linear-gradient( 145deg, #f4ece9, #faf7f5);
}

.commitment-card {
    border-top: 3px solid #f04b24;
}


/* =========================================================
   LARGE SCREEN
   ========================================================= */

@media (min-width: 1500px) {
    .mvc-grid {
        padding: 0 5%;
        gap: 28px;
    }
    .mvc-card {
        min-height: 500px;
        padding-left: 45px;
        padding-right: 45px;
    }
    .mvc-card h3 {
        font-size: 30px;
    }
}


/* =========================================================
   1200px
   ========================================================= */

@media (max-width: 1200px) {
    .mvc-grid {
        padding: 0 3%;
        gap: 17px;
    }
    .mvc-card {
        padding: 30px 25px;
    }
    .mvc-card h3 {
        font-size: 24px;
    }
    .mvc-short-text {
        font-size: 13px;
    }
}


/* =========================================================
   950px
   ========================================================= */

@media (max-width: 950px) {
    .mvc-section {
        padding: 65px 0;
    }
    .mvc-grid {
        grid-template-columns: 1fr;
        padding: 0 7%;
        gap: 20px;
    }
    .mvc-card {
        min-height: 400px;
        padding: 35px 40px;
    }
    .mvc-card h3 {
        font-size: 28px;
    }
    .mvc-short-text {
        max-width: 600px;
        font-size: 14px;
    }
}


/* =========================================================
   600px
   ========================================================= */

@media (max-width: 600px) {
    .mvc-section {
        padding: 55px 0 45px;
    }
    .mvc-header {
        padding: 0 7%;
        margin-bottom: 35px;
    }
    .mvc-header-label span {
        font-size: 12px;
        letter-spacing: 2px;
    }
    .mvc-header h2 {
        font-size: 38px;
    }
    .mvc-header>p {
        font-size: 13px;
    }
    .mvc-grid {
        padding: 0 5%;
    }
    .mvc-card {
        padding: 32px 23px 28px;
        border-radius: 16px;
    }
    .mvc-number {
        top: -32px;
        left: -23px;
    }
    .mvc-icon {
        width: 88px;
        height: 88px;
        font-size: 32px;
    }
    .mvc-card h3 {
        font-size: 23px;
    }
    .mvc-card.active .mvc-content {
        max-height: 2200px;
    }
}


/* =========================================================
   420px
   ========================================================= */

@media (max-width: 420px) {
    .mvc-section {
        padding-top: 45px;
    }
    .mvc-header h2 {
        font-size: 32px;
    }
    .mvc-header>p {
        font-size: 12.5px;
    }
    .mvc-grid {
        padding: 0 4%;
    }
    .mvc-card {
        padding-left: 18px;
        padding-right: 18px;
    }
    .mvc-number {
        left: -18px;
    }
    .mvc-card h3 {
        font-size: 21px;
    }
    .mvc-short-text {
        font-size: 12.5px;
    }
    .mvc-toggle {
        max-width: 195px;
    }
}


/* ==========================================
   FACTS & FIGURES SECTION
========================================== */

.facts-figures {
    position: relative;
    width: 100%;
    min-height: 1020px;
    overflow: hidden;
    background: #291915;
    color: #ffffff;
}


/* ==========================================
   BACKGROUND IMAGE
========================================== */

.facts-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient( to bottom, rgba(41, 25, 21, 0) 32%, rgba(41, 25, 21, 0.04) 42%, rgba(41, 25, 21, 0.30) 54%, rgba(41, 25, 21, 0.70) 68%, rgba(41, 25, 21, 0.94) 82%, #291915 100%), url("../assets/images/bg-section.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 20%;
    z-index: 0;
}


/* ==========================================
   LEFT WHITE OVERLAY
========================================== */

.facts-figures::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 53%;
    height: 100%;
    background: linear-gradient( 90deg, #ffffff 0%, rgba(255, 255, 255, 0.99) 28%, rgba(255, 255, 255, 0.90) 48%, rgba(255, 255, 255, 0.48) 72%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 42%, rgba(0, 0, 0, 0.72) 57%, transparent 76%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 42%, rgba(0, 0, 0, 0.72) 57%, transparent 76%);
}


/* ==========================================
   LEFT INTRO CONTENT
========================================== */

.facts-intro {
    position: relative;
    z-index: 5;
    width: 590px;
    margin-left: 58px;
    padding-top: 65px;
}


/* ==========================================
   EYEBROW
========================================== */

.facts-eyebrow {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    color: #ed4c1c;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}


/* ==========================================
   SMALL ORANGE LINE
========================================== */

.facts-small-line {
    width: 85px;
    height: 2px;
    margin-top: 18px;
    background: #ed4c1c;
}


/* ==========================================
   MAIN HEADING
========================================== */

.facts-intro h2 {
    margin: 38px 0 0;
    font-size: 66px;
    line-height: 0.99;
    font-weight: 400;
    letter-spacing: 0px;
    color: #302826;
}

.facts-intro h2 span {
    color: #ed4c1c;
    white-space: nowrap;
}


/* ==========================================
   HEADING DIVIDER
========================================== */

.facts-divider {
    display: flex;
    align-items: center;
    width: 320px;
    margin-top: 32px;
    gap: 17px;
}

.facts-divider>span {
    height: 1px;
    flex: 1;
    background: #ed4c1c;
}

.facts-shield {
    width: 39px;
    height: 43px;
    flex-shrink: 0;
    color: #ed4c1c;
}

.facts-shield svg {
    display: block;
    width: 100%;
    height: 100%;
}


/* ==========================================
   INTRO TEXT
========================================== */

.facts-intro p {
    margin: 23px 0 0;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: #302d2b;
}


/* ==========================================
   STATISTICS WRAPPER
========================================== */

.facts-stats {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 62px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


/* ==========================================
   STAT CARD
========================================== */

.facts-card {
    position: relative;
    min-height: 410px;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.27);
}

.facts-card:last-child {
    border-right: none;
}


/* ==========================================
   ROUND ICON
========================================== */

.facts-icon {
    width: 102px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 50%;
    background: rgba(74, 45, 21, 0.96);
    color: #ffffff;
}

.facts-icon svg {
    width: 60px;
    height: 60px;
    display: block;
}

.facts-icon.medical svg {
    width: 58px;
    height: 58px;
}


/* ==========================================
   ORANGE NUMBER BADGE
========================================== */

.facts-index {
    width: 41px;
    height: 41px;
    margin-top: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ed4c1c;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}


/* ==========================================
   BIG NUMBER
========================================== */

.facts-number {
    margin-top: 8px;
    font-size: 55px;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -4px;
    color: #ffffff;
}

.facts-number span {
    display: inline-block;
    margin-left: 2px;
    font-size: 50px;
    vertical-align: 12px;
    letter-spacing: -2px;
}


/* ==========================================
   SAIONEERS TITLE
========================================== */

.facts-title {
    margin-top: 10px;
    font-size: 28px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 1px;
    color: #ed4c1c;
}


/* ==========================================
   DESCRIPTION
========================================== */

.facts-card p {
    margin: 17px 0 0;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
}


/* ==========================================
   BOTTOM ORANGE LINE
========================================== */

.facts-bottom-line {
    width: 125px;
    height: 2px;
    margin-top: 21px;
    background: #ed4c1c;
}


/* ==========================================
   BOTTOM CURVE
========================================== */

.facts-curve {
    position: absolute;
    left: -2%;
    bottom: -2px;
    width: 104%;
    height: 70px;
    z-index: 10;
    border-top: 5px solid #ed4c1c;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: rotate(2deg);
    transform-origin: center;
}


/* ==========================================
   LARGE TABLET
========================================== */

@media (max-width: 1100px) {
    .facts-figures {
        min-height: 1050px;
    }
    .facts-intro {
        width: 500px;
        margin-left: 40px;
    }
    .facts-intro h2 {
        font-size: 54px;
    }
    .facts-stats {
        bottom: 45px;
    }
    .facts-number {
        font-size: 65px;
    }
    .facts-number span {
        font-size: 42px;
    }
    .facts-title {
        font-size: 19px;
    }
    .facts-card p {
        font-size: 14px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    .facts-figures {
        min-height: auto;
        padding-bottom: 58px;
    }
    .facts-bg {
        height: 455px;
        background-position: center top;
    }
    .facts-figures::before {
        width: 100%;
        height: 410px;
        background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.99) 62%, rgba(255, 255, 255, 0.76) 80%, rgba(255, 255, 255, 0) 100%);
        -webkit-mask-image: none;
        mask-image: none;
    }
    .facts-intro {
        width: auto;
        min-height: 340px;
        margin: 0;
        padding-left: 22px;
        padding-right: 22px;
        padding-top: 45px;
    }
    .facts-intro h2 span {
        white-space: normal;
    }
    .facts-eyebrow {
        font-size: 14px;
    }
    .facts-small-line {
        width: 65px;
        margin-top: 13px;
    }
    .facts-intro h2 {
        margin-top: 25px;
        font-size: 36px;
        line-height: 1.04;
    }
    .facts-divider {
        width: 240px;
        margin-top: 25px;
    }
    .facts-shield {
        width: 32px;
        height: 36px;
    }
    .facts-intro p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.55;
    }
    .facts-stats {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 0;
        padding: 32px 12px 12px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 0;
    }
    .facts-card {
        min-height: 320px;
        padding: 0 10px 30px;
    }
    .facts-card:nth-child(2) {
        border-right: none;
    }
    .facts-card:nth-child(3),
    .facts-card:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 34px;
    }
    .facts-icon {
        width: 75px;
        height: 75px;
    }
    .facts-icon svg {
        width: 45px;
        height: 45px;
    }
    .facts-icon.medical svg {
        width: 43px;
        height: 43px;
    }
    .facts-index {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .facts-number {
        font-size: 48px;
        letter-spacing: -2px;
    }
    .facts-number span {
        font-size: 29px;
        vertical-align: 8px;
    }
    .facts-title {
        margin-top: 8px;
        font-size: 15px;
    }
    .facts-card p {
        margin-top: 13px;
        font-size: 10px;
        line-height: 1.5;
    }
    .facts-bottom-line {
        width: 80px;
        margin-top: 15px;
    }
    .facts-curve {
        height: 45px;
        border-top-width: 3px;
    }
}


/* =====================================================
   SIRS EXPERIENCE GALLERY
===================================================== */

.sirs-experience {
    position: relative;
    width: 100%;
    padding: 40px 35px 35px;
    overflow: hidden;
    background: #fff;
    color: #251b17;
}


/* =====================================================
   HEADER
===================================================== */

.sirs-exp-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.sirs-exp-header>.sirs-exp-kicker,
.sirs-exp-header>h2,
.sirs-exp-header>.sirs-exp-intro {
    position: relative;
    z-index: 2;
}

.sirs-exp-art {
    position: absolute;
    top: -8px;
    right: 20px;
    z-index: 1;
    width: min(30vw, 470px);
    pointer-events: none;
    opacity: 0.18;
    color: #ed4c1c;
}

.sirs-exp-art svg {
    display: block;
    width: 100%;
    height: auto;
}

.sirs-art-campus {
    color: #512e2a;
}

.sirs-art-sun,
.sirs-art-book,
.sirs-art-accent {
    color: #ed4c1c;
}

.sirs-exp-kicker {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e94b1b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.sirs-exp-kicker span {
    display: block;
    width: 65px;
    height: 2px;
    background: #e94b1b;
}

.sirs-exp-header h2 {
    margin: 25px 0 20px;
    font-size: 52px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    white-space: nowrap;
}

.sirs-exp-header h2 span {
    color: #e94b1b;
}


/* =====================================================
   INTRO
===================================================== */

.sirs-exp-intro {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 620px;
}

.sirs-exp-shield {
    width: 65px;
    height: 75px;
    flex-shrink: 0;
    color: #e94b1b;
}

.sirs-exp-shield svg {
    width: 100%;
    height: 100%;
}

.sirs-exp-intro p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #665b55;
}


/* =====================================================
   TABS
===================================================== */

.sirs-exp-tabs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    width: 100%;
    margin-bottom: 17px;
}

.sirs-exp-tab {
    height: 52px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #dfd4cb;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.55);
    color: #342923;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.sirs-exp-tab:hover {
    border-color: #e94b1b;
    color: #e94b1b;
    transform: translateY(-2px);
}

.sirs-exp-tab.active {
    background: #e94b1b;
    border-color: #e94b1b;
    color: #ffffff;
}

.tab-icon {
    font-size: 21px;
    line-height: 1;
}


/* =====================================================
   GALLERY PANEL
===================================================== */

.sirs-exp-panel {
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

.sirs-exp-panel.active {
    display: grid;
    animation: sirsPanelIn 0.45s ease;
}

@keyframes sirsPanelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =====================================================
   GALLERY CARD
===================================================== */

.sirs-gallery-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dfd4cb;
    border-radius: 10px;
    background: #ffffff;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sirs-gallery-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(48, 31, 23, 0.13);
}


/* =====================================================
   IMAGE
===================================================== */

.sirs-gallery-image {
    position: relative;
    width: 100%;
    height: 315px;
    overflow: hidden;
}

.sirs-gallery-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.18), transparent 35%);
}

.sirs-gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.sirs-gallery-card:hover .sirs-gallery-image img {
    transform: scale(1.07);
}


/* =====================================================
   IMAGE NUMBER
===================================================== */

.sirs-gallery-image>span {
    position: absolute;
    left: 13px;
    bottom: -1px;
    z-index: 3;
    min-width: 48px;
    height: 32px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    border-radius: 30px;
    justify-content: center;
    background: #e94b1b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}


/* =====================================================
   CARD CONTENT
===================================================== */

.sirs-gallery-content {
    min-height: 150px;
    padding: 22px 18px 18px;
}

.sirs-gallery-content h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.sirs-gallery-content h3 br {
    display: none;
}

.sirs-gallery-content h3 em {
    color: #e94b1b;
    font-style: normal;
}

.sirs-gallery-content h3::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 13px;
    background: #e94b1b;
}

.sirs-gallery-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #6d625c;
}


/* =====================================================
   VIEW GALLERY
===================================================== */

.sirs-gallery-content a {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #2b201b;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.sirs-gallery-content a b {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e94b1b;
    border-radius: 50%;
    color: #e94b1b;
    font-size: 15px;
    font-weight: 400;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.sirs-gallery-content a:hover b {
    background: #e94b1b;
    color: #ffffff;
    transform: rotate(45deg);
}


/* =====================================================
   BOTTOM NAVIGATION
===================================================== */

.sirs-exp-navigation {
    position: relative;
    width: 100%;
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sirs-exp-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b9aaa1;
    border-radius: 50%;
    background: transparent;
    color: #332721;
    font-size: 21px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.sirs-exp-arrow:hover {
    background: #e94b1b;
    border-color: #e94b1b;
    color: #ffffff;
}


/* =====================================================
   DOTS
===================================================== */

.sirs-exp-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}

.sirs-exp-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ded4cc;
    transition: width 0.3s ease, background 0.3s ease;
}

.sirs-exp-dots span.active {
    width: 28px;
    border-radius: 20px;
    background: #e94b1b;
}


/* =====================================================
   LARGE TABLET
===================================================== */

@media (max-width: 1100px) {
    .sirs-experience {
        padding: 80px 25px 50px;
    }
    .sirs-exp-header h2 {
        white-space: normal;
    }
    .sirs-exp-art {
        display: none;
    }
    .sirs-exp-tabs {
        grid-template-columns: repeat(3, 1fr);
    }
    .sirs-exp-panel {
        grid-template-columns: repeat(3, 1fr);
    }
    .sirs-gallery-card:nth-child(4),
    .sirs-gallery-card:nth-child(5) {
        display: none;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 750px) {
    .sirs-exp-panel {
        grid-template-columns: repeat(2, 1fr);
    }
    .sirs-gallery-card:nth-child(4) {
        display: block;
    }
    .sirs-gallery-image {
        height: 260px;
    }
    .sirs-gallery-content {
        min-height: 220px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 550px) {
    .sirs-experience {
        padding: 60px 15px 40px;
    }
    .sirs-exp-kicker {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    .sirs-exp-header h2 {
        margin-top: 20px;
        font-size: 40px;
        line-height: 1.02;
        letter-spacing: -1px;
    }
    .sirs-exp-intro {
        align-items: flex-start;
        gap: 13px;
    }
    .sirs-exp-shield {
        width: 45px;
        height: 55px;
    }
    .sirs-exp-intro p {
        font-size: 13px;
        line-height: 1.55;
    }
    .sirs-exp-tabs {
        display: flex;
        overflow-x: auto;
        gap: 7px;
        padding-bottom: 5px;
        scrollbar-width: none;
    }
    .sirs-exp-tabs::-webkit-scrollbar {
        display: none;
    }
    .sirs-exp-tab {
        flex: 0 0 auto;
        height: 45px;
        padding: 0 17px;
        font-size: 11px;
    }
    .tab-icon {
        font-size: 17px;
    }
    .sirs-exp-panel {
        grid-template-columns: 1fr;
        gap: 13px;
    }
    .sirs-gallery-card:nth-child(4),
    .sirs-gallery-card:nth-child(5) {
        display: block;
    }
    .sirs-gallery-image {
        height: 300px;
    }
    .sirs-gallery-content {
        min-height: 150px;
        padding: 20px;
    }
    .sirs-gallery-content h3 {
        font-size: 25px;
        white-space: normal;
    }
    .sirs-gallery-content p {
        font-size: 13px;
    }
    .sirs-gallery-content a {
        left: 20px;
        bottom: 17px;
    }
    .sirs-exp-navigation {
        margin-top: 18px;
    }
    .sirs-exp-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}


/* ==================================================
   GLOBAL SAIONEERS
================================================== */

.global-saioneers {
    position: relative;
    width: 100%;
    padding: 35px 5% 35px;
    overflow: hidden;
    background: #ffffff;
    color: #241b17;
}


/* ==================================================
   SUBTLE MAP DECORATION
================================================== */

.global-map {
    position: absolute;
    width: 330px;
    height: 230px;
    opacity: 0.12;
    pointer-events: none;
    background-image: radial-gradient( circle, #e94b1b 1.5px, transparent 1.8px);
    background-size: 10px 10px;
    mask-image: radial-gradient( ellipse, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient( ellipse, black 20%, transparent 72%);
}

.global-map-left {
    left: -80px;
    top: 10px;
    transform: rotate(-10deg);
}

.global-map-right {
    right: -70px;
    top: 20px;
    transform: rotate(10deg);
}


/* ==================================================
   HEADER
================================================== */

.global-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 48px;
}

.global-kicker {
    display: inline-block;
    color: #e94b1b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.global-title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 270px;
    margin: 12px auto 10px;
    gap: 12px;
}

.global-title-line>span {
    width: 95px;
    height: 1px;
    background: #e94b1b;
}

.global-shield {
    width: 28px;
    height: 32px;
    color: #e94b1b;
}

.global-shield svg {
    width: 100%;
    height: 100%;
}

.global-header h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1;
    font-weight: 400;
}

.global-header h2 span {
    color: #e94b1b;
}

.global-orange-line {
    width: 45px;
    height: 2px;
    margin: 18px auto;
    background: #e94b1b;
}

.global-header p {
    max-width: 690px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.65;
    color: #615852;
}


/* ==================================================
   CAROUSEL
================================================== */

.global-carousel {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    width: 100%;
}


/* ==================================================
   STUDENT CARD
================================================== */

.global-student {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #eadfd8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(50, 30, 20, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.global-student:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(50, 30, 20, 0.14);
}


/* ==================================================
   STUDENT IMAGE
================================================== */

.student-image {
    position: relative;
    width: 100%;
    height: 285px;
    overflow: hidden;
    background: #f2eee9;
}

.student-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.global-student:hover .student-image img {
    transform: scale(1.04);
}


/* ==================================================
   ACHIEVEMENT BADGE
================================================== */

.student-achievement {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: #e94b1b;
    color: #ffffff;
    font-size: 19px;
}


/* ==================================================
   STUDENT INFO
================================================== */

.student-info {
    position: relative;
    min-height: 195px;
    padding: 34px 15px 20px;
    text-align: center;
    background: #2b211d;
    color: #ffffff;
}


/* ==================================================
   ICON
================================================== */

.student-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    width: 55px;
    height: 55px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #e94b1b;
    border-radius: 50%;
    background: #ffffff;
    font-size: 21px;
    color: #e94b1b;
}


/* ==================================================
   NAME
================================================== */

.student-info h3 {
    margin: 20px 0 8px;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 600;
}


/* ==================================================
   COURSE
================================================== */

.student-course {
    min-height: 20px;
    color: #e94b1b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}


/* ==================================================
   DIVIDER
================================================== */

.student-divider {
    width: 28px;
    height: 2px;
    margin: 13px auto;
    background: #e94b1b;
}


/* ==================================================
   UNIVERSITY
================================================== */

.student-university {
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
}


/* ==================================================
   COUNTRY
================================================== */

.student-country {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.3;
    color: #ffffff;
}

.country-flag {
    display: block;
    flex: 0 0 auto;
    width: 18px;
    height: 12px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}


/* ==================================================
   ARROWS
================================================== */

.global-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 45px;
    height: 45px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e94b1b;
    border-radius: 50%;
    background: #ffffff;
    color: #e94b1b;
    font-size: 23px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.global-arrow:hover {
    background: #e94b1b;
    color: #ffffff;
}

.global-prev {
    left: -60px;
}

.global-next {
    right: -60px;
}


/* ==================================================
   PAGINATION
================================================== */

.global-pagination {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: min(100%, 800px);
    gap: 9px;
    row-gap: 8px;
    margin: 26px 0 35px;
    margin-left: auto;
    margin-right: auto;
}

.global-pagination span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd5ce;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.global-pagination span.active {
    width: 27px;
    border-radius: 20px;
    background: #e94b1b;
}


/* ==================================================
   STATISTICS BAR
================================================== */

.global-stats {
    position: relative;
    z-index: 3;
    width: 88%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #eadfd8;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(50, 30, 20, 0.04);
}

.global-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 92px;
    padding: 12px 20px;
    border-right: 1px solid #eadfd8;
}

.global-stat:last-child {
    border-right: none;
}


/* ==================================================
   STAT CIRCLE
================================================== */

.stat-circle {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1d8cd;
    border-radius: 50%;
    background: #fff8f4;
    color: #e94b1b;
    font-size: 22px;
}


/* ==================================================
   STAT TEXT
================================================== */

.global-stat strong {
    display: block;
    color: #e94b1b;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
}

.global-stat span {
    display: block;
    margin-top: 4px;
    color: #5e544e;
    font-size: 13px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1200px) {
    .global-saioneers {
        padding-left: 35px;
        padding-right: 35px;
    }
    .global-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .global-prev {
        left: -22px;
    }
    .global-next {
        right: -22px;
    }
}


/* ==================================================
   TABLET SMALL
================================================== */

@media (max-width: 800px) {
    .global-saioneers {
        padding: 65px 25px 50px;
    }
    .global-header {
        margin-bottom: 38px;
    }
    .global-header h2 {
        font-size: 50px;
        letter-spacing: -1.5px;
    }
    .global-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    .student-image {
        height: 300px;
    }
    .global-stats {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
    .global-stat:nth-child(2) {
        border-right: none;
    }
    .global-stat:nth-child(1),
    .global-stat:nth-child(2) {
        border-bottom: 1px solid #eadfd8;
    }
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 550px) {
    .global-saioneers {
        padding: 30px 20px 28px;
    }
    .global-map {
        display: none;
    }
    .global-header h2 {
        font-size: 39px;
        line-height: 1.05;
        letter-spacing: -1px;
    }
    .global-header p {
        font-size: 14px;
        line-height: 1.6;
    }
    .global-title-line {
        width: 210px;
    }
    .global-title-line>span {
        width: 65px;
    }
    .global-carousel {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .student-image {
        height: 245px;
    }
    .student-image img {
        object-fit: contain;
        object-position: center;
    }
    .student-info {
        min-height: 145px;
        padding: 28px 12px 16px;
    }
    .student-icon {
        top: -23px;
        width: 47px;
        height: 47px;
        font-size: 17px;
    }
    .student-info h3 {
        margin: 15px 0 7px;
        font-size: 17px;
    }
    .student-divider {
        margin: 10px auto;
    }
    .student-university {
        font-size: 11px;
        line-height: 1.35;
    }
    .global-pagination {
        gap: 6px;
        margin: 18px auto 22px;
        row-gap: 0;
    }
    .global-pagination span {
        width: 7px;
        height: 7px;
    }
    .global-pagination span.active {
        width: 20px;
    }
    .global-arrow {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }
    .global-prev {
        left: -5px;
    }
    .global-next {
        right: -5px;
    }
    .global-stats {
        grid-template-columns: 1fr;
    }
    .global-stat {
        min-height: 80px;
        justify-content: flex-start;
        padding-left: 25px;
        border-right: none;
        border-bottom: 1px solid #eadfd8;
    }
    .global-stat:last-child {
        border-bottom: none;
    }
}

.sirs-testimonials {
    width: 100%;
    padding: 40px 3% 40px;
    background: #ffffff;
    overflow: hidden;
    color: #251b17;
}

.sirs-testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.sirs-google-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 14px;
}

.sirs-google-icon svg {
    width: 100%;
    height: 100%;
}

.sirs-review-kicker {
    color: #e94b1b;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sirs-testimonials-header h2 {
    margin: 0;
    font-size: 52px;
    line-height: 1.05;
    font-weight: 400;
}

.sirs-testimonials-header h2 span {
    color: #e94b1b;
}

.sirs-rating {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

.sirs-rating strong {
    font-size: 25px;
}

.sirs-stars {
    color: #f4b400;
    font-size: 17px;
    letter-spacing: 2px;
}

.sirs-rating small {
    color: #77716c;
    font-size: 16px;
}


/* =========================================
   SLIDER
========================================= */

.sirs-review-slider {
    position: relative;
    width: 100%;
    padding: 0 45px;
}

.sirs-review-window {
    width: 100%;
    overflow: hidden;
}

.sirs-review-track {
    display: flex;
    gap: 20px;
    width: max-content;
    transition: transform 0.6s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

@keyframes sirs-review-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(var(--review-loop-distance), 0, 0);
    }
}

.sirs-review-track.is-continuous {
    animation: sirs-review-marquee var(--review-duration, 48s) linear infinite;
    transition: none;
}


/* =========================================
   CARD
========================================= */

.sirs-review-card {
    width: calc( (min(90vw, 1500px) - 40px) / 3);
    min-width: 360px;
    min-height: 295px;
    padding: 25px;
    border: 1px solid #e8dfd9;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(38, 25, 19, 0.055);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sirs-review-card:hover {
    transform: translateY(-6px);
    border-color: #efc5b5;
    box-shadow: 0 18px 45px rgba(38, 25, 19, 0.10);
}


/* =========================================
   CARD TOP
========================================= */

.sirs-review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 21px;
}

.sirs-review-avatar {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f7e7df;
    color: #e94b1b;
    font-size: 17px;
    font-weight: 700;
}

.sirs-review-user {
    min-width: 0;
}

.sirs-review-user h3 {
    margin: 0 0 3px;
    font-size: 20px;
    font-weight: 600;
    color: #2c211c;
}

.sirs-review-user span {
    display: block;
    color: #89817c;
    font-size: 11px;
}

.sirs-card-stars {
    margin-top: 5px;
    color: #f4b400;
    font-size: 12px;
    letter-spacing: 1px;
}

.sirs-small-google {
    margin-left: auto;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #4285f4;
}


/* =========================================
   REVIEW TEXT
========================================= */

.sirs-review-card p {
    flex: 1;
    margin: 0;
    color: #504943;
    font-size: 16px;
    line-height: 1.72;
}


/* =========================================
   REVIEW SOURCE
========================================= */

.sirs-review-source {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid #eee8e4;
    color: #9a918b;
    font-size: 15px;
}


/* =========================================
   BOTTOM
========================================= */

.sirs-review-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 28px;
}

.sirs-review-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.sirs-review-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ddd5d0;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
}

.sirs-review-dots button.active {
    width: 25px;
    border-radius: 10px;
    background: #e94b1b;
}


/* =========================================
   READ REVIEWS
========================================= */

.sirs-read-reviews {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #30241f;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.sirs-read-reviews span {
    width: 31px;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e94b1b;
    border-radius: 50%;
    color: #e94b1b;
    transition: 0.3s ease;
}

.sirs-read-reviews:hover span {
    background: #e94b1b;
    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .sirs-testimonials {
        padding: 75px 30px 65px;
    }
    .sirs-review-slider {
        padding: 0 38px;
    }
    .sirs-review-card {
        width: calc( (100vw - 60px - 76px - 20px) / 2);
        min-width: 320px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {
    .sirs-testimonials {
        padding: 30px 15px 55px;
    }
    .sirs-testimonials-header {
        margin-bottom: 35px;
    }
    .sirs-google-icon {
        width: 37px;
        height: 37px;
    }
    .sirs-review-kicker {
        font-size: 11px;
    }
    .sirs-testimonials-header h2 {
        font-size: 39px;
        letter-spacing: -1px;
    }
    .sirs-rating {
        flex-wrap: wrap;
    }
    .sirs-rating small {
        width: 100%;
    }
    .sirs-review-slider {
        padding: 0;
    }
    .sirs-review-card {
        width: calc(100vw - 30px);
        min-width: calc(100vw - 30px);
        min-height: 330px;
        padding: 22px 20px;
    }
    .sirs-review-card p {
        font-size: 14px;
    }
    .sirs-review-bottom {
        margin-top: 75px;
    }
    .sirs-read-reviews {
        display: none;
    }
}


/* =========================================
   SIRS FOOTER
   NO EXTERNAL FONT
========================================= */

.sirs-footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f7f5f1;
    color: #452827;
    overflow: hidden;
}


/* =========================================
   TOP CONTACT SECTION
========================================= */

.footer-contact {
    width: 100%;
    max-width: none;
    min-height: 1000px;
    margin: 0 auto;
    padding: 48px max(5%, calc(50% - 855px)) 42px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 418px) minmax(0, 500px) minmax(0, 1fr);
    column-gap: 0;
    align-items: start;
    background-color: #9ccfe8;
    background-image: url("../assets/images/footer-bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 2;
    box-shadow: inset 0 -18px 32px rgba(47, 25, 25, 0.16);
}

.footer-mobile-visual {
    display: none;
}


/* =========================================
   BRAND SECTION
========================================= */

.footer-brand {
    min-width: 0;
}

.brand-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.brand-logos img {
    display: block;
    width: auto;
    height: auto;
    width: 270px;
    max-width: 100%;
    object-fit: contain;
}


/* Brand Description */

.footer-brand p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: #4e4544;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.social-icons {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 28px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: 1px solid rgba(69, 40, 39, 0.45);
    border-radius: 50%;
    color: #452827;
    background: transparent;
    text-decoration: none;
    font-size: 0;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-icons a::before {
    font-family: "Font Awesome 6 Brands";
    font-size: 17px;
    font-weight: 400;
}

.social-icons a:nth-child(1)::before {
    content: "\f39e";
}

.social-icons a:nth-child(2)::before {
    content: "\f16d";
}

.social-icons a:nth-child(3)::before {
    content: "\f167";
}

.social-icons a:hover {
    background: #452827;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-navigation .footer-links-title {
    color: #452827;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 30px;
}

.footer-section-links {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
}

.footer-section-links a {
    color: #514746;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-section-links a:hover {
    color: var(--sirs-orange);
    transform: translateX(3px);
}


/* =========================================
   CONTACT COLUMNS
========================================= */

.footer-column {
    min-width: 0;
}

.city-office {
    padding-left: 75px;
}

.campus-address {
    border-left: 1px solid #d9d1cd;
    padding-left: 75px;
}

.footer-navigation {
    border-left: 1px solid #d9d1cd;
    padding-left: 55px;
}

.footer-column h4 {
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: 700;
    color: #452827;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 23px;
}

.contact-icon {
    width: 20px;
    min-width: 20px;
    display: block;
    color: #452827;
    font-size: 0;
    line-height: 1.25;
    font-weight: 600;
}

.contact-icon::before {
    font-family: "Font Awesome 6 Free";
    font-size: 20px;
    font-weight: 900;
}

.contact-item:nth-of-type(1) .contact-icon::before {
    content: "\f3c5";
}

.contact-item:nth-of-type(2) .contact-icon::before {
    content: "\f095";
}

.contact-item:nth-of-type(3) .contact-icon::before {
    content: "\f0e0";
}

.contact-item p {
    margin: 0;
    color: #514746;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}


/* =========================================
   BOTTOM FOOTER BAR
========================================= */

.footer-bottom {
    width: 100%;
    min-height: 76px;
    margin-top: -76px;
    padding: 18px 5%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(47, 25, 25, 0.88) 0%, rgba(47, 25, 25, 0.58) 50%, rgba(47, 25, 25, 0.88) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    color: #ffffff;
    position: relative;
    z-index: 3;
}

.footer-bottom> :not(.footer-credit) {
    display: none;
}

.footer-credit {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.5;
    text-align: center;
}


/* Bottom Text */

.copyright,
.bottom-link,
.admission-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
}


/* Bottom Center Links */

.bottom-link {
    text-align: center;
}


/* Admission Text */

.admission-text {
    text-align: right;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {
    .footer-contact {
        width: 100%;
        max-width: none;
        grid-template-columns: 1fr 1fr;
        column-gap: 50px;
        row-gap: 55px;
        padding: 65px 45px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .city-office,
    .campus-address,
    .footer-navigation {
        padding-left: 0;
    }
    .campus-address,
    .footer-navigation {
        border-left: 0;
    }
    .footer-navigation {
        grid-column: 1 / -1;
    }
    .footer-section-links {
        grid-template-columns: repeat(3, max-content);
        gap: 12px 30px;
    }
    .footer-bottom {
        padding-left: 5%;
        padding-right: 5%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
    .sirs-footer {
        background-color: #9ccfe8;
        background-image: url("../assets/images/footer-bg-mobile.png");
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .footer-contact {
        width: 100%;
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr;
        padding: 42px 24px 38px;
        background-color: transparent;
        background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.82) 48%, rgba(255, 255, 255, 0.64) 100%);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        box-shadow: none;
        text-align: center;
    }
    /* Brand */
    .footer-brand {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
        padding-bottom: 34px;
        border-bottom: 1px solid rgba(69, 40, 39, 0.14);
    }
    .brand-logos {
        justify-content: center;
    }
    .footer-brand p {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-navigation {
        display: none;
    }
    /* Columns */
    .footer-column {
        margin-bottom: 0;
        padding: 32px 0;
        border-bottom: 1px solid rgba(69, 40, 39, 0.14);
    }
    .footer-column:last-child {
        margin-bottom: 0;
        border-bottom: 0;
        padding-bottom: 0;
    }
    /* Headings */
    .footer-column h4 {
        margin-bottom: 22px;
        font-size: 15px;
        letter-spacing: 1.8px;
    }
    .contact-item {
        align-items: flex-start;
        justify-content: center;
        text-align: left;
    }
    /* Contact */
    .contact-item {
        gap: 12px;
        margin-bottom: 20px;
    }
    .contact-item p {
        color: #382522;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.7;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
    }
    .contact-icon {
        color: #382522;
    }
    .footer-brand p {
        color: #382522;
        font-size: 15px;
        font-weight: 500;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
    }
    .footer-mobile-visual {
        display: none;
    }
    /* Bottom */
    .footer-bottom {
        min-height: 64px;
        margin-top: -64px;
        padding: 15px 22px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .footer-credit {
        font-size: 15px;
        line-height: 1.45;
    }
    .copyright,
    .bottom-link,
    .admission-text {
        text-align: center;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 450px) {
    .footer-contact {
        padding: 38px 22px 34px;
    }
    /* Logos */
    .brand-logos {
        gap: 12px;
    }
    .brand-logos img {
        width: 180px;
        max-width: 100%;
        max-height: none;
    }
    /* Description */
    .footer-brand p {
        font-size: 14px;
        line-height: 1.7;
    }
    /* Social */
    .social-icons {
        gap: 10px;
    }
    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 0;
    }
    /* Contact */
    .contact-item {
        gap: 10px;
    }
    .contact-icon {
        width: 18px;
        min-width: 18px;
        font-size: 0;
    }
    .contact-item p {
        font-size: 13px;
    }
    /* Bottom */
    .footer-bottom {
        padding: 14px 18px;
        gap: 14px;
    }
    .copyright,
    .bottom-link,
    .admission-text {
        font-size: 11px;
    }
}


/* =========================================
   EXTRA WIDE SCREENS
========================================= */

@media (min-width: 1600px) {
    .footer-contact {
        max-width: none;
        padding-top: 48px;
        padding-bottom: 42px;
    }
}

/* =========================================
   LAPTOP / COMPACT DESKTOP STABILITY
   Keep the desktop composition inside the viewport between tablet and large desktop.
========================================= */

@media (min-width: 961px) and (max-width: 1599px) {
    .nav-wrap {
        height: 100px;
        width: calc(100% - 64px);
    }

    .brand-logo {
        height: 78px;
        width: clamp(260px, 20vw, 320px);
    }

    .desktop-nav {
        display: flex;
        gap: clamp(14px, 1.55vw, 24px);
    }

    .desktop-nav a {
        font-size: clamp(11px, 0.92vw, 14px);
        white-space: nowrap;
    }

    .nav-phone {
        display: inline-flex;
    }

    .menu-toggle,
    .mobile-nav {
        display: none;
    }

    .hero {
        min-height: clamp(760px, 62vw, 940px);
    }

    .hero-inner {
        align-items: center;
        display: grid;
        gap: clamp(30px, 4vw, 80px);
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
        justify-content: initial;
        min-height: clamp(760px, 62vw, 940px);
        padding-bottom: 58px;
        padding-top: 132px;
        width: calc(100% - 64px);
    }

    .hero-copy {
        grid-column: 2;
        justify-self: end;
        margin-left: 0;
        max-width: 650px;
        min-width: 0;
        padding-right: 48px;
        text-align: right;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-section-thumb {
        bottom: clamp(26px, 3vw, 60px);
        left: 0;
        max-width: none;
        width: min(52vw, 920px);
    }

    .hero h2 {
        font-size: clamp(44px, 4.7vw, 68px);
        line-height: 1.12;
    }

    .hero-description {
        font-size: clamp(15px, 1.35vw, 17px);
        margin-left: auto;
        max-width: 590px;
    }

    .sirs-gallery-content {
        min-height: 190px;
    }

    .sirs-gallery-content h3 {
        font-size: clamp(20px, 1.8vw, 24px);
        white-space: normal;
    }

    .sirs-gallery-content p {
        font-size: 14px;
    }

    .whatsapp-float {
        bottom: 18px;
        font-size: 13px;
        padding: 10px 14px;
        right: 18px;
    }
}

/* The desktop navigation fits cleanly down to typical 13-inch laptop widths. */
@media (min-width: 961px) and (max-width: 1100px) {
    .nav-wrap {
        width: calc(100% - 48px);
    }

    .brand-logo {
        width: 250px;
    }

    .desktop-nav {
        gap: 11px;
        margin-right: 12px;
    }

    .desktop-nav a {
        font-size: 10px;
    }

    .nav-actions {
        gap: 12px;
    }

    .nav-phone span {
        display: inline;
    }

    .nav-actions .btn-small {
        font-size: 12px;
        min-height: 42px;
        padding-inline: 15px;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        width: calc(100% - 48px);
    }

    .hero-section-thumb {
        width: min(47vw, 520px);
    }

    .hero h2 {
        font-size: clamp(42px, 4.3vw, 46px);
    }

    .sirs-why-container {
        gap: 50px;
        grid-template-columns: 1fr;
        padding-left: 6%;
        padding-right: 6%;
    }

    .sirs-why-left {
        min-height: 520px;
    }

    .sirs-highlight-container {
        gap: 25px;
        grid-template-columns: repeat(2, 1fr);
        padding-left: 6%;
        padding-right: 6%;
    }

    .sirs-highlight,
    .sirs-highlight:first-child {
        padding: 15px 20px;
    }

    .sirs-highlight:nth-child(1),
    .sirs-highlight:nth-child(3) {
        border-right: 1px solid #e5e5e5;
    }
}

/* This range is tablet landscape: use the menu instead of squeezing links together. */
@media (min-width: 821px) and (max-width: 960px) {
    .nav-wrap {
        height: 92px;
        width: calc(100% - 48px);
    }

    .brand-logo {
        height: 72px;
        width: 240px;
    }

    .desktop-nav,
    .nav-phone {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;
        min-height: calc(100vh - 92px);
        top: 92px;
    }

    .hero {
        min-height: 730px;
    }

    .hero-inner {
        align-items: center;
        display: grid;
        gap: 28px;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
        min-height: 730px;
        padding: 122px 0 50px;
        width: calc(100% - 48px);
    }

    .hero-copy {
        grid-column: 2;
        margin-left: 0;
        min-width: 0;
        padding-right: 40px;
        text-align: right;
    }

    .hero-section-thumb {
        bottom: 28px;
        left: 0;
        transform: none;
        width: min(52vw, 510px);
    }

    .hero h2 {
        font-size: clamp(42px, 5.4vw, 52px);
        line-height: 1.1;
    }

    .hero-description {
        font-size: 15px;
        margin-left: auto;
    }
}

/* Prevent the four footer columns from being cropped on 13- and 14-inch laptops. */
@media (min-width: 1101px) and (max-width: 1599px) {
    .footer-contact {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(145px, 0.55fr);
        padding-left: clamp(40px, 5vw, 80px);
        padding-right: clamp(40px, 5vw, 80px);
    }

    .city-office,
    .campus-address {
        padding-left: clamp(30px, 3.8vw, 52px);
    }

    .footer-navigation {
        padding-left: clamp(24px, 3vw, 44px);
    }

    .footer-navigation .footer-links-title {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .footer-section-links {
        gap: 12px;
    }
}

/* About and Why SIRS need more breathing room on 13-inch laptop screens. */
@media (min-width: 961px) and (max-width: 1366px) {
    .about-school {
        padding: 62px 0 54px;
    }

    .about-container {
        grid-template-columns: 29% 24% 47%;
        padding-left: 4.5%;
        padding-right: 4.5%;
    }

    .about-left {
        padding-right: 20px;
    }

    .about-left h2 {
        font-size: clamp(38px, 3.25vw, 45px);
    }

    .about-image-wrap {
        height: 510px;
        padding: 0 8px;
    }

    .about-right {
        padding-left: 16px;
    }

    .about-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .about-card {
        min-height: 245px;
        padding: 23px 16px 19px;
    }

    .card-icon {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .about-card h4 {
        font-size: 18px;
        margin-bottom: 9px;
    }

    .about-card p {
        font-size: 13px;
        line-height: 1.48;
    }

    .sirs-why-section {
        padding-top: 58px;
    }

    .sirs-why-container {
        gap: clamp(32px, 3.5vw, 52px);
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        padding-left: 5%;
        padding-right: 5%;
    }

    .sirs-why-left {
        min-height: 735px;
        padding-top: 0;
    }

    .sirs-why-left h2 {
        font-size: clamp(41px, 3.8vw, 50px);
        line-height: 1.08;
        margin-top: 23px;
    }

    .sirs-why-text {
        font-size: 15px;
        line-height: 1.68;
        max-width: 430px;
    }

    .sirs-school-sketch {
        bottom: 0;
        left: 0;
        max-width: 100%;
        opacity: 0.66;
        transform: none;
        width: 100%;
    }

    .sirs-why-right {
        align-self: start;
        gap: 14px;
    }

    .sirs-feature-card {
        min-height: 300px;
        padding: 22px 18px 20px;
    }

    .sirs-feature-icon {
        width: 84px;
        height: 84px;
        font-size: 32px;
        margin-bottom: 10px;
    }

    .sirs-feature-card h3 {
        font-size: 20px;
    }

    .sirs-feature-card p {
        font-size: 14px;
        line-height: 1.52;
    }
}

/* Laptop: 13-inch / compact Windows screens. */
@media (min-width: 1101px) and (max-width: 1366px) {
    .hero {
        min-height: 780px;
    }

    .hero-inner {
        gap: clamp(36px, 4vw, 58px);
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        min-height: 780px;
        padding-top: 128px;
        width: calc(100% - 64px);
    }

    .hero-copy {
        max-width: 610px;
        padding-right: 32px;
    }

    .hero-section-thumb {
        width: min(50vw, 650px);
    }

    .hero h2 {
        font-size: clamp(48px, 4.6vw, 62px);
    }
}

/* MacBook widths: a little more space than compact laptops, with a distinct hero scale. */
@media (min-width: 1367px) and (max-width: 1599px) {
    .hero {
        min-height: 860px;
    }

    .hero-inner {
        gap: clamp(56px, 5vw, 82px);
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
        min-height: 860px;
        padding-top: 140px;
        width: calc(100% - 96px);
    }

    .hero-copy {
        max-width: 670px;
        padding-right: 24px;
    }

    .hero-section-thumb {
        width: min(51vw, 820px);
    }

    .hero h2 {
        font-size: clamp(58px, 4.8vw, 70px);
        line-height: 1.1;
    }
}

/* Desktop: lock the heading to the right hero column so it never inherits laptop offsets. */
@media (min-width: 1600px) {
    .hero {
        min-height: 940px;
    }

    .hero-inner {
        align-items: center;
        display: grid;
        gap: clamp(72px, 7vw, 150px);
        grid-template-columns: minmax(0, 1.03fr) minmax(620px, 0.97fr);
        justify-content: initial;
        min-height: 940px;
        padding-bottom: 72px;
        padding-top: 140px;
        width: min(1760px, calc(100% - 160px));
    }

    .hero-copy {
        box-sizing: border-box;
        grid-column: 2;
        justify-self: end;
        margin-left: 0;
        max-width: 680px;
        padding-right: 0;
        text-align: right;
        width: 100%;
    }

    .hero-section-thumb {
        bottom: 58px;
        left: 0;
        width: min(50vw, 960px);
    }

    .hero h2 {
        font-size: clamp(66px, 4.1vw, 78px);
        line-height: 1.1;
    }

    .hero-description {
        margin-left: auto;
        max-width: 650px;
    }
}
