/* ---------- Hero ---------- */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 20px 0 56px;
}

.hero__eyebrow {
    display: inline-block;
    color: var(--terracotta);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.hero__title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: var(--deep-ink);
    margin: 0 0 18px;
    font-weight: 800;
}

.hero__lead {
    color: var(--ink-soft);
    max-width: 46ch;
    font-size: 1.05rem;
    margin: 0 0 28px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Portrait placeholder */
.hero__portrait {
    position: relative;
    justify-self: center;
}

.hero__portrait-badge {
    position: absolute;
    top: -14px;
    inset-inline-start: 50%;
    transform: translateX(50%);
    background: var(--deep-ink);
    color: var(--cream-50);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 999px;
    z-index: 2;
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.hero__frame {
    position: relative;
    width: min(320px, 70vw);
    aspect-ratio: 4 / 5;
    padding: 14px;
    background: var(--surface);
    border-radius: 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__frame::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 14px;
    background: linear-gradient(160deg, #e6c9c3 0%, #d9a8a0 30%, #c19a49 65%, #bf6a4d 100%);
}

.hero__monogram {
    position: relative;
    width: 42%;
    z-index: 1;
}

.hero__monogram text {
    font-family: 'Vazirmatn', serif;
    font-size: 42px;
    font-weight: 700;
    fill: rgba(255, 255, 255, 0.92);
}

.hero__brush {
    position: absolute;
    bottom: 30px;
    width: 60%;
    fill: none;
    stroke: rgba(255, 255, 255, 0.55);
    stroke-width: 4;
    stroke-linecap: round;
    z-index: 1;
}

/* ---------- About excerpt ---------- */
.home-about {
    max-width: 68ch;
    margin: 0 auto 64px;
    text-align: center;
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.home-about p {
    margin: 0 0 12px;
    color: var(--ink-soft);
    max-width: none;
}

.home-about__link {
    color: var(--terracotta);
    font-weight: 600;
}

/* ---------- Section headers ---------- */
.home-section {
    margin-bottom: 64px;
}

.home-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 12px;
    flex-wrap: wrap;
}

.home-section__head h2 {
    color: var(--deep-ink);
    font-size: 1.4rem;
    margin: 0;
}

.home-section__more {
    color: var(--terracotta);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.books-grid--compact {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.painting-gallery--compact {
    columns: 4 180px;
}

/* ---------- Quote ---------- */
.home-quote {
    text-align: center;
    padding: 40px 24px;
    max-width: 60ch;
    margin: 0 auto 20px;
}

.home-quote blockquote {
    margin: 0 0 12px;
    font-size: 1.3rem;
    color: var(--deep-ink);
    font-weight: 600;
}

.home-quote cite {
    color: var(--ink-soft);
    font-style: normal;
    font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__lead {
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__portrait {
        order: -1;
    }
}
