/* =========================================================
   DREAM INVESTMENTS — DESIGN SYSTEM
   Light theme, Rust / Burnt Orange hue (#bd390f). Display: Fraunces / Body: Inter
   ========================================================= */

:root {
    --p-950: #C83313;
    --p-900: #992800;
    --p-800: #DC5D07;
    --p-700: #692d04;
    --pp-700: #4a1e00;
    --p-600: #E25A18;
    --p-500: #ffe3d2;
    --p-400: #ffebd4;
    --p-300: #FFF6EE;
    --p-200: #F9C796;
    --p-100: #ffe5ce;
    --p-50: #F7F4FE;
    --ink: #221733;
    --ink-soft: #5A5069;
    --muted: #847C93;
    --line: #E6DFF6;
    --white: #FFFFFF;
    --paper: #fdfbfb;
    --success: #3F8F5F;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 10px rgba(109,32,8,0.06);
    --shadow-md: 0 12px 30px rgba(109,32,8,0.12);
    --shadow-lg: 0 24px 60px rgba(43,12,3,0.16);
    --container: 1180px;
}

/*:root {*/
    /* ---- Orange & Red scale (tints & shades) ---- */
    /*--p-950: #C83313;*/ /* Deepest red shade */
    /*--p-900: #CF410F;*/ /* Dark reddish hue */
    /*--p-800: #D2490F;*/ /* Mid-dark red-orange */
    /*--p-700: #DC5D07;*/ /* Primary orange */
    /*--p-600: #E25A18;*/ /* Mid-bright orange */
    /*--p-500: #ffe3d2;*/ /* Light orange accent */
    /*--p-400: #ffebd4;*/ /* Brightest accent */
    /*--p-300: #F3A252;
    --p-200: #F9C796;
    --p-100: #FDE8D4;
    --p-50: #FFF6EE;*/
    /* Warm Neutrals & Typography */
    /*--ink: #331A14;
    --ink-soft: #694C45;
    --muted: #93736C;
    --line: #F6E2DF;
    --white: #FFFFFF;
    --paper: #FFFBFB;
    --success: #3F8F5F;*/
    /* Fonts & Radii */
    /*--font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 26px;
    --radius-pill: 999px;*/
    /* Warm Shadows */
    /*--shadow-sm: 0 2px 10px rgba(200, 51, 19, 0.06);
    --shadow-md: 0 12px 30px rgba(200, 51, 19, 0.12);
    --shadow-lg: 0 24px 60px rgba(200, 51, 19, 0.16);
    --container: 1180px;
}*/

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--p-950);
    margin: 0 0 .5em;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.2rem,4vw,3.4rem);
    font-weight: 560;
}

h2 {
    font-size: clamp(1.7rem,3vw,2.5rem);
}

h3 {
    font-size: 1.3rem;
}

p {
    margin: 0 0 1em;
    color: var(--ink-soft);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 88px 0;
}

.section-tight {
    padding: 56px 0;
}

:focus-visible {
    outline: 3px solid var(--p-500);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- Eyebrow / Kicker ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--p-700);
    margin-bottom: 14px;
}

    .eyebrow::before {
        content: '';
        width: 22px;
        height: 2px;
        background: var(--p-500);
        display: inline-block;
        border-radius: 2px;
    }

.section-head {
    max-width: 660px;
    margin-bottom: 48px;
}

    .section-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: .95rem;
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--p-700);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

    .btn-primary:hover {
        background: var(--pp-700);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-ghost {
    background: transparent;
    color: var(--p-700);
    border-color: var(--p-700);
}

    .btn-ghost:hover {
        background: var(--p-100);
        border-color: var(--p-500);
        transform: translateY(-2px);
    }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.55);
}

    .btn-outline-white:hover {
        background: rgba(255,255,255,.14);
    }

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 10px 18px;
    font-size: .85rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(253,251,251,.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 1rem;
    max-width: var(--container);
    margin: 0 auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.28rem;
    color: var(--p-950);
}

