:root {
    --green-950: #081b18;
    --green-900: #0f2f28;
    --green-800: #17473c;
    --green-700: #1d5a4b;
    --sand-100: #efe2cb;
    --sand-200: #dcc7a1;
    --sand-300: #c9ae7d;
    --ink-900: #12201d;
    --ink-700: #43514d;
    --white: #fffdf8;
    --line: rgba(18, 32, 29, 0.12);
    --shadow: 0 24px 60px rgba(9, 27, 24, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100vw - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink-900);
    background:
        radial-gradient(circle at top left, rgba(201, 174, 125, 0.18), transparent 28%),
        linear-gradient(180deg, #f7f0e3 0%, #fffdf8 28%, #f7f4ed 100%);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

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

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

.page-shell {
    position: relative;
    overflow: clip;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(10px);
}

.page-shell::before {
    width: 22rem;
    height: 22rem;
    top: 7rem;
    right: -8rem;
    background: rgba(201, 174, 125, 0.16);
}

.page-shell::after {
    width: 18rem;
    height: 18rem;
    top: 55rem;
    left: -6rem;
    background: rgba(29, 90, 75, 0.12);
}

.site-header,
.hero,
.section,
.stats-band,
.site-footer {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: max(12px, env(safe-area-inset-top, 0px));
    z-index: 100;
    margin-top: max(12px, env(safe-area-inset-top, 0px));
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 16px;
    border: 1px solid rgba(255, 253, 248, 0.4);
    border-radius: 999px;
    background: rgba(15, 47, 40, 0.8);
    backdrop-filter: blur(18px);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(8, 27, 24, 0.14);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    display: block;
    height: 44px;
    width: auto;
    max-width: min(200px, 52vw);
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-nav a {
    font-size: 0.95rem;
    color: rgba(255, 253, 248, 0.88);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--sand-100);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
}

.lang-switch span {
    opacity: 0.7;
}

.lang-switch .is-active {
    opacity: 1;
    color: var(--sand-100);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.8fr);
    gap: 36px;
    padding: 88px 0 48px;
    align-items: stretch;
}

.hero-copy,
.hero-card,
.service-card,
.expert-image-frame,
.expert-content,
.differential-card,
.cta-panel,
.stats-band,
.site-footer {
    border: 1px solid rgba(18, 32, 29, 0.08);
    box-shadow: var(--shadow);
}

.hero-copy {
    position: relative;
    padding: 56px;
    border-radius: var(--radius-lg);
    color: var(--white);
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(8, 27, 24, 0.9), rgba(15, 47, 40, 0.62)),
        url('/img/black-person-signing-job-offer-paperwork-hero-bg.webp') center/cover;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: auto auto -80px -50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 174, 125, 0.32), transparent 70%);
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.expert-content h2,
.cta-panel h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.hero h1 {
    max-width: 18ch;
    font-size: clamp(2.35rem, 4vw + 1.1rem, 5.9rem);
    line-height: 1.06;
}

.hero-text,
.section-heading p,
.expert-content p,
.service-card p,
.differential-card p,
.cta-panel p,
.stats-band span,
.contact-item,
.site-footer p {
    line-height: 1.75;
}

.hero-text {
    max-width: 44rem;
    margin: 22px 0 0;
    color: rgba(255, 253, 248, 0.8);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    touch-action: manipulation;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--green-950);
    background: linear-gradient(135deg, #f4d7a1 0%, #c9ae7d 100%);
}

.button-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 253, 248, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.hero-highlights li {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 253, 248, 0.86);
    font-size: 0.94rem;
}

.hero-card {
    align-self: end;
    padding: 32px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 249, 238, 0.92), rgba(239, 226, 203, 0.86)),
        url('/img/day-office-travel-agency-cta-bg.webp') center/cover;
}

.hero-card-label {
    margin: 0 0 18px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-700);
}

.hero-card-grid {
    display: grid;
    gap: 18px;
}

.hero-card article {
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    background: rgba(255, 253, 248, 0.82);
    backdrop-filter: blur(12px);
}

.hero-card strong,
.stats-band strong,
.service-card h3,
.differential-card h3 {
    display: block;
    margin-bottom: 6px;
}

.hero-card span,
.stats-band span,
.service-card p,
.differential-card p,
.expert-content p,
.cta-panel p,
.contact-item,
.site-footer p {
    color: var(--ink-700);
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 10px;
    padding: 24px 28px;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.72);
    backdrop-filter: blur(14px);
}

.section {
    padding: clamp(56px, 12vw, 108px) 0 0;
}

.section-heading {
    max-width: 44rem;
    margin-bottom: 34px;
}

.section-heading h2,
.expert-content h2,
.cta-panel h2 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
}

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

.service-card,
.differential-card {
    padding: 32px;
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.82);
    backdrop-filter: blur(12px);
}

.service-card i,
.differential-card i,
.contact-item i {
    color: var(--green-700);
}

.service-card i,
.differential-card i {
    margin-bottom: 20px;
    font-size: 2rem;
}

.expert-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 40px;
    align-items: center;
}

.expert-image-frame {
    padding: 22px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255, 253, 248, 0.9), rgba(220, 199, 161, 0.8));
    overflow: hidden;
}

.expert-image {
    border-radius: 24px;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.expert-content {
    padding: 40px;
    border-radius: 32px;
    background: rgba(255, 253, 248, 0.75);
    backdrop-filter: blur(12px);
}

.years-badge {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--green-950);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, #f0d39a 0%, #c9ae7d 100%);
}

blockquote {
    margin: 28px 0 0;
    padding: 20px 24px;
    border-left: 3px solid var(--sand-300);
    background: rgba(201, 174, 125, 0.12);
    color: var(--green-900);
    font-size: 1.05rem;
}

