:root {
    --primary: #669966;
    --primary-hover: #4f7f4f;
    --secondary: #cc9966;
    --secondary-hover: #b07f4f;
    --accent: #3f5d7d;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #fff;
    --footer-bg: #f8f8f8;
    --border-color: #e5e5e5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Instrument Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Varela Round", sans-serif;
}

.title-highlight {
    color: #d4af37;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.crr-hero {
    height: 70vh;
    min-height: 520px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    padding: 100px 20px;
    overflow: hidden;
}

.crr-hero-inner {
    max-width: 1400px;
    margin: auto;
    padding: 60px 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.crr-hero-content {
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    animation: contentFade 1s ease forwards;
    animation-delay: 0.3s;
}

.crr-hero-content h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 20px;
}

.crr-hero-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 520px;
}

.crr-hero-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.25s;
}

.crr-hero-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.crr-hero-images {
    position: relative;
    width: 100%;
    height: 420px;
}

.crr-hero-image {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: scale(0.6);
    opacity: 0;
    animation: imageGrow 0.9s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
}

.crr-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crr-hero-image-sm {
    width: 170px;
    height: 170px;
    top: 0;
    left: 18%;
    animation-delay: 0.5s;
}

.crr-hero-image-lg {
    width: 320px;
    height: 320px;
    bottom: 0;
    right: 0;
    animation-delay: 0.75s;
}

@keyframes imageGrow {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes contentFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .crr-hero {
        height: auto;
        min-height: unset;
        padding: 80px 0;
    }

    .crr-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .crr-hero-content p {
        margin-inline: auto;
    }

    .crr-hero-images {
        height: 300px;
        margin-top: 40px;
    }

    .crr-hero-image-sm {
        left: 10%;
    }

    .crr-hero-image-lg {
        right: 10%;
    }
}

@media (max-width: 500px) {
    .crr-hero-images {
        height: 260px;
    }

    .crr-hero-image-sm {
        width: 140px;
        height: 140px;
    }

    .crr-hero-image-lg {
        width: 240px;
        height: 240px;
    }
}

.crr-perk-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.crr-perk-header {
    max-width: 720px;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.crr-perk-header.crr-perk-animate {
    opacity: 1;
    transform: translateY(0);
}

.crr-perk-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.crr-perk-header p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.crr-perk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.crr-perk-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.crr-perk-card.crr-perk-animate {
    opacity: 1;
    transform: translateY(0);
}

.crr-perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.crr-perk-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.crr-perk-card:hover .crr-perk-image {
    transform: scale(1.05);
}

.crr-perk-content {
    padding: 1.75rem 1.75rem 2rem;
}

.crr-perk-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 600;
}

.crr-perk-content ul {
    margin: 0;
    padding-left: 1.3rem;
    color: #6b7280;
}

.crr-perk-content li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.crr-perk-content li:last-child {
    margin-bottom: 0;
}

.crr-perk-cta {
    margin-top: 5rem;
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-hover) 100%
    );
    color: #ffffff;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.crr-perk-cta.crr-perk-animate {
    opacity: 1;
    transform: translateY(0);
}

.crr-perk-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.crr-perk-cta p {
    max-width: 650px;
    margin: 0 auto 2rem;
    opacity: 0.96;
    font-size: 1.05rem;
    line-height: 1.7;
}

.crr-perk-cta-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--secondary);
    color: var(--bg-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.crr-perk-cta-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
    .crr-perk-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .crr-perk-section {
        padding: 4rem 1.25rem;
    }

    .crr-perk-header {
        margin-bottom: 3rem;
        text-align: center;
    }

    .crr-perk-header h2 {
        font-size: 2rem;
    }

    .crr-perk-header p {
        font-size: 1rem;
    }

    .crr-perk-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .crr-perk-image {
        height: 200px;
    }

    .crr-perk-content {
        padding: 1.5rem;
    }

    .crr-perk-content h3 {
        font-size: 1.2rem;
    }

    .crr-perk-cta {
        padding: 2.5rem 1.5rem;
        margin-top: 4rem;
    }

    .crr-perk-cta h3 {
        font-size: 1.6rem;
    }

    .crr-perk-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .crr-perk-section {
        padding: 3rem 1rem;
    }

    .crr-perk-header h2 {
        font-size: 1.75rem;
    }

    .crr-perk-image {
        height: 180px;
    }

    .crr-perk-content {
        padding: 1.25rem;
    }

    .crr-perk-content h3 {
        font-size: 1.1rem;
    }

    .crr-perk-content li {
        font-size: 0.9rem;
    }

    .crr-perk-cta {
        padding: 2rem 1.25rem;
    }

    .crr-perk-cta h3 {
        font-size: 1.4rem;
    }

    .crr-perk-cta p {
        font-size: 0.95rem;
    }

    .crr-perk-cta-btn {
        padding: 0.85rem 1.75rem;
        font-size: 0.95rem;
    }
}

.crr-gal-section {
    padding: 100px 0;
}