.brand {
    width: 90px;
}

.brand img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.brand-mark {
    width: 38px;
    height: 38px;
    flex: none;
}

.brand small {
    display: block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--p-600);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .nav-links a {
        position: relative;
        padding: 6px 12px;
        font-size: .92rem;
        font-weight: 560;
        color: var(--ink-soft);
        border-radius: var(--radius-pill);
        transition: color .15s ease, background .15s ease;
    }

        .nav-links a:hover {
            color: var(--p-800);
            background: var(--p-100);
        }

        .nav-links a.active {
            color: var(--p-800);
            background: var(--p-100);
        }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .86rem;
    font-weight: 600;
    color: var(--p-800);
}

    .nav-phone svg {
        width: 17px;
        height: 17px;
    }

.nav-toggle {
    display: none;
    background: none;
    border: 1.5px solid var(--p-300);
    border-radius: 10px;
    padding: 9px;
}

    .nav-toggle svg {
        width: 20px;
        height: 20px;
        color: var(--p-800);
    }

@media (max-width:960px) {
    .nav-links {
        position: fixed;
        inset: 70px 16px auto 16px;
        flex-direction: column;
        align-items: stretch;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        padding: 10px;
        box-shadow: var(--shadow-lg);
        gap: 4px;
        transform: translateY(-14px);
        opacity: 0;
        pointer-events: none;
        transition: all .22s ease;
    }

        .nav-links.open {
            transform: translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .nav-links a {
            padding: 12px 16px;
        }

    .nav-phone {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

/* ---------- Breadcrumb / Page banner ---------- */
.page-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg,var(--p-950),var(--p-900) 70%,var(--p-600));
    padding: 80px 0 68px;
    color: var(--white);
}

    .page-banner .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(4px);
        opacity: .35;
    }

    .page-banner .eyebrow {
        color: var(--p-200);
    }

        .page-banner .eyebrow::before {
            background: var(--p-200);
        }

    .page-banner h1 {
        color: var(--white);
        margin-bottom: 10px;
    }

.breadcrumb {
    display: flex;
    gap: 8px;
    font-size: .86rem;
    color: var(--p-200);
}

    .breadcrumb a:hover {
        color: var(--white);
    }

    .breadcrumb span {
        opacity: .6;
    }

/* ---------- Cards ---------- */
.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: var(--p-300);
    }

/* ---------- Grids ---------- */
.grid {
    display: grid;
    gap: 26px;
}

.grid-2 {
    grid-template-columns: repeat(2,1fr);
}

.grid-3 {
    grid-template-columns: repeat(3,1fr);
}

.grid-4 {
    grid-template-columns: repeat(4,1fr);
}

@media (max-width:900px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:620px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ---------- Icon tile ---------- */
.icon-tile {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--p-100);
    color: var(--p-700);
    margin-bottom: 20px;
    flex: none;
}

    .icon-tile svg {
        width: 26px;
        height: 26px;
    }

/* =========================================================
   HOME — HERO / CAROUSEL
   ========================================================= */
.hero-carousel {
    position: relative;
    overflow: hidden;
    background: var(--p-950);
}

section.hero-carousel {
    padding: 0px !important;
}

.hero-slide {
    display: none;
    position: relative;
    align-items: center;
    min-height: 90vh;
    background: linear-gradient(150deg,var(--p-950) 0%,var(--p-800) 55%,var(--p-600) 130%);
    color: var(--white);
    overflow: hidden;
}

    .hero-slide.active {
        display: flex;
    }

    .hero-slide .blob {
        position: absolute;
        border-radius: 50%;
    }

    .hero-slide .blob-1 {
        width: 520px;
        height: 520px;
        right: -140px;
        top: -120px;
        background: radial-gradient(circle,var(--p-500) 0%, transparent 70%);
        opacity: .55;
    }

    .hero-slide .blob-2 {
        width: 380px;
        height: 380px;
        right: 180px;
        bottom: -180px;
        background: radial-gradient(circle,var(--p-400) 0%, transparent 70%);
        opacity: .35;
    }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 50px;
    padding: 70px 0;
}

