﻿
.nav__links li.is-active a {
    color: var(--gold);
    font-weight: 500;
}

.nav__links a:hover {
    opacity: 0.6;
}



/* ════════════════════════════════════════════
       ABOUT HERO
    ════════════════════════════════════════════ */
.about-hero {
    background: var(--greybg);
    padding: 7.5rem 0 3rem;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: end;
}

/* ── Left: text ── */
.about-hero__eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-fainted);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s var(--ease) forwards;
}

.about-hero__title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 12vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.2s var(--ease) forwards;
}

.about-hero__sub {
    font-family: 'Satoshi', sans-serif;
    font-weight: 300;
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    line-height: 1.25;
    color: var(--dark-fainted);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.32s var(--ease) forwards;
}

.about-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark-fainted);
    opacity: 0;
    animation: fadeUp 0.9s 0.44s var(--ease) forwards;
}

    .about-hero__meta .dot {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--gold);
        flex-shrink: 0;
    }

/* ── Right: portrait card ── */
.about-hero__img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #C8973A;
    opacity: 0;
    animation: fadeRight 1s 0.25s var(--ease) forwards;
}

    .about-hero__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.about-hero__img-scrim {
    position: absolute;
    inset: 0;
    background: #000;
    height: 80%;
    opacity: 0.07;
    pointer-events: none;
}

.about-hero__caption {
    position: absolute;
    left: 1.25rem;
    bottom: -1.25rem;
    width: max-content;
    max-width: 200px;
    background: #FAF5ED;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 24px;
    padding: 0.85rem 1.1rem;
    font-size: 0.7rem;
    line-height: 1.45;
    color: var(--dark-);
}

.sparkle-icon {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 22px;
    height: 22px;
    color: rgba(245,237,216,0.9);
    opacity: 0.9;
}

/* ── Responsive ── */
@media (min-width: 768px) {
    .about-hero {
        padding: 9rem 0 3.5rem;
    }
}

@media (min-width: 1024px) {
    .about-hero {
        padding: 10rem 0 4.5rem;
    }

    .about-hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-hero__img-wrap {
        aspect-ratio: 4 / 4.85;
    }
}

@media (min-width: 1280px) {
    .about-hero__grid {
        gap: 6rem;
    }
}

/* ════════════════════════════════════════════
       BIOGRAPHY
    ════════════════════════════════════════════ */
.bio {
    background: var(--bodybg);
    padding-block: 4rem;
}

.bio__inner {
    max-width: 1024px;
    margin: 0 auto;
}

/* ── Drop-cap intro ── */
.bio__intro {
    font-family: 'Satoshi', serif;
    font-weight: 400;
    font-size: clamp(1.25rem, 4vw, 2.5rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.75rem;
    max-width: 760px;
    margin-inline: auto;
}

.dropcap::first-letter {
    font-size: 5rem;
    line-height: 0.8;
    font-weight: 700;
    color: var(--gold);
}

/* ── Supporting paragraph ── */
.bio__body {
    font-size: clamp(0.875rem, 4vw, 1rem);
    line-height: 1.75;
    color: var(--dark-fainted);
    text-align: center;
    margin-bottom: 2.75rem;
    max-width: 760px;
    margin-inline: auto;
}


/* ── Pull-quote card ── */
.bio__quote {
    position: relative;
    background: #EFEAE2;
    border-radius: 20px;
    padding: 2.5rem 1.75rem 2rem;
    margin-bottom: 2.75rem;
}

.bio__quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: none;
}

.bio__quote-text {
    font-family: 'Satoshi', serif;
    font-weight: 500;
    font-size: clamp(1.25rem, 4vw, 2.4rem);
    line-height: 1.4;
    color: var(--dark);
}

/* ── Closing paragraph + verse ── */
.bio__closing {
    font-size: 0.85rem;
    line-height: 1.75;
    color: var(--dark-fainted);
    text-align: center;
    margin-bottom: 2rem;
    margin-inline: auto;
    max-width: 760px;
}

/* ── Responsive ── */

@media (min-width: 1024px) {
    .bio {
        padding-block: 5rem;
    }

    .bio__quote {
        padding: 3.5rem 2.75rem 3rem;
    }
}


/* ════════════════════════════════════════════
       GALLERY
    ════════════════════════════════════════════ */
.about-gallery {
    background: var(--greybg);
    padding-block: 3rem;
}

.about-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.85rem;
}

.gallery-item {
    position: relative;
    grid-column: span 12;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #ddd;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: grayscale(100%) contrast(1.03);
        transition: transform 0.6s var(--ease), filter 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.045);
        filter: grayscale(60%) contrast(1.05);
    }

.gallery-item__sparkle {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    width: 18px;
    height: 18px;
    color: rgba(245,237,216,0.9);
    pointer-events: none;
    z-index: 2;
}