.crr-gal-section-title {
    max-width: 1400px;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px auto;
    padding: 0 20px;
    text-align: left;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.title-highlight {
    color: var(--secondary);
}

.crr-gal {
    width: 100vw;
    height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.crr-gal-container {
    display: flex;
    gap: 20px;
    animation: scrollLeft 45s linear infinite;
    will-change: transform;
}

.crr-gal-item {
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.crr-gal-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.crr-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crr-gal-item:nth-child(1),
.crr-gal-item:nth-child(9),
.crr-gal-item:nth-child(17) {
    width: 280px;
    height: 350px;
}

.crr-gal-item:nth-child(2),
.crr-gal-item:nth-child(10),
.crr-gal-item:nth-child(18) {
    width: 350px;
    height: 350px;
}

.crr-gal-item:nth-child(3),
.crr-gal-item:nth-child(11),
.crr-gal-item:nth-child(19) {
    width: 400px;
    height: 350px;
}

.crr-gal-item:nth-child(4),
.crr-gal-item:nth-child(12),
.crr-gal-item:nth-child(20) {
    width: 320px;
    height: 350px;
}

.crr-gal-item:nth-child(5),
.crr-gal-item:nth-child(13),
.crr-gal-item:nth-child(21) {
    width: 380px;
    height: 350px;
}

.crr-gal-item:nth-child(6),
.crr-gal-item:nth-child(14),
.crr-gal-item:nth-child(22) {
    width: 340px;
    height: 350px;
}

.crr-gal-item:nth-child(7),
.crr-gal-item:nth-child(15),
.crr-gal-item:nth-child(23) {
    width: 290px;
    height: 350px;
}

.crr-gal-item:nth-child(8),
.crr-gal-item:nth-child(16),
.crr-gal-item:nth-child(24) {
    width: 360px;
    height: 350px;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.crr-gal:hover .crr-gal-container {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .crr-gal-section {
        padding: 40px 0 0;
    }

    .crr-gal-section-title {
        font-size: 2.2rem;
        text-align: center;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .crr-gal {
        height: 350px;
    }

    .crr-gal-item:nth-child(1),
    .crr-gal-item:nth-child(9),
    .crr-gal-item:nth-child(17) {
        width: 220px;
        height: 280px;
    }

    .crr-gal-item:nth-child(2),
    .crr-gal-item:nth-child(10),
    .crr-gal-item:nth-child(18) {
        width: 280px;
        height: 280px;
    }

    .crr-gal-item:nth-child(3),
    .crr-gal-item:nth-child(11),
    .crr-gal-item:nth-child(19) {
        width: 320px;
        height: 280px;
    }

    .crr-gal-item:nth-child(4),
    .crr-gal-item:nth-child(12),
    .crr-gal-item:nth-child(20) {
        width: 260px;
        height: 280px;
    }

    .crr-gal-item:nth-child(5),
    .crr-gal-item:nth-child(13),
    .crr-gal-item:nth-child(21) {
        width: 300px;
        height: 280px;
    }

    .crr-gal-item:nth-child(6),
    .crr-gal-item:nth-child(14),
    .crr-gal-item:nth-child(22) {
        width: 270px;
        height: 280px;
    }

    .crr-gal-item:nth-child(7),
    .crr-gal-item:nth-child(15),
    .crr-gal-item:nth-child(23) {
        width: 230px;
        height: 280px;
    }

    .crr-gal-item:nth-child(8),
    .crr-gal-item:nth-child(16),
    .crr-gal-item:nth-child(24) {
        width: 290px;
        height: 280px;
    }
}

.crr-open-section {
    background: var(--footer-bg);
    padding: 80px 20px 100px;
}

.crr-open-container {
    max-width: 1200px;
    margin: 0 auto;
}

.crr-open-header {
    text-align: left;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.crr-open-header.crr-open-animate {
    opacity: 1;
    transform: translateY(0);
}

.crr-open-title {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.crr-open-filters {
    padding: 25px 0;
    border-radius: 12px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.crr-open-filters.crr-open-animate {
    opacity: 1;
    transform: translateY(0);
}

.crr-open-filters-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.crr-open-filter-group {
    display: flex;
    flex-direction: column;
}

.crr-open-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.crr-open-filter-input,
.crr-open-filter-select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: "Instrument Sans", sans-serif;
    transition: border-color 0.3s ease;
}

.crr-open-filter-input:focus,
.crr-open-filter-select:focus {
    outline: none;
    border-color: var(--primary);
}

.crr-open-count {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.crr-open-count.crr-open-animate {
    opacity: 1;
    transform: translateY(0);
}

.crr-open-jobs {
    padding: 40px 0;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.crr-open-jobs.crr-open-animate {
    opacity: 1;
    transform: translateY(0);
}

.crr-open-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.crr-open-department {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.crr-open-department.crr-open-animate {
    opacity: 1;
    transform: translateY(0);
}

.crr-open-department-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.crr-open-job-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.crr-open-job {
    text-decoration: none;
    color: var(--primary);
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.crr-open-job:hover {
    color: var(--primary-hover);
    transform: translateX(3px);
}

.crr-open-job-badge {
    background: var(--primary);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.crr-open-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.crr-open-empty-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.crr-open-empty-text {
    font-size: 18px;
}

.crr-open-disclaimer {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-radius: 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.crr-open-disclaimer.crr-open-animate {
    opacity: 1;
    transform: translateY(0);
}

.crr-open-disclaimer h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.crr-open-disclaimer p {
    margin-bottom: 12px;
}

.crr-open-disclaimer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .crr-open-section {
        padding: 60px 16px 80px;
    }

    .crr-open-title {
        font-size: 32px;
    }

    .crr-open-filters {
        padding: 20px 0;
    }

    .crr-open-filters-grid {
        grid-template-columns: 1fr;
    }

    .crr-open-jobs {
        padding: 25px 0;
    }

    .crr-open-department-title {
        font-size: 18px;
    }

    .crr-open-job {
        font-size: 14px;
    }

    .crr-open-disclaimer {
        padding: 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .crr-open-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .crr-open-title {
        font-size: 28px;
    }

    .crr-open-count {
        font-size: 24px;
    }

    .crr-open-filters {
        padding: 16px 0;
    }

    .crr-open-jobs {
        padding: 20px 0;
    }
}