.hero-copy .eyebrow {
    color: var(--p-200);
}

    .hero-copy .eyebrow::before {
        background: var(--p-200);
    }

.hero-copy h1 {
    color: var(--white);
}

.hero-copy p {
    color: var(--p-100);
    font-size: 1.08rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 44px;
    flex-wrap: wrap;
}

    .hero-stats div strong {
        display: block;
        font-family: var(--font-display);
        font-size: 1.7rem;
        color: var(--white);
    }

    .hero-stats div span {
        font-size: .78rem;
        color: var(--p-200);
        text-transform: uppercase;
        letter-spacing: .08em;
    }

.hero-art {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.shield-graphic {
    width: 100%;
    max-width: 420px;
}

.hero-dots {
    position: absolute;
    z-index: 3;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

    .hero-dots button {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255,255,255,.35);
        border: none;
        padding: 0;
    }

        .hero-dots button.active {
            background: var(--white);
            width: 26px;
            border-radius: 6px;
        }

.hero-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease;
}

    .hero-arrow:hover {
        background: rgba(255,255,255,.28);
    }

    .hero-arrow.prev {
        left: 24px;
    }

    .hero-arrow.next {
        right: 24px;
    }

    .hero-arrow svg {
        width: 20px;
        height: 20px;
    }

@media (max-width:860px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 52px 0;
    }

    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions, .hero-stats {
        justify-content: center;
    }

    .hero-arrow {
        display: none;
    }
}

/* ---------- Services (home) ---------- */
.service-card {
    text-align: left;
}

    .service-card a.more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-weight: 600;
        color: var(--p-700);
        font-size: .9rem;
        margin-top: 6px;
    }

        .service-card a.more svg {
            width: 15px;
            height: 15px;
            transition: transform .15s ease;
        }

        .service-card a.more:hover svg {
            transform: translateX(3px);
        }

/* ---------- Products (tabs) ---------- */
.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--line);
    background: var(--white);
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink-soft);
}

    .tab-btn.active {
        background: var(--p-700);
        color: var(--white);
        border-color: var(--p-700);
    }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
    }

.product-card {
    display: flex;
    flex-direction: column;
}

.product-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--p-700);
    background: var(--p-100);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
    width: fit-content;
}

.product-card ul {
    margin: 14px 0 18px;
}

.product-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 9px;
    font-size: .92rem;
    color: var(--ink-soft);
}

    .product-card li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 7px;
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--p-400);
    }

.product-card .price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--p-900);
    margin: 6px 0 18px;
}

    .product-card .price span {
        font-family: var(--font-body);
        font-size: .8rem;
        color: var(--muted);
        font-weight: 500;
    }

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

/* ---------- Testimonials ---------- */
.testi-wrap {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.testi-slide {
    display: none;
    text-align: center;
}

    .testi-slide.active {
        display: block;
    }

.testi-quote {
    width: 34px;
    height: 34px;
    color: var(--p-300);
    margin: 0 auto 18px;
}

.testi-slide p.msg {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: #141313;
    font-weight: 500;
    line-height: 1.5;
}

.testi-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.avatar-ring {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--p-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--p-800);
}

.testi-person strong {
    display: block;
    font-size: .94rem;
    color: var(--ink);
}

.testi-person span {
    font-size: .8rem;
    color: var(--muted);
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

    .testi-dots button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--p-200);
        border: none;
    }

        .testi-dots button.active {
            background: var(--p-600);
            width: 22px;
            border-radius: 5px;
        }