/* Individual aspect ratios — mobile (stacked, full width) */
.gallery-item--1 {
    aspect-ratio: 4 / 3.4;
}

.gallery-item--2 {
    aspect-ratio: 4 / 3.1;
}

.gallery-item--3 {
    aspect-ratio: 4 / 4.7;
}

.gallery-item--4 {
    aspect-ratio: 4 / 3.85;
}

.gallery-item--5 {
    aspect-ratio: 16 / 11;
}

/* ── Desktop: bento layout ── */
@media (min-width: 768px) {
    .about-gallery__grid {
        gap: 1.1rem;
    }

    .gallery-item--1 {
        grid-column: span 7;
        aspect-ratio: 4 / 3.05;
    }

    .gallery-item--2 {
        grid-column: span 5;
        aspect-ratio: 4 / 5;
    }

    .gallery-item--3 {
        grid-column: span 5;
        aspect-ratio: 4 / 4.9;
    }

    .gallery-item--4 {
        grid-column: span 7;
        aspect-ratio: 4 / 3.7;
    }

    .gallery-item--5 {
        grid-column: span 12;
        aspect-ratio: 16 / 7.6;
    }
}

@media (min-width: 1280px) {
    .about-gallery {
        padding-block: 4rem;
    }

    .about-gallery__grid {
        gap: 1.35rem;
    }
}

/* ── Lightbox ── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
}

    .gallery-lightbox.is-open {
        opacity: 1;
        visibility: visible;
    }

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26,18,8,0.94);
}

.gallery-lightbox__img-wrap {
    position: relative;
    z-index: 1;
    max-width: 92vw;
    max-height: 86vh;
}

    .gallery-lightbox__img-wrap img {
        max-width: 92vw;
        max-height: 86vh;
        width: auto;
        height: auto;
        display: block;
        border-radius: 10px;
        filter: grayscale(100%);
    }

.gallery-lightbox__close,
.gallery-lightbox__prev,
.gallery-lightbox__next {
    position: absolute;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(245,237,216,0.1);
    border: 1px solid rgba(245,237,216,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 2;
}

    .gallery-lightbox__close:hover,
    .gallery-lightbox__prev:hover,
    .gallery-lightbox__next:hover {
        background: rgba(245,237,216,0.2);
    }

.gallery-lightbox__close {
    top: -3.25rem;
    right: 0;
}

.gallery-lightbox__prev {
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox__next {
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
}

    .gallery-lightbox__close svg,
    .gallery-lightbox__prev svg,
    .gallery-lightbox__next svg {
        width: 16px;
        height: 16px;
        stroke: var(--cream);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

@media (min-width: 768px) {
    .gallery-lightbox__prev {
        left: -3.25rem;
    }

    .gallery-lightbox__next {
        right: -3.25rem;
    }
}

/* ════════════════════════════════════════════
       INVITE — closing CTA
    ════════════════════════════════════════════ */
.invite {
    position: relative;
    background: var(--greybg);
    padding-block: 4.5rem;
    overflow: hidden;
    text-align: center;
}

.invite-gradient {
    width: 820px;
    height: 420px;
    opacity: 1;
    background: linear-gradient( 0deg, #F4A34B4D, #F4A34B4D );
    backdrop-filter: blur(96px);
}

/* Soft radial gold glow behind the headline */
.invite::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: min(920px, 140%);
    height: 480px;
    border-radius: 22369600px;
    background: radial-gradient(ellipse at center, #F4A34B4D 0%, #F4A34B4D 42%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.invite__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.invite__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--dark-fainted);
    margin-bottom: 1rem;
}

.invite__title {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 7vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

    .invite__title em {
        font-style: normal;
        color: var(--gold);
    }

.invite__desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.65;
    color: var(--dark-fainted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    text-wrap: balance;
}

.invite__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background: var(--dark);
    text-decoration: none;
    border-radius: 9999px;
    padding: 0.95rem 1.75rem;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .invite__cta:hover {
        background: #2e1f06;
        transform: scale(0.98);
    }

    .invite__cta svg:first-child {
        width: 16px;
        height: 16px;
        stroke: #fff;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

    .invite__cta svg:last-child {
        width: 13px;
        height: 13px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

/* Social icons row */
.invite__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.invite__social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FAF6EF;
    border: 1px solid rgba(26,18,8,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    text-decoration: none;
}

    .invite__social:hover {
        background: #fff;
        border-color: rgba(26,18,8,0.16);
        transform: translateY(-2px);
    }

    .invite__social svg {
        width: 18px;
        height: 18px;
        stroke: var(--dark);
        fill: none;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

        .invite__social svg.filled {
            fill: var(--dark);
            stroke: none;
        }

@media (min-width: 768px) {
    .invite {
        padding-block: 5.5rem;
    }
}

@media (min-width: 1280px) {
    .invite {
        padding-block: 6rem;
    }
}