.cta-section {
    padding-bottom: 90px;
}

.cta-panel {
    padding: 42px;
    border-radius: 32px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(8, 27, 24, 0.94), rgba(23, 71, 60, 0.88)),
        url('/img/day-office-travel-agency-cta-bg.webp') center/cover;
}

.cta-panel p,
.cta-panel .contact-item,
.cta-panel .static-item {
    color: rgba(255, 253, 248, 0.82);
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 253, 248, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--sand-100);
}

.static-item {
    cursor: default;
}

.site-footer {
    margin-bottom: 32px;
    padding: 26px 28px;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.78);
    text-align: center;
}

.site-footer p {
    margin: 6px 0;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.85rem;
    background: linear-gradient(135deg, #24cf63 0%, #139d48 100%);
    box-shadow: 0 20px 40px rgba(36, 207, 99, 0.28);
    z-index: 120;
}

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

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

.reveal-delay-2 {
    transition-delay: 0.2s;
}

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

@media (max-width: 1080px) {
    .hero,
    .expert-section,
    .service-grid,
    .differential-grid,
    .contact-list,
    .stats-band {
        grid-template-columns: 1fr;
    }

    .hero-card {
        align-self: stretch;
    }

    .expert-section {
        gap: 28px;
    }

    .expert-image-frame {
        max-width: 400px;
        margin-inline: auto;
    }

    .expert-image {
        max-height: min(72vh, 560px);
    }
}

@media (max-width: 860px) {
    .site-header {
        top: max(8px, env(safe-area-inset-top, 0px));
        margin-top: max(8px, env(safe-area-inset-top, 0px));
        border-radius: 24px;
        padding: 12px 16px;
        align-items: center;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px 14px 16px;
        border-radius: 22px;
        background: rgba(15, 47, 40, 0.98);
        box-shadow: 0 16px 40px rgba(8, 27, 24, 0.14);
    }

    .site-nav a {
        padding: 14px 12px;
        min-height: 48px;
        display: flex;
        align-items: center;
        border-radius: 14px;
    }

    .site-nav a:active {
        background: rgba(255, 255, 255, 0.06);
    }

    .site-nav .lang-switch {
        margin-top: 8px;
        justify-content: center;
        align-self: center;
        padding: 10px 16px;
    }

    .site-header.is-open .site-nav {
        display: flex;
    }

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

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

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

    .hero {
        padding: 40px 0 32px;
        gap: 24px;
    }

    .hero-copy {
        padding: 28px 24px;
    }

    .hero-copy::after {
        width: 180px;
        height: 180px;
        inset: auto auto -60px -40px;
    }

    .hero-card,
    .service-card,
    .expert-content,
    .cta-panel {
        padding: 24px;
    }

    .stats-band {
        padding: 20px 22px;
        gap: 18px;
    }

    .section-heading {
        margin-bottom: 28px;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 24px, 100%);
        --radius-lg: 22px;
        --radius-md: 18px;
    }

    .page-shell::before,
    .page-shell::after {
        opacity: 0.4;
    }

    .hero {
        padding: 28px 0 24px;
    }

    .hero-copy {
        padding: 22px 18px;
        border-radius: var(--radius-lg);
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2rem, 7.5vw + 0.6rem, 3.5rem);
        line-height: 1.12;
        letter-spacing: -0.03em;
    }

    .hero-text {
        font-size: 1rem;
        margin-top: 16px;
    }

    .eyebrow {
        font-size: 0.75rem;
        letter-spacing: 0.16em;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-card {
        padding: 20px 18px;
        border-radius: var(--radius-lg);
    }

    .hero-card-grid {
        gap: 14px;
    }

    .hero-card article {
        padding: 14px 16px;
    }

    .section-heading h2,
    .expert-content h2,
    .cta-panel h2 {
        line-height: 1.12;
        font-size: clamp(1.85rem, 5.5vw + 0.75rem, 3rem);
    }

    .stats-band {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .stats-band strong {
        font-size: 1.05rem;
    }

    .stats-band span {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .section {
        padding-top: 48px;
    }

    .service-card,
    .differential-card {
        padding: 22px 20px;
    }

    .expert-content,
    .cta-panel {
        padding: 22px 18px;
        border-radius: var(--radius-lg);
    }

    .expert-image-frame {
        padding: 16px;
        border-radius: 24px;
        max-width: none;
    }

    .expert-image {
        max-height: min(65vh, 480px);
        border-radius: 18px;
    }

    blockquote {
        margin-top: 20px;
        padding: 16px 18px;
        font-size: 1rem;
    }

    .cta-section {
        padding-bottom: max(72px, env(safe-area-inset-bottom, 0px));
    }

    .contact-list {
        gap: 12px;
        margin-top: 22px;
    }

    .hero-actions,
    .hero-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-highlights li {
        text-align: center;
        font-size: 0.88rem;
    }

    .button {
        width: 100%;
        min-height: 52px;
    }

    .contact-item {
        width: 100%;
        min-height: auto;
        padding: 16px 18px;
    }

    .site-footer {
        padding: 22px 18px;
        margin-bottom: max(24px, env(safe-area-inset-bottom, 0px));
        font-size: 0.92rem;
    }

    .whatsapp-float {
        right: max(16px, env(safe-area-inset-right, 0px));
        bottom: max(16px, env(safe-area-inset-bottom, 0px));
        width: 56px;
        height: 56px;
        font-size: 1.65rem;
    }
}

@media (max-width: 400px) {
    :root {
        --container: min(100vw - 20px, 100%);
    }

    .brand img {
        height: 36px;
        max-width: min(168px, 62vw);
    }

    .site-header {
        padding: 10px 12px;
    }

    .hero-copy {
        padding: 18px 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}