/* ---------- Clients logo strip ---------- */
.clients-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.client-logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--muted);
    filter: grayscale(1);
    opacity: .7;
    transition: all .2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .client-logo:hover {
        filter: none;
        opacity: 1;
        color: var(--p-700);
    }

    .client-logo svg {
        width: 24px;
        height: 24px;
    }

/* ---------- FAQ ---------- */
.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 4px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--p-950);
    font-weight: 600;
}

    .faq-q .icon {
        flex: none;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 1.5px solid var(--p-300);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .2s ease, background .2s ease;
    }

        .faq-q .icon svg {
            width: 11px;
            height: 11px;
        }

.faq-item.open .faq-q .icon {
    background: var(--p-700);
    border-color: var(--p-700);
    transform: rotate(45deg);
}

    .faq-item.open .faq-q .icon svg {
        color: var(--white);
    }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
}

    .faq-a p {
        padding: 0 4px 22px;
        max-width: 760px;
    }

/* =========================================================
   GENERIC CONTENT BLOCKS (service / product detail pages)
   ========================================================= */
.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width:900px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

.art-frame {
    border-radius: var(--radius-lg);
    background: linear-gradient(155deg,var(--p-800),var(--p-100));
    border: 1px solid var(--p-200);
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.feature-list {
    margin-top: 22px;
}

    .feature-list li {
        display: flex;
        gap: 14px;
        padding: 14px 0;
        border-top: 1px solid var(--line);
    }

        .feature-list li:first-child {
            border-top: none;
        }

        .feature-list li svg {
            width: 20px;
            height: 20px;
            color: var(--p-600);
            flex: none;
            margin-top: 2px;
        }

    .feature-list strong {
        display: block;
        color: var(--ink);
        font-size: .96rem;
        margin-bottom: 2px;
    }

    .feature-list span {
        font-size: .88rem;
        color: var(--muted);
    }

.stat-strip {
    display: flex;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}

    .stat-strip div {
        flex: 1;
        padding: 24px 20px;
        text-align: center;
        border-left: 1px solid var(--line);
    }

        .stat-strip div:first-child {
            border-left: none;
        }

    .stat-strip strong {
        display: block;
        font-family: var(--font-display);
        font-size: 1.6rem;
        color: var(--p-800);
    }

    .stat-strip span {
        font-size: .78rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

table.plan-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

    table.plan-table th, table.plan-table td {
        padding: 14px 18px;
        text-align: left;
        font-size: .92rem;
        border-bottom: 1px solid var(--line);
    }

    table.plan-table th {
        background: var(--p-100);
        color: var(--p-900);
        font-weight: 700;
    }

    table.plan-table tr:last-child td {
        border-bottom: none;
    }

.related-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    background: var(--p-100);
    color: var(--p-800);
    font-size: .84rem;
    font-weight: 600;
}

/* =========================================================
   FORMS (inquiry / contact / surrender)
   ========================================================= */
.form-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: var(--shadow-sm);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width:620px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.field {
    margin-bottom: 18px;
}

    .field label {
        display: block;
        font-size: .84rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 7px;
    }

    .field .req {
        color: var(--p-600);
    }

    .field input, .field select, .field textarea {
        width: 100%;
        padding: 13px 15px;
        border-radius: 12px;
        border: 1.5px solid var(--line);
        background: var(--paper);
        color: var(--ink);
        transition: border-color .15s ease, background .15s ease;
    }

        .field input:focus, .field select:focus, .field textarea:focus {
            border-color: var(--p-500);
            background: var(--white);
            outline: none;
        }

    .field textarea {
        resize: vertical;
        min-height: 110px;
    }

.field-hint {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 6px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

    .checkbox-row input {
        margin-top: 4px;
        width: 16px;
        height: 16px;
        accent-color: var(--p-700);
    }

    .checkbox-row label {
        font-size: .86rem;
        color: var(--ink-soft);
    }

.file-drop {
    border: 1.5px dashed var(--p-300);
    border-radius: 14px;
    padding: 26px;
    text-align: center;
    background: var(--p-50);
    color: var(--muted);
    font-size: .86rem;
}

    .file-drop svg {
        width: 26px;
        height: 26px;
        color: var(--p-500);
        margin: 0 auto 8px;
    }

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: var(--p-50);
    border: 1px solid var(--p-200);
    color: var(--p-800);
    padding: 16px 18px;
    border-radius: 14px;
    margin-top: 18px;
    font-size: .9rem;
    font-weight: 600;
}

    .form-success.show {
        display: flex;
    }

    .form-success svg {
        width: 20px;
        height: 20px;
        flex: none;
        color: var(--success);
    }

fieldset {
    border: none;
    padding: 0;
    margin: 0 0 26px;
}

    fieldset legend {
        font-family: var(--font-display);
        font-size: 1.05rem;
        color: var(--p-900);
        font-weight: 600;
        padding: 0 0 14px;
        width: 100%;
        border-bottom: 1px solid var(--line);
        margin-bottom: 6px;
    }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 38px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

@media (max-width:860px) {
    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width:560px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    display: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--white);
}

    .gallery-item.show {
        display: block;
    }

