/* ===== Hero — Fullscreen ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 12, 12, 0.85) 0%,
        rgba(12, 12, 12, 0.3) 40%,
        rgba(12, 12, 12, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem 6rem;
    max-width: 700px;
}

.hero-content h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(232, 228, 223, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text_muted);
    opacity: 0.6;
    animation: hintBounce 2s ease-in-out infinite;
}

@keyframes hintBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===== Featured Work ===== */
.featured-section {
    padding: 8rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

/* Alternate: make first and every 3rd item span full width for asymmetry */
.featured-item:first-child {
    grid-column: 1 / -1;
}
.featured-item:first-child .featured-image {
    aspect-ratio: 21 / 9;
}

.featured-link { display: block; }

.featured-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-link:hover .featured-image img {
    transform: scale(1.04);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(to top, rgba(12, 12, 12, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.featured-link:hover .featured-overlay {
    opacity: 1;
}

.featured-category {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 0.375rem;
}

.featured-overlay h3 {
    font-size: 1.5rem;
    color: var(--color-text);
}

/* ===== About Preview ===== */
.about-preview {
    padding: 8rem 0;
    border-top: 1px solid rgba(232, 228, 223, 0.08);
}

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

.about-image {
    overflow: hidden;
}
.about-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}
.about-content p {
    color: var(--color-text_muted);
    font-size: 1rem;
    line-height: 1.75;
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 8rem 0;
    border-top: 1px solid rgba(232, 228, 223, 0.08);
    background: var(--color-surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(232, 228, 223, 0.08);
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-heading), 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial p {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.testimonial footer strong {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}
.testimonial footer span {
    font-size: 0.8125rem;
    color: var(--color-text_muted);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1.25rem 4rem;
    }
    .hero-scroll-hint { display: none; }
    .featured-grid { grid-template-columns: 1fr; }
    .featured-item:first-child .featured-image { aspect-ratio: 16 / 9; }
    .featured-image { aspect-ratio: 4 / 3; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .featured-section, .about-preview, .testimonials-section { padding: 5rem 0; }
    .featured-overlay { opacity: 1; }
}
