/* Reset & Base */
html {
    scroll-behavior: smooth;
}

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

:root {
    --dark-green: #0D1912;
    --dark-green-alt: #141F18;
    --dark-green-soft: #1A2A21;
    --accent: #C9B896;
    --accent-light: #E5DCC8;
    --accent-dark: #A8956E;
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --cream-card: #FFFCF9;
    --gray: #E8E4DE;
    --text: #1E2E24;
    --text-muted: #5C6B63;
    --shadow: rgba(13, 25, 18, 0.08);
    --shadow-strong: rgba(13, 25, 18, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Page Loader */
body.page-loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-green);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.page-loader-logo {
    width: 72px;
    height: 72px;
    filter: brightness(1.55) contrast(1.15);
    animation: page-loader-pulse 1.5s ease-in-out infinite;
}

.page-loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(201, 184, 150, 0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: page-loader-spin 0.9s linear infinite;
}

.page-loader-text {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

@keyframes page-loader-spin {
    to { transform: rotate(360deg); }
}

@keyframes page-loader-pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 25, 18, 0.92);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.header .logo-icon,
.footer .logo-icon {
    filter: brightness(1.55) contrast(1.15);
}

.logo-main {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.logo-sub {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

/* Hamburger button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10002;
    margin-left: auto;
    transition: transform 0.2s;
}

.hamburger-btn:hover {
    opacity: 0.9;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hamburger overlay */
.hamburger-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 25, 18, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hamburger-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* Hamburger menu - slides in from right */
.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--dark-green);
    padding: 100px 32px 32px;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
}

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

.nav-menu a {
    font-weight: 500;
    font-size: 17px;
    padding: 12px 0;
    color: var(--white);
    transition: color 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a:last-child {
    border-bottom: none;
}

.nav-menu a:hover {
    color: var(--accent);
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 95vh;
    background: var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,25,18,0.92) 0%, rgba(13,25,18,0.85) 50%, rgba(26,42,33,0.75) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title-accent {
    color: var(--accent);
}

.hero-description {
    color: rgba(255,255,255,0.95);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.2s, opacity 0.2s;
}

.hero-scroll:hover {
    color: var(--accent);
}

.hero-scroll-arrow {
    width: 28px;
    height: 28px;
    animation: hero-scroll-bounce 2s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark-green);
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    width: 20px;
    height: 20px;
}

/* Section Labels */
.section-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.section-label-light {
    color: var(--accent);
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Services Section */
.services {
    background: var(--cream);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--cream-card);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--gray);
    box-shadow: 0 2px 16px var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-strong);
    border-color: var(--accent-light);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.service-icon svg,
.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.service-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-block;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(28, 46, 36, 0.25);
    border-radius: 4px;
    text-align: center;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.service-btn:hover {
    color: var(--dark-green);
    border-color: rgba(28, 46, 36, 0.4);
}

/* Gallery Pages */
.gallery-page {
    padding: 120px 0 80px;
    min-height: 60vh;
    background: var(--cream);
}

.gallery-back {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.gallery-back:hover {
    color: var(--dark-green);
}

.gallery-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 32px;
}

h2.gallery-title {
    font-size: 24px;
    margin-bottom: 24px;
}

.service-info {
    background: var(--cream-card);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 40px;
    border: 1px solid var(--gray);
}

.service-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 12px;
}

.service-info p,
.service-info ul {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-info p:last-of-type,
.service-info ul:last-child {
    margin-bottom: 0;
}

.service-info ul {
    padding-left: 20px;
}

.service-info li {
    margin-bottom: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    background: var(--cream-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Blog Page */
.blog-page {
    padding: 120px 0 80px;
    background: var(--cream);
}

.blog-page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
}

.blog-page-intro {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.instagram-feed-wrapper {
    margin-top: 24px;
    min-height: 200px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: var(--cream-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--gray);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow-strong);
}

.blog-card-link {
    display: block;
    color: inherit;
}

.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-date {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-more {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent-dark);
}

.blog-card:hover .blog-card-more {
    color: var(--dark-green);
}

/* Blog Post Page */
.blog-post-page {
    padding: 120px 0 80px;
    background: var(--cream);
}

.blog-back {
    display: inline-block;
    margin-bottom: 32px;
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.blog-back:hover {
    color: var(--dark-green);
}

.blog-post-header {
    margin-bottom: 32px;
}

.blog-post-date {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.blog-post-lede {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
}

.blog-post-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-post-content {
    max-width: 720px;
    font-size: 17px;
    line-height: 1.7;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-post-content a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: var(--dark-green);
}

/* About Section */
.about {
    background: var(--white);
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 0;
}

.about-image-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* RUT/ROT Section */
.rut-rot {
    background: #F8F6F4;
    padding: 80px 0;
}

.rut-rot-intro {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.rut-rot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.rut-rot-card {
    background: var(--cream-card);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--gray);
}

.rut-rot-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.rut-rot-badge {
    background: var(--dark-green);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.rut-rot-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
}

.rut-rot-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.rut-rot-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 16px;
}

.rut-rot-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.rut-rot-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.rut-rot-note {
    margin-top: 16px;
    font-weight: 500;
    color: var(--text);
}

.rut-rot-cta {
    text-align: center;
    font-size: 16px;
    color: var(--text);
}

.rut-rot-cta a {
    color: var(--accent-dark);
    text-decoration: underline;
}

.rut-rot-cta a:hover {
    color: var(--dark-green);
}

/* Contact Section */
.contact {
    background: var(--dark-green);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-label {
    color: var(--accent);
}

.contact-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-description {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-link {
    color: var(--white);
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.9;
    color: var(--white);
}

.contact-form {
    background: var(--cream-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--gray);
    box-shadow: 0 12px 48px var(--shadow-strong);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid var(--gray);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.contact-form .btn-primary {
    margin-top: 8px;
}

/* Career Section */
.career {
    background: var(--light-gray);
    padding: 80px 0;
}

.career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.career-image-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

.career-benefits {
    list-style: none;
    margin-bottom: 24px;
}

.career-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.career-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 16px;
}

.career-cta:hover {
    text-decoration: underline;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-about p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: color 0.2s;
}

.social-icons a:hover {
    color: var(--accent);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-contact li,
.footer-hours li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact svg,
.footer-hours svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-cta {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 600;
    font-size: 13px;
}

.footer-cta:hover {
    text-decoration: underline;
}

.footer-bottom {
    background: var(--dark-green-alt);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: var(--white);
}

/* Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-content {
    animation: heroFadeIn 0.9s ease-out 0.4s both;
}

.animate-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid .service-card.animate-in.is-visible:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card.animate-in.is-visible:nth-child(2) { transition-delay: 0.06s; }
.services-grid .service-card.animate-in.is-visible:nth-child(3) { transition-delay: 0.12s; }
.services-grid .service-card.animate-in.is-visible:nth-child(4) { transition-delay: 0.18s; }
.services-grid .service-card.animate-in.is-visible:nth-child(5) { transition-delay: 0.24s; }
.services-grid .service-card.animate-in.is-visible:nth-child(6) { transition-delay: 0.30s; }
.services-grid .service-card.animate-in.is-visible:nth-child(7) { transition-delay: 0.36s; }
.services-grid .service-card.animate-in.is-visible:nth-child(8) { transition-delay: 0.42s; }
.services-grid .service-card.animate-in.is-visible:nth-child(9) { transition-delay: 0.48s; }

.btn {
    transition: all 0.25s ease;
}

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

.btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        flex-wrap: wrap;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .contact-grid,
    .career-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .rut-rot-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
    }
}
