.hero {
    padding: var(--space-3xl) 0;
    padding-top: clamp(5rem, 10vw, 7rem);
    padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
}

/* Homepage hero adjustments */
.hero-home .hero-copy h1 {
    font-size: clamp(2.8rem, 5.2vw, 5rem);
    line-height: 1.02;
    max-width: 13ch;
}

.hero-home .hero-image {
    width: min(100%, 46rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.hero-home .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
}

.hero-copy h1 {
    margin-bottom: var(--space-md);
    font-size: clamp(3rem, 6vw, 5.75rem);
    line-height: 0.98;
    max-width: 12ch;
    letter-spacing: -0.015em;
}

.hero-seo-subline {
    max-width: 40rem;
    margin-bottom: var(--space-md);
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(245, 239, 232, 0.76);
}

.hero-text {
    max-width: 40rem;
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-lg);
    color: rgba(245, 239, 232, 0.82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.hero-trust {
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    color: rgba(245, 239, 232, 0.65);
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-image {
    position: relative;
    width: min(100%, 36rem);
    aspect-ratio: 0.78 / 1;
    overflow: hidden;
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
}

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.14)),
        radial-gradient(circle at center, transparent 55%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.01);
}

.intro,
.services-preview,
.difference {
    padding: var(--space-2xl) 0;
}

.intro h2 {
    margin-bottom: var(--space-md);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.intro .section-text {
    color: var(--color-text-medium);
}

.services-grid {
    align-items: start;
}

.service-card {
    padding: clamp(1.2rem, 2vw, 1.4rem);
}

.card-image {
    overflow: hidden;
    border-radius: 0.8rem;
    margin-bottom: 1.1rem;
    background: #d9d1ca;
}

.card-image img {
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.card-image-wedding {
    aspect-ratio: 1.58 / 1;
}

.card-image-wedding img {
    object-position: center 42%;
}

.card-image-boudoir {
    aspect-ratio: 1.58 / 1;
}

.card-image-boudoir img {
    object-position: center center;
}

.service-card h3 {
    margin-bottom: 0.65rem;
}

.service-card p {
    margin-bottom: 0.85rem;
    max-width: 34ch;
}

.service-card .text-link {
    display: inline-block;
    margin-top: 0.1rem;
}

.difference .btn-primary {
    margin-top: var(--space-lg);
}

.section h2 {
    margin-bottom: var(--space-md);
}

.section p {
    max-width: 42rem;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: transform, opacity;
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-up {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: var(--space-2xl) 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .hero-copy h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
        max-width: 11ch;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-image {
        width: 100%;
        max-width: 32rem;
        aspect-ratio: 0.92 / 1;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-card p {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .card-image-wedding,
    .card-image-boudoir {
        aspect-ratio: 1.35 / 1;
    }
}