:root {
    --bg: #fffdf8;
    --text: #171717;
    --muted: #68635d;
    --line: #ece2d4;
    --brand: #ef5a24;
    --brand-dark: #c94213;
    --gold: #f5b21b;
    --dark: #101010;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
}

.top-strip {
    background: var(--dark);
    color: var(--white);
    font-size: 0.92rem;
}

.top-strip-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-strip a {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--white);
    margin-left: 10px;
    font-weight: 700;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, background 0.2s ease;
}

.top-strip a:hover {
    transform: translateY(-2px);
    background: var(--white);
}

.social-links {
    display: flex;
    align-items: center;
}

.facebook-icon {
    color: #1877f2 !important;
}

.instagram-icon {
    color: #e4405f !important;
}

.youtube-icon {
    color: #ff0000 !important;
}

.maps-icon {
    color: #34a853 !important;
}

.excellence-marquee {
    width: min(360px, 48vw);
    overflow: hidden;
    white-space: nowrap;
    color: var(--gold);
    font-weight: 900;
}

.excellence-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 9s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 253, 248, 0.96);
    border-bottom: 1px solid var(--line);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.24rem, 2vw, 1.75rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: 0.8px;
    text-shadow: 0 1px 0 #ffffff, 0 8px 22px rgba(239, 90, 36, 0.14);
    min-width: 0;
}

.brand span {
    white-space: nowrap;
}

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.main-nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.main-nav a {
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 700;
    color: var(--dark);
}

.main-nav a:hover {
    background: #fff0d0;
}

.main-nav a.active {
    background: var(--dark);
    color: var(--white);
}

.main-nav a.active:hover {
    background: var(--brand-dark);
    color: var(--white);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--dark);
    background: var(--white);
    border-radius: 6px;
    padding: 9px;
    width: 44px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--dark);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.hero {
    background: linear-gradient(135deg, #ffffff 0%, #fff7e8 52%, #fef0d8 100%);
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
    align-items: center;
    gap: 48px;
    padding: 54px 0 70px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--brand-dark);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.82rem;
}

h1, h2, h3, p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 5.4vw, 5.2rem);
    line-height: 0.98;
}

h2 {
    margin-bottom: 14px;
    font-size: clamp(1.65rem, 3vw, 2.8rem);
    line-height: 1.08;
}

h3 {
    margin-bottom: 10px;
}

p {
    color: var(--muted);
    line-height: 1.72;
}

.lead {
    max-width: 720px;
    font-size: 1.15rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0 20px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
}

.btn.primary {
    background: var(--dark);
    color: var(--white);
}

.btn.secondary {
    background: var(--white);
    border-color: var(--dark);
    color: var(--dark);
}

.hero-card, .card, .contact-card, .form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
}

.hero-card {
    padding: 34px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(16, 16, 16, 0.09);
}

.hero-card img {
    width: min(240px, 70vw);
    height: auto;
    border-radius: 50%;
}

.section {
    padding: 82px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 30px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card span {
    display: block;
    width: 42px;
    height: 6px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
}

.dark-band {
    padding: 82px 0;
    background: var(--dark);
    color: var(--white);
}

.dark-band p {
    color: #ded8cf;
}

.dark-band .eyebrow {
    color: var(--gold);
}

.brand-section {
    padding: 76px 0;
    background: #fff8eb;
    border-top: 1px solid var(--line);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.brand-tile {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    color: var(--dark);
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(16, 16, 16, 0.04);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 44px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-weight: 700;
}

.page-title {
    padding: 70px 0 58px;
    background: linear-gradient(135deg, #ffffff, #fff0d0);
    border-bottom: 1px solid var(--line);
}

.workflow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    counter-reset: step;
}

.workflow li {
    list-style: none;
    background: var(--white);
    border-radius: 8px;
    padding: 18px;
    color: #35302b;
    font-weight: 800;
}

.workflow li:before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    display: block;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    align-items: start;
}

.contact-card strong, .contact-card a {
    color: var(--brand-dark);
}

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

label {
    display: grid;
    gap: 7px;
    color: #2b2926;
    font-weight: 800;
}

input, select, textarea {
    width: 100%;
    border: 1px solid #ded1bf;
    border-radius: 6px;
    padding: 12px;
    font: inherit;
    color: var(--text);
    background: var(--white);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

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

.form-card .btn {
    margin-top: 16px;
}

.form-message {
    padding: 12px;
    background: #fff0d0;
    border-left: 4px solid var(--brand);
    color: var(--dark);
}

.conditional-field.is-hidden,
.application-section.is-hidden {
    display: none;
}

.job-tools {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.5fr);
    gap: 14px;
    margin-bottom: 12px;
}

.job-count {
    font-weight: 800;
    color: var(--dark);
}

.job-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-height: 980px;
    overflow: auto;
    padding-right: 8px;
}

.job-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 20px;
    min-height: 138px;
}

.job-card.is-hidden {
    display: none;
}

.job-card h3 {
    font-size: 1.05rem;
}

.job-category {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff0d0;
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.internship-cards {
    grid-template-columns: minmax(280px, 520px);
    justify-content: center;
}

.internship-card {
    text-align: center;
}

.internship-card span {
    margin-left: auto;
    margin-right: auto;
}

.site-footer {
    padding: 30px 0 0;
    background: var(--dark);
    color: var(--white);
}

.site-footer p, .site-footer a {
    margin-bottom: 4px;
    color: #d6d0c8;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 999px;
    background: #25d366;
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(16, 16, 16, 0.22);
}

.whatsapp-float:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.whatsapp-float i {
    font-size: 1.25rem;
}

.copyright-bar {
    margin-top: 24px;
    padding: 14px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    color: #d6d0c8;
    font-size: 0.92rem;
    text-align: center;
}

.copyright-inner a {
    color: var(--gold);
    font-weight: 800;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 24px;
}

@media (max-width: 820px) {
    .nav {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 14px 0;
    }

    .brand {
        flex: 1 1 auto;
        gap: 8px;
        font-size: clamp(0.96rem, 4.3vw, 1.18rem);
        letter-spacing: 0.2px;
    }

    .brand img {
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
    }

    .brand span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
        width: 42px;
        height: 40px;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        position: absolute;
        left: 0;
        top: 100%;
        padding: 14px 16px 18px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 30px rgba(16, 16, 16, 0.08);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 12px;
        border-bottom: 1px solid #f0e6d8;
    }

    .top-strip-inner {
        justify-content: center;
        padding: 6px 0;
    }

    .excellence-marquee {
        display: none;
    }

    .top-strip a {
        margin: 0 5px;
    }

    .hero-grid, .split, .contact-grid, .footer-grid, .cards, .workflow, .form-grid, .job-tools, .job-list, .brand-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 38px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: 12px;
        min-height: 44px;
        padding: 0 13px;
        font-size: 0.92rem;
    }
}
