

img{ display: block; }

/* Light theme */
body.is-light{
    background: #d8d8d8;
    color: #1a1a1a;
    font-family: 'Aeroport', system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* =========================
   Shared sizing (must match)
   about2 image column == about3-left column
========================= */
:root{
    --about-pattern: url("../media/img/about-bg.jpg");
    --about-side-img: 370px;

    /* Pattern controls */
    --about-pattern-opacity: 1; /* try 0.25 -> 0.40 */
}

/* ========== ABOUT 1 ========== */

.about1{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #d8d8d8;
}

.about1-bg{
    position: absolute;
    inset: 0;
    background:
            radial-gradient(1200px 800px at 70% 45%, rgba(0,0,0,.08), transparent 55%),
            radial-gradient(900px 700px at 30% 60%, rgba(0,0,0,.06), transparent 60%),
            url("../media/img/about.jpg") 65% center / cover no-repeat;
    filter: grayscale(1);
    transform: scale(1.01);
}

.about1-title{
    position: absolute;
    left: clamp(48px, 6vw, 96px);
    bottom: clamp(48px, 6vw, 96px);
    margin: 0;
    font-weight: 500;
    line-height: 1;
    font-size: 280px;
    letter-spacing:-35px;
    color: #706D6D;
}

/* ========== HORIZONTAL SCROLL BASE ========== */

.hscroll{ position: relative; }

.hscroll-sticky{
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.hscroll-track{
    display: flex;
    height: 100vh;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.hpanel{
    flex: 0 0 100%;
    width: 100%;
    height: 100vh;
    font-family: 'Aeroport', system-ui, -apple-system, Segoe UI, Roboto, Arial;
    font-weight: 400;
}

/* =========================
   Pattern layer (About 2 & 3)
========================= */

.about2,
.about3{
    position: relative;
    overflow: hidden;
    background-color: #dedede; /* base under the pattern */
}

/* Pattern overlay behind content */
.about2::before,
.about3::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--about-pattern) center / cover no-repeat;
    opacity: var(--about-pattern-opacity);
    pointer-events: none;
    z-index: 0;
}

/* Ensure all direct children are above pattern */
.about2 > *,
.about3 > *{
    position: relative;
    z-index: 1;
}

/* ========== ABOUT 2 ========== */

.about2{
    display: grid;
    grid-template-columns: 1fr var(--about-side-img);
}

.about2-left{
    background: transparent;
    display: grid;
    align-content: flex-start;
    padding: 260px 0 0 150px;
    max-width: 980px;
}

.about2-text p{
    margin: 0 0 14px 0;
    max-width: 54ch;
    font-size: 24px;
    line-height: 1.65;
    font-weight: 500;
    color: rgba(0,0,0,.55);
}

/* Left half of the full photo (perfect seam) */
.about2-right{
    background-image: url("../media/img/about-left.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%; /* key: no mismatch with the other half */
    filter: grayscale(1);
}

/* ========== ABOUT 3 ========== */

.about3{
    display: grid;
    grid-template-columns: var(--about-side-img) minmax(520px, 1fr) 520px;
    column-gap: 50px;
}

/* Right half of the full photo (perfect seam) */
.about3-left{
    background-image: url("../media/img/about-right.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%; /* key: no mismatch with the other half */
    filter: grayscale(1);
    min-height: 520px;
}

.about3-mid,
.about3-right{
    padding: 299px 0px 0 50px;
    display: grid;
    align-content: flex-start;
    gap: 14px;
}

.kicker{
    font-weight: 700;
    font-size: 28px;
    letter-spacing: .18em;
    font-weight: 500;
    color: rgba(0,0,0,.55);
}

.about3-mid p{
    margin: 0;
    max-width: 52ch;
    font-size: 24px;
    line-height: 1.65;
    color: rgba(0,0,0,.55);
}

.venues{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: 12px;
    color: rgba(0,0,0,.55);
}


/* Mobile */
@media (max-width: 900px){
    .about2{ grid-template-columns: 1fr; }
    .about2-right{ display: none; }

    .about3{ grid-template-columns: 1fr; }
    .about3-left{ display: none; }
}