.gallery-thumb {
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    background: linear-gradient(150deg, var(--p-800), var(--p-700));
}

    .gallery-thumb.alt1 {
        background: linear-gradient(150deg, var(--p-800), var(--p-700));
    }

    .gallery-thumb.alt2 {
        background: linear-gradient(150deg, var(--p-800), var(--p-700));
    }

    .gallery-thumb svg {
        width: 44px;
        height: 44px;
        opacity: .85;
    }

    .gallery-thumb .play {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.gallery-cap {
    padding: 16px 18px;
}

    .gallery-cap strong {
        display: block;
        font-size: .94rem;
        color: var(--ink);
    }

    .gallery-cap span {
        font-size: .78rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: .05em;
    }

/* =========================================================
   BLOG
   ========================================================= */
.blog-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.blog-thumb {
    height: 180px;
    background: linear-gradient(150deg,var(--p-600),var(--p-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

    .blog-thumb svg {
        width: 38px;
        height: 38px;
        opacity: .85;
    }

.blog-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 14px;
    font-size: .78rem;
    color: var(--muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.blog-tag {
    color: var(--p-700);
    font-weight: 700;
}

.blog-body h3 {
    margin-bottom: 10px;
}

.blog-body p {
    font-size: .92rem;
}

.read-more {
    font-weight: 700;
    font-size: .86rem;
    color: var(--p-700);
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

    .read-more svg {
        width: 14px;
        height: 14px;
    }

.blog-layout {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 56px;
}

@media (max-width:900px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

.blog-article h2 {
    margin-top: 1.3em;
}

.blog-article p {
    font-size: 1rem;
}

.blog-article blockquote {
    border-left: 3px solid var(--p-500);
    margin: 26px 0;
    padding: 6px 24px;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--p-900);
    font-size: 1.1rem;
}

.share-row {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

    .share-row a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--p-100);
        color: var(--p-700);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .share-row svg {
        width: 17px;
        height: 17px;
    }

.sidebar-block {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px;
    margin-bottom: 24px;
}

    .sidebar-block h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }

.cat-list li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
    color: var(--ink-soft);
}

    .cat-list li:last-child {
        border-bottom: none;
    }

.cat-list span {
    color: var(--muted);
}

.recent-post {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

    .recent-post:last-child {
        border-bottom: none;
    }

.recent-thumb {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(150deg,var(--p-600),var(--p-300));
    flex: none;
}

.recent-post strong {
    display: block;
    font-size: .86rem;
    color: var(--ink);
    line-height: 1.35;
}

.recent-post span {
    font-size: .74rem;
    color: var(--muted);
}

/* =========================================================
   DOWNLOADS
   ========================================================= */
.download-group h3 {
    margin: 44px 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-group:first-child h3 {
    margin-top: 0;
}

.download-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 12px;
    transition: border-color .15s ease, transform .15s ease;
}

    .download-row:hover {
        border-color: var(--p-400);
        transform: translateX(4px);
    }

    .download-row .file-ico {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: var(--p-100);
        color: var(--p-700);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: none;
    }

        .download-row .file-ico svg {
            width: 20px;
            height: 20px;
        }

    .download-row .meta {
        flex: 1;
    }

        .download-row .meta strong {
            display: block;
            font-size: .94rem;
            color: var(--ink);
        }

        .download-row .meta span {
            font-size: .78rem;
            color: var(--muted);
        }

    .download-row .btn {
        flex: none;
    }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--p-200);
        transform: translateX(-50%);
    }

.tl-item {
    position: relative;
    width: 50%;
    padding: 0 46px 64px;
}

    .tl-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .tl-item:nth-child(even) {
        left: 50%;
        text-align: left;
    }

.tl-dot {
    position: absolute;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--p-600);
}

.tl-item:nth-child(odd) .tl-dot {
    right: -8px;
}

.tl-item:nth-child(even) .tl-dot {
    left: -8px;
}

.tl-year {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--p-700);
    font-weight: 600;
}

.tl-item .card {
    margin-top: 10px;
    text-align: left;
}

@media (max-width:760px) {
    .timeline::before {
        left: 18px;
    }

    .tl-item, .tl-item:nth-child(even) {
        width: 100%;
        left: 0;
        text-align: left;
        padding: 0 0 44px 50px;
    }

        .tl-item:nth-child(odd) .tl-dot, .tl-item:nth-child(even) .tl-dot {
            left: 10px;
            right: auto;
        }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 50px;
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.info-row {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

    .info-row:first-child {
        border-top: none;
    }

    .info-row .icon-tile {
        margin-bottom: 0;
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .info-row strong {
        display: block;
        font-size: .94rem;
        color: var(--ink);
        margin-bottom: 2px;
    }

    .info-row span, .info-row a {
        font-size: .88rem;
        color: var(--muted);
    }

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

    .social-row a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--p-100);
        color: var(--p-700);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .15s ease;
    }

        .social-row a:hover {
            background: var(--p-700);
            color: var(--white);
        }

    .social-row svg {
        width: 18px;
        height: 18px;
    }

.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    margin-top: 56px;
}

    .map-frame iframe {
        width: 100%;
        height: 380px;
        border: 0;
        display: block;
    }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 0 auto;
    background: linear-gradient(140deg,var(--p-900),var(--p-600));
    color: var(--white);
    padding: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

    .cta-band h2 {
        color: var(--white);
        margin-bottom: 8px;
    }

    .cta-band p {
        color: var(--p-100);
        margin: 0;
    }

@media (max-width:700px) {
    .cta-band {
        text-align: center;
        justify-content: center;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #2e1302;
    color: var(--p-200);
    padding: 70px 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (max-width:860px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-grid h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .86rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 18px;
}

.footer-grid .brand {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-grid p {
    color: var(--p-300);
    font-size: .88rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFF;
    transition: all .2s linear;
    font-size: .9rem;
}

    .footer-links a:hover {
        color: var(--p-600);
    }

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .88rem;
    color: var(--p-50);
}

.footer-contact svg {
    width: 17px;
    height: 17px;
    flex: none;
    margin-top: 2px;
    color: var(--p-50);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--p-100);
    }

        .footer-social a:hover {
            background: var(--p-600);
        }

    .footer-social svg {
        width: 16px;
        height: 16px;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: .82rem;
    color: var(--p-300);
    flex-wrap: wrap;
    gap: 10px;
}

    .footer-bottom .legal-links {
        display: flex;
        gap: 18px;
    }

    .footer-bottom a:hover {
        color: var(--white);
    }

/* ---------- Misc utility ---------- */
.mt-0 {
    margin-top: 0 !important;
}

.text-center {
    text-align: center !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
