/* Explain: Section layouts and animated poster composition for the site */
.section-shell {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.hero-poster {
    min-height: 92vh;
}

.hero-stage {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(90, 15, 27, 0.42), rgba(5, 5, 5, 0.88));
    box-shadow: var(--shadow-burgundy);
}

.hero-image-left,
.hero-image-right {
    position: absolute;
    inset-block: 0;
    width: 56%;
    opacity: 0.82;
}

.hero-image-left {
    left: 0;
    clip-path: polygon(0 0, 84% 0, 62% 100%, 0 100%);
}

.hero-image-right {
    right: 0;
    clip-path: polygon(36% 0, 100% 0, 100% 100%, 12% 100%);
}

.hero-image-left img,
.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.14) brightness(0.62);
}

.hero-copy {
    position: absolute;
    inset: auto 1.15rem 1.2rem 1.15rem;
    z-index: 3;
    max-width: 980px;
}

.swipe-title {
    position: relative;
    display: inline-block;
    max-width: 9ch;
    color: var(--ivory-color);
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.62);
}

.swipe-title::after {
    content: "";
    position: absolute;
    left: -4%;
    top: 47%;
    width: 108%;
    height: 0.14em;
    background: linear-gradient(90deg, transparent, var(--gold-color), var(--copper-color), transparent);
    box-shadow: 0 0 34px rgba(200, 162, 74, 0.46);
    transform: scaleX(0) rotate(-2deg);
    transform-origin: left center;
    animation: razorSwipe 2.1s cubic-bezier(0.77, 0, 0.175, 1) 0.45s forwards;
}

.hero-vertical {
    min-height: 690px;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    padding: 1rem 0;
    color: rgba(246, 235, 221, 0.16);
    font-family: var(--font-heading);
    font-size: clamp(5rem, 8vw, 8.5rem);
    line-height: 0.75;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-notes {
    display: grid;
    align-content: end;
    gap: 1rem;
}

.note-card {
    border: 1px solid var(--border-color);
    background: rgba(246, 235, 221, 0.045);
    padding: 1.1rem;
    color: var(--ivory-soft);
}

.metal-line {
    position: absolute;
    z-index: -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-color), transparent);
    opacity: 0.45;
}

.metal-line-one {
    left: -10vw;
    top: 22%;
    width: 70vw;
    transform: rotate(-24deg);
}

.metal-line-two {
    right: -16vw;
    bottom: 30%;
    width: 80vw;
    transform: rotate(18deg);
}

.manifesto-section,
.faq-section {
    background: linear-gradient(180deg, rgba(90, 15, 27, 0.16), rgba(5, 5, 5, 0));
}

.manifesto-copy p {
    color: var(--ivory-soft);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 2.2rem);
    line-height: 1.25;
}

.manifesto-copy p + p {
    margin-top: 1.4rem;
}

.stat-slice {
    border: 1px solid var(--border-color);
    padding: 1rem;
}

.stat-slice strong {
    display: block;
    color: var(--gold-color);
    font-family: var(--font-heading);
    font-size: 2rem;
}

.stat-slice span {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.services-section {
    background: radial-gradient(circle at 85% 20%, rgba(200, 162, 74, 0.12), transparent 28rem);
}

.gallery-section {
    background: linear-gradient(135deg, rgba(90, 15, 27, 0.23), transparent 42%);
}

.gallery-grid {
    display: grid;
    gap: 1rem;
}

.care-panel {
    display: grid;
    gap: 2rem;
    border: 1px solid rgba(200, 162, 74, 0.34);
    background:
        linear-gradient(rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.86)),
        url('https://files.cdn-files-a.com/uploads/12196959/normal_gi-6a2e65eb236dc.jpg?format=avif');
    background-position: center;
    background-size: cover;
    padding: clamp(1.5rem, 5vw, 4rem);
    box-shadow: var(--shadow-gold);
}

.testimonials-section {
    background: radial-gradient(circle at 15% 15%, rgba(182, 106, 60, 0.16), transparent 24rem);
}

.contact-section {
    background: linear-gradient(180deg, transparent, rgba(90, 15, 27, 0.22));
}

.contact-poster {
    min-height: 100%;
    border: 1px solid var(--border-color);
    background:
        linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.78)),
        url('https://files.cdn-files-a.com/uploads/12196959/normal_gi-6a2e65eca2821.jpg?format=avif');
    background-position: center;
    background-size: cover;
    padding: clamp(1.25rem, 4vw, 3rem);
}

.site-footer {
    background: #030303;
}

@keyframes razorSwipe {
    0% {
        transform: scaleX(0) rotate(-2deg);
        opacity: 0;
    }
    22% {
        opacity: 1;
    }
    72% {
        transform: scaleX(1) rotate(-2deg);
        opacity: 1;
    }
    100% {
        transform: scaleX(1) rotate(-2deg) translateX(9%);
        opacity: 0.32;
    }
}

@media (min-width: 768px) {
    .hero-copy {
        inset: auto 2.2rem 2rem 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .care-panel {
        grid-template-columns: 0.85fr 1.15fr;
        align-items: end;
    }

    .gallery-tile:nth-child(2),
    .gallery-tile:nth-child(5) {
        transform: translateY(2.2rem);
    }
}

@media (max-width: 767px) {
    .hero-stage {
        min-height: 650px;
    }

    .hero-image-left,
    .hero-image-right {
        width: 68%;
    }
}
