.home-page {
    background:
        radial-gradient(circle at top left, rgba(217, 109, 53, 0.14), transparent 24%),
        linear-gradient(180deg, #f7f0e6 0%, #fffdfa 28%, #f5f8fb 100%);
    color: #211b16;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    padding: 48px 0 28px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 34px;
    align-items: stretch;
}

.hero-copy-panel,
.hero-visual-panel,
.company-story,
.company-gallery,
.geo-copy,
.geo-card,
.section-heading,
.service-card,
.featured-card,
.card-grid,
.faq-list,
.signal-strip {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.eyebrow,
.section-kicker {
    color: #b95a24;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.hero-copy-panel h1 {
    font-size: clamp(2.5rem, 5vw, 4.6rem);
    line-height: 1.02;
    margin: 0 0 18px;
    max-width: 720px;
}

.hero-copy-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text {
    color: #5c554c;
    font-size: 1.08rem;
    line-height: 1.85;
    margin: 0 0 22px;
    max-width: 650px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(33, 27, 22, 0.08);
    border-radius: 999px;
    color: #4a4036;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 14px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-cta,
.secondary-cta,
.ghost-cta,
.inline-link {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    transition: 0.25s ease;
}

.primary-cta {
    background: #b95a24;
    color: #fff9f1;
}

.primary-cta:hover {
    background: #934516;
}

.secondary-cta,
.ghost-cta {
    background: #ffffff;
    border: 1px solid rgba(33, 27, 22, 0.12);
    color: #211b16;
}

.secondary-cta:hover,
.ghost-cta:hover {
    border-color: #b95a24;
    color: #b95a24;
}

.hero-visual-panel {
    min-height: 520px;
    position: relative;
}

.hero-photo-stack {
    min-height: 100%;
    position: relative;
    width: 100%;
}

.hero-photo {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(65, 49, 30, 0.16);
    overflow: hidden;
    position: absolute;
}

.hero-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-photo--main {
    inset: 12px 96px 44px 0;
}

.hero-photo--small {
    border-radius: 24px;
    height: 208px;
    right: 12px;
    width: 224px;
}

.hero-photo--small.top {
    top: 110px;
}

.hero-photo--small.bottom {
    bottom: 96px;
}

.hero-geo-card {
    backdrop-filter: blur(18px);
    background: rgba(21, 21, 21, 0.86);
    border-radius: 22px;
    bottom: 85px;
    color: #fff8f0;
    left: 20px;
    max-width: 340px;
    padding: 22px;
    position: absolute;
}

.geo-label,
.geo-card__label {
    color: rgba(255, 248, 240, 0.72);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.hero-geo-card h2,
.geo-card__inner h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.hero-geo-card p,
.geo-card__inner p,
.geo-copy p,
.company-story p,
.section-heading p,
.faq-list p {
    color: inherit;
    line-height: 1.8;
}

.signal-strip {
    padding: 18px 0 32px;
}

.signal-grid {
    background: #1e1b18;
    border-radius: 30px;
    color: #fff9f1;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.signal-grid article {
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    padding: 22px 20px;
}

.signal-grid strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 6px;
}

.signal-grid span {
    color: rgba(255, 249, 241, 0.74);
    line-height: 1.6;
}

.company-section,
.featured-section,
.service-section,
.geo-section,
.team-section,
.faq-section {
    padding: 78px 0;
}

.company-layout,
.geo-layout {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
}

.company-story h2,
.section-heading h2,
.geo-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin: 0 0 18px;
}

.story-points {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
}

.story-points div,
.geo-card__inner {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(33, 27, 22, 0.08);
    border-radius: 22px;
    padding: 22px;
}

.story-points h3 {
    margin: 0 0 8px;
}

.company-gallery {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-card {
    border-radius: 24px;
    overflow: hidden;
    min-height: 220px;
}

.gallery-card.large {
    grid-column: span 2;
    min-height: 340px;
}

.gallery-card img,
.featured-card img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.featured-section {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(239, 243, 247, 0.84) 100%);
}

.section-heading {
    margin-bottom: 30px;
    max-width: 760px;
}

.featured-grid,
.service-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-card,
.service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(33, 27, 22, 0.08);
    border-radius: 26px;
    box-shadow: 0 16px 36px rgba(44, 34, 25, 0.08);
    overflow: hidden;
}

.featured-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.featured-card img {
    aspect-ratio: 4 / 3;
}

.featured-card__body,
.service-card {
    padding: 22px;
}

.featured-card__body h3,
.service-card h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
}

.featured-card__body p,
.service-card p {
    color: #5e564d;
    line-height: 1.75;
    margin: 0;
}

.section-action {
    margin-top: 26px;
}

.geo-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.geo-list li {
    background: rgba(255, 255, 255, 0.7);
    border-left: 4px solid #b95a24;
    border-radius: 14px;
    padding: 14px 16px;
}

.geo-card {
    align-self: center;
}

.inline-link {
    background: #1e1b18;
    color: #fff9f1;
    margin-top: 12px;
}

.inline-link:hover {
    background: #b95a24;
}

.team-section {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(248, 249, 250, 1) 100%);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.faq-list {
    display: grid;
    gap: 16px;
    max-width: 920px;
}

.faq-list details {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(33, 27, 22, 0.08);
    border-radius: 20px;
    padding: 18px 22px;
}

.faq-list summary {
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    color: #5e564d;
    margin: 14px 0 0;
}

@media (max-width: 1100px) {
    .hero-layout,
    .company-layout,
    .geo-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual-panel,
    .hero-photo-stack {
        min-height: 500px;
    }

    .hero-photo--main {
        inset: 8px 84px 44px 0;
    }

    .hero-photo--small {
        height: 180px;
        width: 196px;
    }

    .hero-photo--small.bottom {
        bottom: 88px;
    }

    .featured-grid,
    .service-grid,
    .signal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .hero-section,
    .company-section,
    .featured-section,
    .service-section,
    .geo-section,
    .team-section,
    .faq-section {
        padding: 56px 0;
    }

    .hero-visual-panel,
    .hero-photo-stack {
        min-height: 420px;
    }

    .hero-photo--main {
        inset: 0 0 110px 0;
    }

    .hero-photo--small {
        bottom: 0;
        height: 120px;
        top: auto;
        width: calc(50% - 10px);
    }

    .hero-photo--small.top {
        left: 0;
    }

    .hero-photo--small.bottom {
        right: 0;
    }

    .hero-geo-card {
        left: 16px;
        max-width: calc(100% - 32px);
        right: 16px;
    }

    .signal-grid,
    .featured-grid,
    .service-grid,
    .story-points,
    .company-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-card.large {
        grid-column: span 1;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}