:root{
    --bg: #f4f0ea;
    --bg-soft: #efe8de;
    --dark: #0d0d0d;
    --dark-2: #151515;
    --text: #121212;
    --muted: #666;
    --gold: #f0bf3c;
    --gold-2: #d7a922;
    --card: #ffffff;
    --line: rgba(0,0,0,.10);
    --shadow: 0 18px 50px rgba(0,0,0,.10);
    --radius: 22px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:var(--bg);
    color:var(--text);
}

a{
    color:inherit;
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1200px, calc(100% - 40px));
    margin:0 auto;
}

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(13,13,13,.92);
    backdrop-filter: blur(12px);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    min-height:78px;
}

.brand{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.brand-mark{
    width:36px;
    height:36px;
    border-radius:12px;
    display:grid;
    place-items:center;
    background:linear-gradient(145deg, #262626, #0d0d0d);
    border:1px solid rgba(255,255,255,.12);
    color:var(--gold);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}

.brand-text{
    font-size:1rem;
}

.brand-logo{
    height:36px !important;
    width:auto !important;
    max-width:none !important;
    display:block !important;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.site-nav a{
    color:rgba(255,255,255,.78);
    font-size:.92rem;
    font-weight:600;
    position:relative;
    padding:8px 0;
}

.site-nav a.active,
.site-nav a:hover{
    color:#fff;
}

.site-nav a.active::after,
.site-nav a:hover::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:var(--gold);
}

.nav-toggle{
    display:none;
    border:0;
    background:transparent;
    color:#fff;
    font-size:1.4rem;
    cursor:pointer;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border-radius:14px;
    padding:12px 18px;
    font-weight:700;
    border:1px solid transparent;
    transition:.2s ease;
    cursor:pointer;
}

.btn:hover{
    transform:translateY(-1px);
}

.btn-gold{
    background:linear-gradient(145deg, #ffd862, var(--gold));
    color:#151515;
    box-shadow:0 10px 28px rgba(240,191,60,.28);
}

.btn-dark{
    background:var(--dark);
    color:#fff;
}

.btn-light{
    background:#fff;
    color:#111;
    border-color:var(--line);
}

.btn-outline{
    border-color:rgba(255,255,255,.16);
    color:#fff;
    background:transparent;
}

main{
    min-height:60vh;
}

.hero{
    position:relative;
    overflow:hidden;
    padding:90px 0;
}

.hero-dark{
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.08), transparent 28%),
        linear-gradient(180deg, rgba(7,7,7,.98), rgba(17,17,17,.94));
    color:#fff;
}

.hero-light{
    background:linear-gradient(180deg, #f7f2eb, #eee7dc);
}

.hero-grid{
    display:grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap:40px;
    align-items:center;
}

.eyebrow{
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:.14em;
    color:rgba(255,255,255,.66);
    margin-bottom:18px;
}

.eyebrow-dark{
    color:rgba(0,0,0,.58);
}

.hero h1{
    margin:0;
    font-size:clamp(3rem, 7vw, 5.6rem);
    line-height:.92;
    letter-spacing:-.05em;
}

.hero p{
    margin:18px 0 0;
    max-width:540px;
    color:rgba(255,255,255,.78);
    font-size:1.02rem;
    line-height:1.7;
}

.hero-light p{
    color:#555;
}

.accent{
    color:var(--gold);
}

.hero-actions{
    margin-top:28px;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-art {
    display: grid;
    grid-template-columns: 1.6fr .9fr;
    gap: 22px;
    align-items: stretch;
    width: 100%;
    max-width: 820px;
    margin-left: auto;
}


.frame::after{
    content:"";
    position:absolute;
    inset:12px;
    border:1.5px dashed rgba(0,0,0,.12);
    border-radius:16px;
}


.section{
    padding:80px 0;
}

.section-alt{
    background:var(--bg-soft);
}

.section-title{
    margin:0 0 12px;
    font-size:clamp(2rem, 4vw, 3.1rem);
    line-height:1;
    letter-spacing:-.04em;
}

.section-subtitle{
    margin:0 0 28px;
    max-width:700px;
    color:#666;
    line-height:1.7;
}

.photo-mix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.photo-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 22px;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #e8e3dc;
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 26px 70px rgba(0,0,0,.35);
}

.photo-card-main {
    min-height: 560px;
}

.photo-card-small {
    min-height: 260px;
}

.photo-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}
.small-box {
    overflow: hidden;
    border-radius: 20px;
}

.small-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portrait-box {
    grid-row: span 2;
    min-height: 360px;
}

.landscape-box {
    min-height: 172px;
}


.grid-3{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.grid-4{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    overflow:hidden;
}

.card-pad{
    padding:24px;
}

.card-dark{
    background:linear-gradient(180deg, #161616, #0d0d0d);
    color:#fff;
    border-color:rgba(255,255,255,.06);
}

.card-title{
    margin:0 0 8px;
    font-size:1.1rem;
}

.card-text{
    margin:0;
    color:#666;
    line-height:1.7;
}

.card-dark .card-text{
    color:rgba(255,255,255,.72);
}

.stats-strip{
    background:var(--dark);
    color:#fff;
    padding:26px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:16px;
}

.stat{
    padding:18px 20px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:rgba(255,255,255,.03);
}

.stat strong{
    display:block;
    font-size:2rem;
    line-height:1;
    margin-bottom:6px;
}

.stat span{
    color:rgba(255,255,255,.66);
    font-size:.92rem;
}

.photo-grid{
    display:grid;
    grid-template-columns:repeat(12, 1fr);
    gap:18px;
}

.photo-frame{
    background:#dfddd8;
    border:1px solid rgba(0,0,0,.08);
    border-radius:22px;
    position:relative;
    min-height:180px;
    overflow:hidden;
}

.photo-frame::before{
    content:"";
    position:absolute;
    inset:14px;
    border:1.5px dashed rgba(0,0,0,.12);
    border-radius:16px;
}

.photo-frame.large{
    grid-column:span 7;
    min-height:360px;
}

.photo-frame.medium{
    grid-column:span 5;
    min-height:360px;
}

.photo-frame.small{
    grid-column:span 4;
    min-height:220px;
}

.photo-frame.tall{
    grid-column:span 4;
    min-height:320px;
}

.list-clean{
    list-style:none;
    padding:0;
    margin:0;
}

.list-clean li{
    margin-bottom:12px;
    padding-left:28px;
    position:relative;
    color:#555;
    line-height:1.6;
}

.list-clean li::before{
    content:"";
    position:absolute;
    left:0;
    top:.55em;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--gold);
    box-shadow:0 0 0 4px rgba(240,191,60,.18);
}

.muted{
    color:#666;
}

.masonry{
    columns:3 260px;
    column-gap:18px;
}

.gallery-item{
    break-inside:avoid;
    margin:0 0 18px;
}

.gallery-media{
    width:100%;
    border-radius:18px;
    overflow:hidden;
    background:#e6e2dc;
    border:1px solid var(--line);
    min-height:220px;
    position:relative;
}

.gallery-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.gallery-placeholder{
    min-height:220px;
    display:grid;
    place-items:center;
    color:#999;
    font-weight:700;
    letter-spacing:.08em;
}

.filter-bar{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:26px;
}

.filter-btn{
    border:1px solid var(--line);
    background:#fff;
    color:#111;
    border-radius:999px;
    padding:10px 16px;
    font-weight:700;
    cursor:pointer;
}

.filter-btn.active{
    background:var(--gold);
    border-color:var(--gold);
}

.event-card{
    display:flex;
    flex-direction:column;
    min-height:100%;
}

.event-poster{
    aspect-ratio: 4 / 5;
    background:#e6e2dc;
    border-bottom:1px solid var(--line);
    display:grid;
    place-items:center;
    color:#aaa;
    font-weight:700;
}

.event-meta{
    padding:18px 20px 22px;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:.78rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    border-radius:999px;
    padding:8px 12px;
    background:rgba(240,191,60,.15);
    color:#ab7d00;
}

.event-date{
    display:block;
    margin-top:14px;
    font-size:1.2rem;
    font-weight:800;
}

.event-loc{
    margin-top:8px;
    color:#666;
    line-height:1.6;
}

.cta-box{
    padding:26px;
    border-radius:22px;
    background:linear-gradient(145deg, #151515, #0c0c0c);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    box-shadow:var(--shadow);
}

.cta-box .card-text{
    color:rgba(255,255,255,.72);
}

.site-footer{
    background:var(--dark);
    color:#fff;
    padding:70px 0 24px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:24px;
    align-items:start;
}

.footer-brand{
    font-size:1.4rem;
    font-weight:900;
    letter-spacing:.08em;
    margin-bottom:14px;
}

.footer-text{
    color:rgba(255,255,255,.72);
    line-height:1.7;
    margin:0 0 10px;
}

.site-footer a{
    color:rgba(255,255,255,.76);
    display:inline-block;
    margin-bottom:8px;
}

.footer-link{
    color:#fff;
    text-decoration:none;
}

.footer-link:hover{
    color:#d4a62a;
}

.footer-logo{
    height:40px;
    width:auto;
    margin-bottom:16px;
}

.footer-bottom{
    margin-top:36px;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
    color:rgba(255,255,255,.55);
    font-size:.9rem;
}

.page-hero{
    padding:80px 0 40px;
}

.page-hero-inner{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:30px;
    align-items:center;
}

.page-kicker{
    color:#666;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-size:.8rem;
    margin-bottom:14px;
}

.page-title{
    margin:0;
    font-size:clamp(2rem, 4vw, 3.5rem);;
    line-height:.95;
    letter-spacing:-.05em;
}

.page-copy{
    margin-top:18px;
    color:#555;
    line-height:1.8;
    max-width:620px;
}


.split-panel.dark{
    background:linear-gradient(180deg, #151515, #0d0d0d);
    color:#fff;
    border-color:rgba(255,255,255,.06);
}




.small-box::after{
    content:"";
    position:absolute;
    inset:10px;
    border:1.5px dashed rgba(0,0,0,.12);
    border-radius:14px;
}

.admin-body{
    background:#0d0d0d;
    color:#111;
}

.admin-shell{
    min-height:100vh;
    display:grid;
    grid-template-columns:280px 1fr;
}

.admin-sidebar{
    background:#111;
    color:#fff;
    padding:26px 22px;
    border-right:1px solid rgba(255,255,255,.06);
}

.admin-brand{
    display:block;
    font-size:1.2rem;
    font-weight:900;
    letter-spacing:.08em;
    margin-bottom:26px;
    color:#fff;
}

.admin-nav{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.admin-nav a{
    padding:12px 14px;
    border-radius:14px;
    color:rgba(255,255,255,.76);
    background:transparent;
}

.admin-nav a.active,
.admin-nav a:hover{
    background:rgba(240,191,60,.16);
    color:#fff;
}

.admin-content{
    background:linear-gradient(180deg, #f6f1ea, #ede4d7);
}

.admin-topbar{
    min-height:78px;
    padding:0 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    border-bottom:1px solid rgba(0,0,0,.08);
    background:rgba(255,255,255,.6);
    backdrop-filter: blur(10px);
}

.admin-eyebrow{
    font-size:.78rem;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:#7a7a7a;
}

.admin-title{
    font-size:1.2rem;
    font-weight:900;
}

.admin-main{
    padding:28px;
}

.admin-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
}

.admin-stat{
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:22px;
    box-shadow:var(--shadow);
}

.admin-stat strong{
    display:block;
    font-size:2rem;
    line-height:1;
    margin-bottom:6px;
}

.admin-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:22px;
    box-shadow:var(--shadow);
    margin-top:20px;
}

.admin-form-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:14px;
}

.admin-form-grid .full{
    grid-column:1 / -1;
}

label{
    display:block;
    font-weight:700;
    margin-bottom:8px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="time"],
input[type="file"],
select,
textarea{
    width:100%;
    border:1px solid #d8d2c8;
    border-radius:14px;
    padding:13px 14px;
    background:#fff;
    font:inherit;
}

textarea{
    min-height:140px;
    resize:vertical;
}

.table-wrap{
    overflow:auto;
}

table{
    width:100%;
    border-collapse:collapse;
}

th, td{
    text-align:left;
    padding:14px 12px;
    border-bottom:1px solid rgba(0,0,0,.08);
    vertical-align:top;
}

th{
    font-size:.82rem;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#777;
}

.action-row{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.badge-soft{
    display:inline-flex;
    padding:7px 10px;
    border-radius:999px;
    background:#f1e1ae;
    color:#8a6200;
    font-size:.8rem;
    font-weight:800;
}

.flash{
    margin-bottom:18px;
    padding:14px 16px;
    border-radius:16px;
    font-weight:700;
}

.flash.success{
    background:#e5f7e8;
    color:#1a6a2d;
}

.flash.error{
    background:#fde8e8;
    color:#a62d2d;
}

.auth-wrap{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:28px;
    background:
        radial-gradient(circle at top, rgba(240,191,60,.20), transparent 28%),
        linear-gradient(180deg, #111, #070707);
    color:#fff;
}

.auth-card{
    width:min(460px, 100%);
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border-radius:24px;
    padding:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.auth-card h1{
    margin:0 0 8px;
    font-size:2rem;
}

.auth-card p{
    margin:0 0 18px;
    color:rgba(255,255,255,.72);
    line-height:1.7;
}

.auth-card label{
    color:#fff;
}

.auth-card input{
    background:#fff;
    color:#111;
}

.auth-card .btn{
    width:100%;
    margin-top:10px;
}

@media (max-width: 1080px){
    .hero-grid,
    .page-hero-inner,
    .grid-2,
    .footer-grid,
    .admin-shell{
        grid-template-columns:1fr;
    }

    .stats-grid,
    .grid-3,
    .grid-4,
    .admin-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .site-nav{
        display:none;
    }

    .site-nav.open{
        display:flex;
        position:absolute;
        left:20px;
        right:20px;
        top:78px;
        flex-direction:column;
        background:#111;
        padding:18px;
        border-radius:18px;
        box-shadow:var(--shadow);
        align-items:flex-start;
    }

    .nav-toggle{
        display:block;
    }

    .header-cta{
        display:none;
    }

    .admin-sidebar{
        min-height:auto;
    }
}

@media (max-width: 720px){
    .container{
        width:min(100% - 28px, 1200px);
    }

    .hero{
        padding:70px 0;
    }

    .section{
        padding:64px 0;
    }

    .photo-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .stats-grid,
    .admin-grid,
    .admin-form-grid{
        grid-template-columns:1fr;
    }

    .photo-frame.large,
    .photo-frame.medium,
    .photo-frame.small,
    .photo-frame.tall{
        grid-column:auto;
    }

    .hero h1,
    .page-title{
        font-size:clamp(2.6rem, 12vw, 4rem);
    }

    .footer-bottom,
    .admin-topbar{
        flex-direction:column;
        align-items:flex-start;
    }

    .admin-main{
        padding:18px;
    }

    .admin-topbar{
        padding:18px;
    }
    
    .photo-card{
    overflow:hidden;
    padding:0 !important;
}

@media (max-width: 900px) {
    .page-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-art {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: 0;
    }

    .photo-card-main {
        min-height: 430px;
    }

    .photo-stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .photo-card-small {
        min-height: 220px;
    }
}

@media (max-width: 600px) {
    .photo-stack {
        grid-template-columns: 1fr;
    }

    .photo-card-main {
        min-height: 360px;
    }

    .photo-card-small {
        min-height: 240px;
    }

    .photo-card {
        border-radius: 22px;
    }
}

.photo-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.photo-layout{
    display:grid;
    grid-template-columns: 38% 62%;
    gap:16px;
    height:450px;
}

.portrait-photo{
    height:450px;
    overflow:hidden;
    border-radius:20px;
}

.landscape-column{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:16px;
    height:450px;
}

.landscape-photo{
    overflow:hidden;
    border-radius:20px;
}

.photo-layout img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


.gallery-photo{
    overflow:hidden;
    border-radius:20px;
}

.gallery-photo img{
    width:100%;
    display:block;
}

@media(max-width:768px){
}

:root {
    --black: #101010;
    --dark: #171717;
    --cream: #f3eee5;
    --cream-2: #ebe4d8;
    --white: #ffffff;
    --muted: #5f5f5f;
    --line: rgba(0, 0, 0, 0.08);
    --yellow: #f7c948;
    --yellow-dark: #e6b52e;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--black);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 28px, 1180px);
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #1c1c1c;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--yellow);
    font-size: 13px;
}

.brand-text {
    font-size: 17px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
}

.header-btn {
    padding: 15px 24px;
    border-radius: 16px;
    background: var(--yellow);
    color: #111;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(247, 201, 72, 0.28);
    transition: 0.2s ease;
}

.header-btn:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
}

/* =========================
   HERO
========================= */

.hero-section {
    background: linear-gradient(180deg, #f5efe6 0%, #eee7dc 100%);
    padding: 86px 0 72px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 12px;
    font-weight: 700;
    color: #4d5560;
}

.hero-content h1 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 0.93;
    letter-spacing: -0.065em;
    font-weight: 900;
}

.hero-text {
    max-width: 650px;
    margin: 24px 0 0;
    color: #324252;
    font-size: 16px;
    line-height: 1.9;
}

/* Gallery */

.hero-gallery {
    min-height: 290px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-content: start;
    gap: 14px;
}

.gallery-box {
    min-height: 112px;
    border-radius: 18px;
    overflow: hidden;
}

.gallery-box.placeholder {
    background: #e7e1d8;
    border: 1px dashed #cfc7bb;
}

.main-photo img {
    width: 100%;
    height: 112px;
    object-fit: cover;
}

/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 78px 0 90px;
    background: #f4f0e9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.info-card {
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.light-card {
    background: var(--white);
    border: 1px solid var(--line);
}

.dark-card {
    background: #121212;
    color: var(--white);
}

.info-card h2 {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.dark-card h2 {
    max-width: 520px;
}

.dark-card p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    color: #243444;
    font-size: 15px;
    line-height: 1.55;
}

.activity-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(247, 201, 72, 0.22);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 24px;
}

.value-box {
    height: 132px;
    border-radius: 18px;
    background: var(--white);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #0e0e0e;
    color: var(--white);
    padding: 58px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.footer-text {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.site-footer h4 {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--yellow);
}

.site-footer a,
.site-footer p {
    display: block;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .header-inner {
        height: auto;
        padding: 16px 0;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        gap: 18px;
        overflow-x: auto;
        padding-top: 10px;
    }

    .nav a {
        white-space: nowrap;
    }

    .hero-grid,
    .about-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 62px 0;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .header-btn {
        padding: 12px 18px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-gallery {
        padding: 16px;
        grid-template-columns: 1fr 1fr;
    }

    .gallery-box {
        min-height: 96px;
    }

    .main-photo img {
        height: 96px;
    }

    .info-card {
        padding: 24px;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

object-fit: cover;
object-position: center center;

/* ABOUT SECTION PHOTO - DESKTOP SIDE LAYOUT */
@media (min-width: 901px) {
    .grid-2 {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
        gap: 56px;
        align-items: center;
    }

    .grid-2 > div:first-child {
        max-width: 640px;
    }

    .about-photo {
        width: 100%;
        min-height: 460px;
        margin-top: 0;
    }
}

/* PHOTO FRAME IMAGE FILL */
.photo-frame {
    position: relative;
    overflow: hidden;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* ABOUT SECTION PHOTO FIX */
.about-photo {
    position: relative;
    overflow: hidden;
}

.about-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* DESKTOP: text left, photo right */
@media (min-width: 901px) {
    .about-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
        gap: 56px;
        align-items: center;
    }

    .about-photo {
        min-height: 460px;
        width: 100%;
    }
}

/* MOBILE: photo stays centered */
@media (max-width: 900px) {
    .about-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-photo {
        width: 100%;
        min-height: 340px;
        aspect-ratio: 4 / 3;
        margin-top: 0;
    }

    .about-photo img {
        object-fit: cover;
        object-position: center center;
    }
}

.project-photo-grid,
.project-mini-gallery {
    display: grid;
    gap: 16px;
}

.project-photo-grid {
    grid-template-columns: 1.2fr .8fr;
}

.project-photo-grid img:first-child {
    grid-row: span 2;
}

.project-photo-grid img,
.project-mini-gallery img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.project-photo-grid-hero img {
    min-height: 190px;
}

.project-mini-gallery {
    grid-template-columns: repeat(3, 1fr);
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.required {
    color: #a62d2d;
}

.form-help {
    margin-top: -4px;
    color: #666;
    font-size: .9rem;
}

.checkbox-group {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.other-row input[type="text"] {
    max-width: 260px;
}

.lead-form label {
    margin-top: 14px;
}

.lead-form button {
    margin-top: 18px;
}

@media (max-width: 720px) {
    .project-photo-grid,
    .project-mini-gallery {
        grid-template-columns: 1fr;
    }

    .project-photo-grid img:first-child {
        grid-row: auto;
    }
}
/* ONLY Project101 + Join photo fix */
body:has(.project-photo-grid) .page-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
    align-items: center;
}

.project-photo-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 12px;
    max-width: 520px;
    margin-left: auto;
}

.project-photo-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}

.project-photo-grid img:first-child {
    grid-row: span 2;
    height: 332px;
}

@media (max-width: 900px) {
    body:has(.project-photo-grid) .page-hero-inner {
        grid-template-columns: 1fr;
    }

    .project-photo-grid {
        max-width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .project-photo-grid {
        grid-template-columns: 1fr;
    }

    .project-photo-grid img,
    .project-photo-grid img:first-child {
        height: 210px;
        grid-row: auto;
    }
}

/* JOIN FORM FINAL */
.lead-form > label {
    display: block;
    margin-top: 18px;
    margin-bottom: 8px;
}

.lead-form > input[type="text"],
.lead-form > select {
    margin-bottom: 6px;
}

.lead-form .checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px 34px;
    margin: 8px 0 14px;
    max-width: 820px;
}

.lead-form .check-row {
    display: flex !important;
    align-items: center;
    gap: 9px;
    margin: 0 !important;
}

.lead-form .check-row input[type="checkbox"] {
    width: auto !important;
    margin: 0 !important;
}

.lead-form .other-row {
    grid-column: 1 / -1;
    display: flex !important;
    align-items: center;
    gap: 10px;
}

.lead-form .other-check {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    margin: 0 !important;
    white-space: nowrap;
}

.lead-form .other-row input[type="text"] {
    width: 320px !important;
    max-width: 320px !important;
    margin: 0 !important;
}

.lead-form .form-help {
    margin: -2px 0 8px;
    color: #555;
    line-height: 1.45;
}

.lead-form textarea {
    min-height: 130px;
    margin-top: 0;
}

.lead-form .btn {
    margin-top: 10px;
}

/* Video frame */
.photo-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Restore important colors */
.accent {
    color: var(--gold) !important;
}

.btn-gold,
.header-cta {
    background: linear-gradient(145deg, #ffd862, var(--gold)) !important;
    color: #151515 !important;
    box-shadow: 0 10px 28px rgba(240,191,60,.28) !important;
}

.site-footer {
    background: var(--dark) !important;
    color: #fff !important;
}

/* Phone */
@media (max-width: 640px) {
    .lead-form .checkbox-group {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .lead-form .other-row {
        display: grid !important;
        grid-template-columns: auto 1fr;
    }

    .lead-form .other-row input[type="text"] {
        width: 100% !important;
        max-width: 100% !important;
    }
    
.brochure-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding: 10px 0 24px;
    scroll-snap-type: x mandatory;
}

.brochure-card {
    flex: 0 0 280px;
    height: 390px;
    border-radius: 24px;
    scroll-snap-align: start;
}

.brochure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* phone */
@media (max-width: 640px) {
    .brochure-card {
        flex-basis: 230px;
        height: 320px;
    }
}
}

.brochure-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #151515 !important;
    color: #fff !important;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
    opacity: 1 !important;
}

.brochure-arrow-left {
    left: 8px;
}

.brochure-arrow-right {
    right: 8px;
}

@media (max-width: 640px) {
    #brochureCarousel {
        padding-left: 54px !important;
        padding-right: 54px !important;
    }

    #brochureTrack {
        gap: 16px !important;
    }

    .brochure-item {
        flex-basis: calc(100vw - 180px) !important;
        width: calc(100vw - 180px) !important;
        height: 500px !important;
    }

    .brochure-arrow {
        width: 48px;
        height: 48px;
        font-size: 32px;
    }

    .brochure-arrow-left {
        left: 0;
    }

    .brochure-arrow-right {
        right: 0;
    }
}

.brochure-carousel {
    position: relative;
    max-width: 980px;
    margin: 28px auto 0;
    padding: 0 54px;
}

.brochure-window {
    overflow: hidden;
    width: 100%;
}

.brochure-track {
    display: flex;
    gap: 22px;
    transition: transform .35s ease;
    will-change: transform;
}

.brochure-card {
    flex: 0 0 calc((100% - 66px) / 4);
    height: 330px;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0,0,0,.10);
}

.brochure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.brochure-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #151515;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}

.brochure-prev {
    left: 0;
}

.brochure-next {
    right: 0;
}

.brochure-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.brochure-dot {
    width: 11px;
    height: 11px;
    border: 1px solid #151515;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.brochure-dot.active {
    background: #151515;
}

/* iPad: 3 brochures */
@media (max-width: 1080px) {
    .brochure-card {
        flex-basis: calc((100% - 44px) / 3);
    }
}

/* Phone: 1 centered brochure */
@media (max-width: 640px) {
    .brochure-carousel {
        padding: 0 48px;
        margin-top: 24px;
    }

    .brochure-track {
        gap: 0;
    }

    .brochure-card {
        flex: 0 0 100%;
        height: 500px;
    }

    .brochure-nav {
        width: 44px;
        height: 44px;
        font-size: 32px;
    }
}