:root {
    --bg: #ECECEC;
    --bg-deep: #000000;
    --panel: #FFFFFF;
    --panel-soft: #FFFFFF;
    --text: #000000;
    --muted: #6D6D6D;
    --border: #ECECEC;
    --accent: #000000;
    --accent-2: #6D6D6D;
    --accent-3: #FEFBD6;
    --green-soft: #ECECEC;
    --danger: #fe0202;
    --success: #0D6B68;
    --shadow: 0 24px 70px rgba(0,0,0,0.12);
    --shadow-soft: 0 14px 34px rgba(0,0,0,0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(254,251,214,0.26), transparent 36%),
        linear-gradient(180deg, #ECECEC 0%, var(--bg) 45%, #ECECEC 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 6%;
    background: rgba(236,236,236,0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(236,236,236,0.85);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--accent), #0D6B68 55%, var(--accent-2));
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    font-size: 16px;
    letter-spacing: -1px;
}

.brand span:last-child {
    color: var(--accent-2);
}

.nav {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 15px;
    font-weight: 650;
}

.nav a:not(.btn) {
    padding: 10px 12px;
    color: #0D6B68;
    border-radius: 999px;
}

.nav a:not(.btn):hover {
    background: rgba(0,0,0,0.08);
}

.container {
    width: min(1220px, 90%);
    margin: 0 auto;
}

.hero {
    padding: 58px 0 34px;
}

.hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    gap: 40px;
    align-items: center;
    padding: clamp(26px, 5vw, 58px);
    min-height: 620px;
    border: 1px solid rgba(255,255,255,0.62);
    border-radius: 42px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.96), rgba(0,0,0,0.94)),
        radial-gradient(circle at 80% 20%, rgba(254,251,214,0.35), transparent 30%);
    color: #FFFFFF;
    box-shadow: var(--shadow);
}

.hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, #000000, transparent 80%);
    pointer-events: none;
}

.hero-copy,
.hero-gallery {
    position: relative;
    z-index: 2;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    margin: 0 0 18px;
    background: rgba(255,255,255,0.12);
    color: #FEFBD6;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 86px);
    line-height: 0.92;
    margin: 0 0 24px;
    letter-spacing: -3.2px;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin: 0 0 30px;
    max-width: 620px;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 0;
    background: var(--accent);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.24);
}

.btn.secondary {
    background: #FFFFFF;
    color: var(--accent);
}

.btn.gold {
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    color: #000000;
}

.btn.ghost {
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: none;
}

.btn.small {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 14px;
}

.btn.danger {
    background: var(--danger);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    max-width: 660px;
}

.hero-point {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.12);
}

.hero-point strong {
    display: block;
    margin-bottom: 4px;
    color: #FEFBD6;
    font-size: 22px;
}

.hero-point span {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.4;
}

.hero-gallery {
    min-height: 480px;
}

.float-card {
    position: absolute;
    width: 58%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 30px 80px rgba(0,0,0,0.32);
}

.float-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.float-card.one {
    top: 20px;
    right: 20px;
    aspect-ratio: 0.82;
}

.float-card.two {
    left: 24px;
    bottom: 16px;
    width: 54%;
    aspect-ratio: 0.78;
}

.float-card.three {
    width: 42%;
    right: 0;
    bottom: 66px;
    aspect-ratio: 0.82;
}

.float-label {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
}

.float-label em {
    font-style: normal;
    color: #FEFBD6;
}

.category-strip {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 26px 0 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    color: #000000;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(236,236,236,0.9);
    font-size: 14px;
    font-weight: 750;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 48px 0 22px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -1.4px;
}

.section-head p {
    margin: 9px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.section-link {
    color: var(--accent-2);
    font-weight: 850;
}

.grid {
    columns: 4 230px;
    column-gap: 20px;
}

.card {
    position: relative;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin: 0 0 20px;
    background: var(--panel);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(236,236,236,0.9);
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover {
    transform: translateY(-7px);
    border-color: rgba(109,109,109,0.35);
    box-shadow: var(--shadow-soft);
}

.card img {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
    background: #ECECEC;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.card:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.02);
}

.card-content {
    padding: 16px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    letter-spacing: -0.2px;
}

.card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.72);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
}

.card-action {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-5px);
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,0.92);
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
    box-shadow: 0 12px 28px rgba(0,0,0,0.16);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.card:hover .card-action {
    opacity: 1;
    transform: translateY(0);
}

.lock-section {
    margin-top: 58px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.96), rgba(13,107,104,0.94)),
        radial-gradient(circle at 85% 15%, rgba(254,251,214,0.24), transparent 35%);
    color: #FFFFFF;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.lock-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(254,251,214,0.2);
    right: -80px;
    top: -80px;
    filter: blur(4px);
}

.lock-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
    align-items: center;
}

.lock-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 5vw, 56px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.lock-copy p {
    color: rgba(255,255,255,0.76);
    line-height: 1.7;
    margin: 0 0 24px;
}

.lock-wall {
    columns: 3 150px;
    column-gap: 12px;
    filter: blur(0.2px);
}

.lock-tile {
    display: inline-block;
    width: 100%;
    height: 170px;
    margin: 0 0 12px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
        linear-gradient(135deg, #000000, #6D6D6D);
    opacity: 0.8;
}

.lock-tile:nth-child(2n) { height: 230px; }
.lock-tile:nth-child(3n) { height: 140px; }
.lock-tile:nth-child(4n) { background: linear-gradient(135deg, #ECECEC, #6D6D6D); }
.lock-tile:nth-child(5n) { background: linear-gradient(135deg, #0D6B68, #FEFBD6); }

.lock-card {
    padding: 28px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(254,251,214,0.28), transparent 35%),
        #000000;
    color: #FFFFFF;
}

.lock-card p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
}

.filters {
    position: static;
    top: auto;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 240px 130px;
    gap: 12px;
    margin: 24px 0 30px;
    padding: 14px;
    border: 1px solid rgba(236,236,236,0.88);
    border-radius: 24px;
    background: rgba(236,236,236,0.86);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 38px rgba(0,0,0,0.08);
}

.form-wrap {
    width: min(480px, 92%);
    margin: 58px auto;
    padding: 34px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    border-radius: 30px;
    border: 1px solid rgba(236,236,236,0.92);
    box-shadow: var(--shadow-soft);
}

.form-wrap h1 {
    margin: 0 0 8px;
    font-size: 36px;
    letter-spacing: -1.2px;
}

.form-group {
    margin-bottom: 16px;
}

label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
    font-size: 14px;
    color: #000000;
}

input, textarea, select {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font: inherit;
    background: #FFFFFF;
    color: var(--text);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(109,109,109,0.55);
    box-shadow: 0 0 0 4px rgba(109,109,109,0.10);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.notice {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
}

.notice.error {
    background: #ECECEC;
    color: #000000;
}

.notice.success {
    background: #E6F0EF;
    color: var(--success);
}

.detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 34px;
    margin: 44px auto;
}

.detail-image-wrap {
    position: sticky;
    top: 96px;
    align-self: start;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #FFFFFF;
}

.detail img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    background: #FFFFFF;
}

.detail-panel {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(236,236,236,0.92);
    border-radius: 30px;
    padding: 30px;
    align-self: start;
    box-shadow: var(--shadow-soft);
}

.detail-panel h1 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -1.4px;
    line-height: 1.05;
}

.meta {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.detail-description {
    color: #6D6D6D;
    line-height: 1.75;
    margin-bottom: 24px;
}

.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 28px;
    margin: 34px auto;
}

.sidebar {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(236,236,236,0.92);
    border-radius: 24px;
    padding: 18px;
    height: fit-content;
    box-shadow: var(--shadow-soft);
}

.sidebar a {
    display: block;
    padding: 12px 12px;
    border-radius: 14px;
    font-weight: 760;
}

.sidebar a:hover {
    background: var(--green-soft);
}

.table-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(236,236,236,0.92);
    border-radius: 24px;
    padding: 18px;
    overflow-x: auto;
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 13px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

th {
    color: #6D6D6D;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 22px;
}

.stat {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(236,236,236,0.92);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.stat strong {
    display: block;
    font-size: 38px;
    letter-spacing: -1.2px;
}

.site-footer {
    margin-top: 60px;
    padding: 42px 6%;
    color: var(--muted);
    text-align: center;
    border-top: 1px solid rgba(236,236,236,0.82);
}

.site-footer strong {
    color: var(--text);
}

@media (max-width: 980px) {
    .hero-shell,
    .lock-grid,
    .detail,
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        min-height: auto;
    }

    .hero-gallery {
        min-height: 420px;
    }

    .detail-image-wrap {
        position: relative;
        top: auto;
    }

    .detail img {
        min-height: 380px;
    }
}

@media (max-width: 820px) {
    .site-header {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
        padding: 12px 5%;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        padding-top: 26px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-points,
    .filters,
    .stats {
        grid-template-columns: 1fr;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .float-card.one {
        right: 0;
    }

    .float-card.two {
        left: 0;
    }

    .float-card.three {
        right: 10px;
    }

    .form-wrap {
        margin: 30px auto;
        padding: 24px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 28px, 1220px);
    }

    .hero-shell,
    .lock-section {
        border-radius: 28px;
    }

    .hero-gallery {
        min-height: 340px;
    }

    .float-card {
        border-radius: 22px;
    }

    .float-label {
        display: none;
    }

    .grid {
        columns: 1 100%;
    }

    .card img {
        min-height: 260px;
    }
}

/* Clean compact update: smaller text, better image fit, mobile-friendly cards */
.hero-shell {
    min-height: auto;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 30px;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: -1.8px;
    max-width: 720px;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-points {
    max-width: 520px;
    gap: 10px;
}

.hero-point {
    padding: 12px;
    border-radius: 16px;
}

.hero-point strong {
    font-size: 18px;
}

.hero-point span {
    font-size: 12px;
}

.float-card img,
.card img,
.detail-image-wrap img,
.saved-card img {
    background: #ECECEC;
}

.grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}

.card {
    border-radius: 22px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: 14px 14px 16px;
}

.card-content h3 {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.card-content p {
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-badge,
.card-action,
.chip,
.kicker {
    font-size: 12px;
}

.section-head h2,
.lock-copy h2,
.form-wrap h1,
.admin-layout h1 {
    font-size: clamp(24px, 3vw, 36px);
    letter-spacing: -0.9px;
}

.section-head p,
.lock-copy p,
.detail-description,
.meta {
    font-size: 14px;
    line-height: 1.55;
}

.detail {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 26px;
}

.detail-panel h1 {
    font-size: clamp(26px, 3.4vw, 42px);
    line-height: 1.05;
    letter-spacing: -1.2px;
}

.detail-image-wrap img {
    width: 100%;
    max-height: 680px;
    object-fit: contain;
}

.filters input,
.filters select,
.form-group input,
.form-group select,
.form-group textarea {
    font-size: 14px;
}

.table-card img {
    height: 64px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .hero-shell,
    .detail {
        grid-template-columns: 1fr;
    }

    .hero-gallery {
        min-height: 380px;
    }

    .detail-panel {
        order: -1;
    }
}

@media (max-width: 620px) {
    .site-header {
        padding: 12px 4%;
    }

    .brand {
        font-size: 20px;
    }

    .container {
        width: min(100% - 28px, 1220px);
    }

    .hero {
        padding-top: 24px;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero-gallery {
        display: none;
    }

    .grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .card img {
        height: 170px;
    }

    .card-content {
        padding: 11px;
    }

    .card-content h3 {
        font-size: 14px;
    }

    .card-content p {
        font-size: 12px;
        -webkit-line-clamp: 1;
    }

    .card-badge,
    .card-action {
        display: none;
    }

    .lock-card {
        grid-column: 1 / -1;
    }
}

/* =========================================================
   HEBEEXTERIOR — RED & WHITE PREMIUM THEME
   Added after project review. Red is the primary brand colour;
   white and soft grey keep the interface clean and architectural.
   ========================================================= */
:root {
    --bg: #FFFFFF;
    --bg-deep: #000000;
    --panel: #FFFFFF;
    --panel-soft: #FFFFFF;
    --text: #000000;
    --muted: #6D6D6D;
    --border: #ECECEC;
    --accent: #fe0202;
    --accent-2: #fe0202;
    --accent-3: #6D6D6D;
    --green-soft: #FFFFFF;
    --danger: #fe0202;
    --success: #0D6B68;
    --shadow: 0 24px 70px rgba(0,0,0,0.13);
    --shadow-soft: 0 14px 34px rgba(0,0,0,0.09);
}

body {
    background:
        radial-gradient(circle at top left, rgba(254,2,2,0.10), transparent 34%),
        linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 52%, #ECECEC 100%);
}

.site-header {
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid rgba(254,2,2,0.14);
    box-shadow: 0 8px 28px rgba(0,0,0,0.05);
}

.brand-mark {
    color: #FFFFFF;
    background: linear-gradient(135deg, #fe0202, #fe0202 60%, #fe0202);
    box-shadow: 0 10px 24px rgba(254,2,2,0.25);
}

.brand span:last-child,
.section-link,
.admin-help-row a {
    color: #fe0202;
}

.nav a:not(.btn) { color: #000000; }
.nav a:not(.btn):hover { background: #ECECEC; color: #fe0202; }

.hero-shell {
    background:
        linear-gradient(128deg, rgba(0,0,0,0.98), rgba(254,2,2,0.94) 58%, rgba(254,2,2,0.90)),
        radial-gradient(circle at 82% 16%, rgba(255,255,255,0.20), transparent 34%);
    border-color: rgba(255,255,255,0.55);
    box-shadow: 0 28px 76px rgba(254,2,2,0.22);
}

.hero-shell::before {
    background-image:
        linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
}

.kicker,
.btn.ghost {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.24);
    color: #FFFFFF;
}

.btn {
    background: linear-gradient(135deg, #fe0202, #fe0202);
    color: #FFFFFF;
    box-shadow: 0 12px 28px rgba(254,2,2,0.22);
}
.btn:hover {
    background: linear-gradient(135deg, #fe0202, #fe0202);
    box-shadow: 0 18px 36px rgba(254,2,2,0.28);
}
.btn.secondary {
    background: #FFFFFF;
    color: #fe0202;
    border: 1px solid #ECECEC;
}
.btn.gold {
    background: #FFFFFF;
    color: #fe0202;
    border: 1px solid rgba(255,255,255,0.8);
}
.btn.danger { background: #fe0202; }

.hero-point,
.float-label {
    background: rgba(255,255,255,0.95);
    color: #000000;
    border-color: rgba(255,255,255,0.75);
}
.hero-point strong,
.float-label em { color: #fe0202; }

.category-strip,
.filters,
.form-wrap,
.table-card,
.stat,
.detail-panel {
    background: #FFFFFF;
    border-color: #ECECEC;
}

.chip {
    background: #FFFFFF;
    color: #6D6D6D;
    border-color: #ECECEC;
}
.chip:hover,
.chip.active {
    background: #fe0202;
    border-color: #fe0202;
    color: #FFFFFF;
}

.card {
    background: #FFFFFF;
    border-color: #ECECEC;
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.card:hover {
    border-color: rgba(254,2,2,0.28);
    box-shadow: 0 22px 48px rgba(254,2,2,0.14);
}
.card-badge {
    background: rgba(254,2,2,0.93);
    color: #FFFFFF;
}
.card-action {
    background: #FFFFFF;
    color: #fe0202;
    border: 1px solid #ECECEC;
}

.lock-section {
    background:
        linear-gradient(130deg, #fe0202, #fe0202 62%, #fe0202);
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.2);
}
.lock-card {
    background: rgba(255,255,255,0.97);
    color: #000000;
    border-color: rgba(255,255,255,0.7);
}
.lock-tile { background: linear-gradient(135deg, #FFFFFF, #ECECEC); }
.lock-tile:nth-child(4n) { background: linear-gradient(135deg, #FFFFFF, #fe0202); }
.lock-tile:nth-child(5n) { background: linear-gradient(135deg, #fe0202, #FFFFFF); }

.form-group input,
.form-group select,
.form-group textarea,
.filters input,
.filters select {
    background: #FFFFFF;
    border-color: #ECECEC;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.filters input:focus,
.filters select:focus {
    border-color: #fe0202;
    box-shadow: 0 0 0 4px rgba(254,2,2,0.10);
}

.sidebar {
    background: linear-gradient(180deg, #fe0202, #fe0202);
    color: #FFFFFF;
}
.sidebar a { color: rgba(255,255,255,0.90); }
.sidebar a:hover { background: rgba(255,255,255,0.16); color: #FFFFFF; }

.notice { background: #FFFFFF; border-color: #ECECEC; }
.notice.error { background: #ECECEC; color: #000000; border-color: #FEFBD6; }

.site-footer {
    background: #FFFFFF;
    border-top: 1px solid #ECECEC;
}
.site-footer strong { color: #fe0202; }

@media (max-width: 768px) {
    .site-header { background: #FFFFFF; }
}

/* Curated exterior gallery unlock section */
.gallery-unlock-section {
    margin-top: 68px;
    padding: 72px 24px;
    background:
        radial-gradient(circle at 18% 30%, rgba(255,255,255,0.08), transparent 32%),
        linear-gradient(135deg, #fe0202 0%, #fe0202 52%, #fe0202 100%);
    overflow: hidden;
}
.gallery-unlock-content {
    width: min(1400px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 0.85fr) minmax(500px, 1.4fr);
    align-items: center;
    gap: 56px;
}
.gallery-unlock-text { color: #FFFFFF; }
.gallery-label {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 26px;
    border: 1px solid rgba(255,255,255,0.46);
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.gallery-unlock-text h2 {
    margin: 0 0 22px;
    color: #FFFFFF;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.03;
    letter-spacing: -0.04em;
}
.gallery-unlock-text p {
    max-width: 560px;
    margin: 0 0 30px;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    line-height: 1.65;
}
.gallery-unlock-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.gallery-btn {
    min-height: 54px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.gallery-btn:hover { transform: translateY(-3px); }
.gallery-btn-primary {
    background: #FFFFFF;
    color: #fe0202;
    box-shadow: 0 14px 35px rgba(0,0,0,0.25);
}
.gallery-btn-primary:hover {
    background: #FFFFFF;
    box-shadow: 0 18px 44px rgba(0,0,0,0.34);
}
.gallery-btn-outline {
    border: 1px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    color: #FFFFFF;
}
.gallery-btn-outline:hover { background: rgba(255,255,255,0.16); }
.gallery-unlock-visual { position: relative; }
.gallery-unlock-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(0,0,0,0.34);
}
@media (max-width: 1050px) {
    .gallery-unlock-content { grid-template-columns: 1fr; gap: 38px; }
    .gallery-unlock-text { max-width: 720px; }
    .gallery-unlock-visual { width: 100%; }
}
@media (max-width: 640px) {
    .gallery-unlock-section { margin-top: 48px; padding: 52px 18px; }
    .gallery-unlock-text h2 { font-size: 42px; }
    .gallery-unlock-text p { font-size: 16px; }
    .gallery-unlock-actions { flex-direction: column; }
    .gallery-btn { width: 100%; }
    .gallery-unlock-visual img { border-radius: 20px; }
}


/* Informational pages and expanded navigation */
.page-hero {
    padding: 92px 24px 76px;
    background: linear-gradient(135deg, #fe0202 0%, #fe0202 55%, #fe0202 100%);
    color: #FFFFFF;
}
.page-hero.compact { padding: 68px 24px 58px; }
.page-hero h1 { max-width: 900px; margin: 12px 0 18px; color: #FFFFFF; font-size: clamp(38px, 5vw, 68px); line-height: 1.05; }
.page-hero p { max-width: 760px; margin: 0; color: rgba(255,255,255,.9); font-size: 18px; line-height: 1.7; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.narrow { max-width: 920px; }
.content-section { padding-top: 68px; padding-bottom: 76px; }
.content-grid { display: grid; gap: 22px; }
.content-grid.two-col { grid-template-columns: repeat(2, minmax(0,1fr)); }
.info-card { padding: 30px; border: 1px solid #ECECEC; border-radius: 22px; background: #FFFFFF; box-shadow: 0 14px 36px rgba(0,0,0,.06); }
.info-card h2 { margin-top: 0; font-size: 24px; }
.info-card p, .legal-copy p { color: #6D6D6D; line-height: 1.75; }
.callout-panel { margin-top: 20px; margin-bottom: 78px; padding: 42px; border-radius: 28px; background: #FFFFFF; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.callout-panel h2 { margin: 8px 0 0; }
.faq-list details { padding: 22px 0; border-bottom: 1px solid #ECECEC; }
.faq-list summary { cursor: pointer; font-size: 19px; font-weight: 750; }
.faq-list details p { margin: 14px 0 0; color: #6D6D6D; line-height: 1.7; }
.legal-copy h2 { margin-top: 32px; font-size: 23px; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.contact-intro h2 { font-size: 34px; margin-top: 0; }
.contact-intro > p { color: #6D6D6D; line-height: 1.75; }
.contact-note { padding: 18px 0; border-bottom: 1px solid #ECECEC; display: grid; gap: 5px; }
.contact-note span { color: #6D6D6D; }
.contact-form textarea { width: 100%; resize: vertical; }
.message-list { display: grid; gap: 18px; }
.message-card { padding: 24px; border: 1px solid #ECECEC; border-radius: 18px; background: #FFFFFF; }
.message-card.is-new { border-left: 5px solid #fe0202; }
.message-meta { display: flex; justify-content: space-between; gap: 20px; }
.message-meta span { color: #6D6D6D; font-size: 13px; }
.footer-grid { width: min(1400px, calc(100% - 48px)); margin: 0 auto; padding: 58px 0 42px; display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 40px; text-align: left; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid h3 { margin: 0 0 8px; font-size: 15px; color: #FFFFFF; }
.footer-grid a { color: rgba(255,255,255,.76); text-decoration: none; }
.footer-grid a:hover { color: #FFFFFF; }
.footer-grid p { margin: 6px 0 0; max-width: 440px; }
.footer-brand { font-size: 25px; font-weight: 850; color: #FFFFFF !important; }
.footer-brand span { color: #fe0202; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 24px 26px; }
.footer-bottom p { margin: 0; }
@media (max-width: 1000px) {
    .site-header { flex-wrap: wrap; }
    .nav { flex-wrap: wrap; justify-content: flex-end; }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
    .content-grid.two-col, .contact-layout { grid-template-columns: 1fr; }
    .callout-panel { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav { width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; flex-wrap: nowrap; }
    .nav a { white-space: nowrap; }
    .message-meta { flex-direction: column; gap: 5px; }
}

/* 2026 homepage identity and first-impression upgrade */
:root{--brand-red:#fe0202;--brand-red-dark:#fe0202;--brand-pale:#FFFFFF;--ink:#000000}
.brand-logo{display:inline-flex;align-items:center}.brand-logo img{width:255px;height:auto;display:block}.brand-mark,.brand>span:not(.brand-mark){display:none}
.home-hero{padding:54px 0 64px;background:linear-gradient(120deg,#fe0202 0%,#fe0202 54%,#fe0202 100%);overflow:hidden;position:relative}.home-hero:after{content:"";position:absolute;width:620px;height:620px;border:1px solid rgba(255,255,255,.15);border-radius:50%;right:-230px;top:-270px}.home-hero-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:64px;align-items:center;position:relative;z-index:2}.home-hero-copy{color:#FFFFFF}.eyebrow,.section-kicker{display:inline-block;font-size:12px;font-weight:850;letter-spacing:.13em;text-transform:uppercase;color:var(--brand-red)}.eyebrow{padding:9px 14px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.28);color:#FFFFFF}.home-hero h1{font-size:clamp(48px,6vw,82px);line-height:.98;letter-spacing:-3.4px;margin:22px 0}.hero-lead{font-size:18px;line-height:1.72;color:rgba(255,255,255,.88);max-width:650px}.btn.red{background:#FFFFFF;color:var(--brand-red);box-shadow:0 15px 35px rgba(0,0,0,.25)}.btn.white-outline{background:transparent;border:1px solid rgba(255,255,255,.7);color:#FFFFFF;box-shadow:none}.trust-row{display:flex;flex-wrap:wrap;gap:10px 26px;margin-top:34px;font-size:13px;color:rgba(255,255,255,.78)}.trust-row strong{display:block;font-size:22px;color:#FFFFFF}.hero-showcase{min-height:570px;position:relative}.hero-showcase figure{margin:0;overflow:hidden;background:#FFFFFF;box-shadow:0 30px 70px rgba(0,0,0,.32)}.hero-showcase img{width:100%;height:100%;object-fit:cover}.showcase-main{position:absolute;inset:30px 80px 25px 40px;border-radius:32px}.showcase-main figcaption{position:absolute;left:18px;right:18px;bottom:18px;padding:16px 18px;border-radius:17px;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);color:#000000}.showcase-main figcaption span{display:block;color:var(--brand-red);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.showcase-main figcaption strong{display:block;margin-top:4px;font-size:18px}.showcase-small{position:absolute;width:180px;height:215px;border:8px solid #FFFFFF;border-radius:24px;right:0}.showcase-small.top{top:0}.showcase-small.bottom{bottom:0}.intro-section,.sample-section{padding:86px 0}.intro-heading{max-width:780px;margin-bottom:34px}.intro-heading h2,.clean-head h2,.how-section h2{font-size:clamp(34px,4.2vw,58px);line-height:1.05;letter-spacing:-2px;margin:10px 0 0;color:var(--ink)}.intro-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.info-card{padding:30px;border:1px solid #ECECEC;border-radius:24px;background:#FFFFFF;box-shadow:0 16px 38px rgba(0,0,0,.07)}.info-card>span{color:var(--brand-red);font-weight:900}.info-card h3{font-size:22px;margin:22px 0 10px}.info-card p,.clean-head p{color:#6D6D6D;line-height:1.7}.category-section{padding:82px 0;background:#FFFFFF}.clean-head{align-items:end}.red-link{color:var(--brand-red)}.category-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.category-tile{min-height:180px;padding:24px;border-radius:22px;border:1px solid #ECECEC;background:linear-gradient(145deg,#FFFFFF,#FFFFFF);display:flex;flex-direction:column;transition:.22s}.category-tile:hover{transform:translateY(-5px);border-color:#ECECEC;box-shadow:0 18px 36px rgba(254,2,2,.11)}.category-tile span{font-size:12px;font-weight:900;color:#6D6D6D}.category-tile strong{font-size:20px;margin:auto 0 14px}.category-tile em{font-style:normal;font-size:13px;font-weight:800;color:var(--brand-red)}.premium-card{border:1px solid #ECECEC;background:#FFFFFF}.premium-card .card-content p{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.view-link{display:inline-block;margin-top:12px;color:var(--brand-red);font-weight:800;font-size:13px}.how-section{padding:90px 0;background:#000000;color:#FFFFFF}.how-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}.how-section h2{color:#FFFFFF}.how-section p{color:#ECECEC;line-height:1.75;font-size:17px}.section-kicker.light{color:#FEFBD6}.how-section ol{list-style:none;padding:0;margin:0}.how-section li{display:flex;gap:18px;padding:20px 0;border-bottom:1px solid rgba(255,255,255,.12)}.how-section li b{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--brand-red)}.how-section li span{display:flex;flex-direction:column;color:#6D6D6D}.how-section li strong{font-size:20px;color:#FFFFFF;margin-bottom:4px}.gallery-unlock-section{background:linear-gradient(135deg,#fe0202,#fe0202 58%,#fe0202)}
@media(max-width:980px){.home-hero-grid,.how-grid{grid-template-columns:1fr}.hero-showcase{min-height:500px}.intro-grid{grid-template-columns:1fr}.category-grid{grid-template-columns:repeat(2,1fr)}.brand-logo img{width:210px}}
@media(max-width:640px){.home-hero{padding:34px 0 48px}.home-hero h1{font-size:48px;letter-spacing:-2px}.hero-showcase{min-height:390px}.showcase-main{inset:22px 40px 20px 0}.showcase-small{width:130px;height:155px;border-width:5px}.trust-row{gap:18px}.category-grid{grid-template-columns:1fr}.category-tile{min-height:145px}.brand-logo img{width:175px}.intro-section,.sample-section,.category-section{padding:60px 0}}


/* Hero slider update */
.hero-slider-section {
    padding: 28px 0 24px;
}

.hero-slider {
    position: relative;
    min-height: 640px;
    border-radius: 34px;
    overflow: hidden;
    background: #000000;
    box-shadow: 0 26px 70px rgba(0,0,0,0.22);
}

.hero-slider-track {
    position: relative;
    min-height: 640px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-media,
.hero-slide-media img,
.hero-slide-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.76) 34%, rgba(109,109,109,0.42) 54%, rgba(0,0,0,0.18) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28));
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    min-height: 640px;
    padding: 88px 78px 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #FFFFFF;
}

.hero-slide-eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 22px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.32);
    background: rgba(255,255,255,0.12);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-slide-content h1 {
    margin: 0 0 20px;
    max-width: 700px;
    font-size: clamp(44px, 5.8vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.hero-slide-content p {
    margin: 0 0 28px;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.72;
    color: rgba(255,255,255,0.88);
}

.hero-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-btn-primary {
    background: #FFFFFF;
    color: #fe0202;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.hero-btn-primary:hover {
    background: #FFFFFF;
}

.hero-btn-secondary {
    background: rgba(255,255,255,0.10);
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.38);
    box-shadow: none;
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.18);
}

.hero-slide-meta {
    margin-top: 20px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 700;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.16);
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider-arrow:hover {
    background: rgba(255,255,255,0.24);
    transform: translateY(-2px);
}

.hero-slider-prev { left: 24px; }
.hero-slider-next { right: 24px; }

.hero-slider-dots {
    position: absolute;
    left: 78px;
    bottom: 38px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.36);
    cursor: pointer;
    transition: width 0.24s ease, background 0.24s ease;
}

.hero-slider-dot.is-active {
    width: 34px;
    background: #FFFFFF;
}

.home-hero-summary {
    padding: 26px 0 12px;
}

.hero-summary-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: start;
}

.hero-summary-copy,
.hero-summary-points article {
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 28px;
    box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.hero-summary-copy {
    padding: 34px;
}

.hero-summary-copy h2 {
    margin: 10px 0 14px;
    font-size: clamp(30px, 3.7vw, 50px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    color: var(--ink);
}

.hero-summary-copy p {
    margin: 0;
    color: #6D6D6D;
    line-height: 1.8;
    font-size: 16px;
}

.hero-summary-points {
    display: grid;
    gap: 16px;
}

.hero-summary-points article {
    padding: 24px;
}

.hero-summary-points strong {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-red);
    font-size: 18px;
}

.hero-summary-points span {
    display: block;
    color: #6D6D6D;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 1050px) {
    .hero-slider,
    .hero-slider-track,
    .hero-slide-content { min-height: 580px; }
    .hero-slide-content { padding: 78px 56px 104px; }
    .hero-slider-dots { left: 56px; }
    .hero-summary-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-slider-section { padding-top: 20px; }
    .hero-slider,
    .hero-slider-track,
    .hero-slide-content { min-height: 620px; }
    .hero-slide-content {
        padding: 72px 24px 116px;
    }
    .hero-slide-content h1 {
        font-size: 42px;
        letter-spacing: -0.04em;
    }
    .hero-slide-content p {
        font-size: 16px;
        max-width: 100%;
    }
    .hero-slider-arrow {
        width: 44px;
        height: 44px;
        margin-top: -22px;
        font-size: 18px;
    }
    .hero-slider-prev { left: 14px; }
    .hero-slider-next { right: 14px; }
    .hero-slider-dots {
        left: 24px;
        bottom: 22px;
    }
    .hero-slide-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-slide-actions .btn {
        width: 100%;
    }
    .hero-summary-copy { padding: 26px; }
}


/* Slider quality + full-width refinement */
.hero-slider-section .container {
    width: min(1660px, 98%);
}

.hero-slider-section {
    padding-top: 14px;
}

.hero-slider {
    min-height: 680px;
    border-radius: 26px;
}

.hero-slider-track {
    min-height: 680px;
}

.hero-slide-content {
    max-width: 820px;
    min-height: 680px;
    padding: 94px 84px 112px;
}

.hero-slide-content h1 {
    max-width: 760px;
}

.hero-slide-media img {
    image-rendering: auto;
    transform: scale(1.02);
}

.hero-slide-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.74) 32%, rgba(254,2,2,0.42) 56%, rgba(0,0,0,0.12) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.18));
}

@media (max-width: 1050px) {
    .hero-slider-section .container {
        width: min(1660px, 96%);
    }
    .hero-slider,
    .hero-slider-track,
    .hero-slide-content {
        min-height: 620px;
    }
    .hero-slide-content {
        padding: 80px 44px 108px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section .container {
        width: min(1660px, 100%);
    }
    .hero-slider {
        border-radius: 0;
    }
    .hero-slider,
    .hero-slider-track,
    .hero-slide-content {
        min-height: 600px;
    }
    .hero-slide-content {
        padding: 68px 22px 112px;
    }
}


/* Slider fit and control refinements */
.hero-slider,
.hero-slider-track,
.hero-slide-content {
    min-height: 610px;
}

.hero-slide-content {
    padding: 68px 78px 92px;
}

.hero-slide-content h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    max-width: 720px;
}

.hero-slide-content p {
    max-width: 640px;
    margin-bottom: 24px;
}

.hero-slider-arrow {
    background: #FFFFFF !important;
    color: #fe0202 !important;
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.hero-slider-arrow:hover {
    background: #FFFFFF !important;
    color: #fe0202 !important;
}

.hero-slide-media img {
    object-fit: cover;
}

@media (max-width: 1050px) {
    .hero-slider,
    .hero-slider-track,
    .hero-slide-content {
        min-height: 580px;
    }

    .hero-slide-content {
        padding: 62px 46px 90px;
    }

    .hero-slide-content h1 {
        font-size: clamp(40px, 6vw, 60px);
    }
}

@media (max-width: 768px) {
    .hero-slider,
    .hero-slider-track,
    .hero-slide-content {
        min-height: 560px;
    }

    .hero-slide-content {
        padding: 56px 22px 96px;
    }

    .hero-slide-content h1 {
        font-size: 38px;
        line-height: 1.03;
    }

    .hero-slide-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}


/* Premium spacing and layout refinement */
:root{--section-space:58px;--section-space-mobile:42px}
body{overflow-x:hidden}
.container{width:min(1380px,94%)}
.site-header{padding-top:10px;padding-bottom:10px}
.hero-slider-section{padding:10px 0}
.hero-slider-section .container{width:min(1760px,99%)}
.hero-slider,.hero-slider-track,.hero-slide-content{min-height:620px}
.hero-slide-content{padding-top:70px;padding-bottom:92px}
.home-hero-summary{padding:18px 0 0}
.hero-summary-grid{gap:16px}
.hero-summary-copy{padding:28px}
.hero-summary-points{gap:12px}
.hero-summary-points article{padding:20px 22px}
.intro-section,.sample-section{padding:var(--section-space) 0}
.intro-section{padding-top:46px}
.intro-heading{margin-bottom:24px}
.intro-grid{gap:16px}
.info-card{padding:24px}
.info-card h3{margin-top:15px}
.category-section{padding:var(--section-space) 0}
.section-head{margin-top:0;margin-bottom:18px}
.category-grid{gap:12px}
.category-tile{min-height:150px;padding:20px}
.sample-section .grid{column-gap:16px}
.card{margin-bottom:16px}
.card-content{padding:14px 15px 16px}
.how-section{padding:62px 0}
.how-grid{gap:54px}
.how-section li{padding:16px 0}
.gallery-unlock-section{margin-top:0;padding-top:58px;padding-bottom:58px}
.gallery-unlock-content{gap:38px}
.gallery-unlock-text h2{margin-bottom:16px}
.gallery-unlock-text p{margin-bottom:22px}
.site-footer{margin-top:0}
.footer-grid{gap:28px}
.home-hero-summary,.intro-section,.sample-section{position:relative}
.home-hero-summary::before,.intro-section::before,.sample-section::before{content:"";position:absolute;inset:0;pointer-events:none;background:radial-gradient(circle at 8% 20%,rgba(254,2,2,.035),transparent 26%),radial-gradient(circle at 92% 80%,rgba(254,2,2,.028),transparent 24%)}
.hero-summary-grid,.intro-section>*,.sample-section>*{position:relative;z-index:1}
@media(max-width:980px){.container{width:min(1380px,92%)}.hero-slider-section .container{width:96%}.hero-slider,.hero-slider-track,.hero-slide-content{min-height:580px}.intro-section,.sample-section,.category-section{padding:48px 0}.how-section,.gallery-unlock-section{padding:50px 0}}
@media(max-width:640px){.container{width:92%}.site-header{padding:8px 4%}.hero-slider-section{padding-top:0}.hero-slider-section .container{width:100%}.hero-slider,.hero-slider-track,.hero-slide-content{min-height:570px}.home-hero-summary{padding-top:14px}.hero-summary-copy,.hero-summary-points article,.info-card{padding:20px}.intro-section,.sample-section,.category-section{padding:var(--section-space-mobile) 0}.how-section,.gallery-unlock-section{padding:44px 0}.category-tile{min-height:126px}}


/* Featured gallery balance and single-access refinement */
.featured-head {
    display: block;
    max-width: 920px;
}

.featured-design-grid {
    columns: unset;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.featured-design-grid .card {
    display: block;
    width: 100%;
    margin: 0;
}

.featured-design-grid .card img {
    height: 330px;
    min-height: 330px;
}

.featured-gallery-cta {
    margin-top: 28px;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #ECECEC;
    border-radius: 24px;
    background: linear-gradient(145deg, #FFFFFF, #FFFFFF);
    box-shadow: 0 16px 34px rgba(109,109,109,0.08);
}

.featured-gallery-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 999px;
    background: var(--brand-red);
    color: #FFFFFF;
    font-weight: 850;
    box-shadow: 0 14px 30px rgba(254,2,2,0.22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.featured-gallery-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(254,2,2,0.28);
}

.featured-gallery-cta p {
    margin: 10px 0 0;
    color: #6D6D6D;
    font-size: 14px;
}

@media (max-width: 980px) {
    .featured-design-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .featured-design-grid {
        grid-template-columns: 1fr;
    }

    .featured-design-grid .card img {
        height: 300px;
        min-height: 300px;
    }

    .featured-gallery-cta {
        padding: 24px 18px;
    }

    .featured-gallery-button {
        width: 100%;
    }
}


/* Technical SEO UX helpers */
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 24px;
    color: #6D6D6D;
    font-size: 14px;
}
.breadcrumbs a { color: var(--brand-red, #fe0202); font-weight: 700; }
.card img { aspect-ratio: 4 / 3; height: auto; }


/* 2026-07 final header and 4K hero slider refinement */
.site-header {
    min-height: 68px;
    padding: 8px clamp(18px, 4vw, 72px);
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid rgba(254,2,2,0.10);
}

.brand-logo {
    flex: 0 0 auto;
    line-height: 0;
}

.brand-logo img {
    width: clamp(210px, 16vw, 278px);
    height: auto;
    max-height: 46px;
    object-fit: contain;
}

.hero-slider-section {
    padding: 10px 0 18px;
}

.hero-slider-section .container {
    width: calc(100% - 20px);
    max-width: 1920px;
}

.hero-slider {
    height: clamp(620px, 72vh, 780px);
    min-height: 620px;
    border-radius: 28px;
    background: #000000;
}

.hero-slider-track,
.hero-slide,
.hero-slide-content {
    width: 100%;
    height: 100%;
    min-height: 0;
}

.hero-slide-media img {
    transform: none;
    object-fit: cover;
}

.hero-slide-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.79) 31%, rgba(109,109,109,0.50) 54%, rgba(0,0,0,0.12) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.26));
}

.hero-slide-content {
    max-width: 930px;
    padding: clamp(58px, 7vh, 92px) clamp(110px, 7.2vw, 150px) 104px;
    justify-content: center;
}

.hero-slide-eyebrow {
    margin-bottom: 18px;
}

.hero-slide-content h1 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: clamp(48px, 4.6vw, 72px);
    line-height: 1.01;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.hero-slide-content p {
    max-width: 700px;
    margin-bottom: 24px;
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.65;
}

.hero-slide-meta {
    margin-top: 18px;
}

.hero-slider-arrow {
    width: 58px;
    height: 58px;
    margin-top: -29px;
    font-size: 25px;
}

.hero-slider-prev { left: 28px; }
.hero-slider-next { right: 28px; }

.hero-slider-dots {
    left: clamp(110px, 7.2vw, 150px);
    bottom: 34px;
}

@media (max-width: 1050px) {
    .site-header {
        min-height: 64px;
        padding-inline: 4%;
    }

    .brand-logo img {
        width: 220px;
        max-height: 42px;
    }

    .hero-slider {
        height: clamp(590px, 68vh, 700px);
        min-height: 590px;
    }

    .hero-slide-content {
        padding: 64px 78px 96px;
        max-width: 820px;
    }

    .hero-slide-content h1 {
        font-size: clamp(44px, 6vw, 62px);
        max-width: 700px;
    }

    .hero-slider-dots {
        left: 78px;
    }
}

@media (max-width: 768px) {
    .site-header {
        min-height: 60px;
    }

    .brand-logo img {
        width: 190px;
        max-height: 38px;
    }

    .hero-slider-section {
        padding-top: 0;
    }

    .hero-slider-section .container {
        width: 100%;
    }

    .hero-slider {
        height: 650px;
        min-height: 650px;
        border-radius: 0;
    }

    .hero-slide-content {
        padding: 60px 24px 112px;
        justify-content: flex-end;
    }

    .hero-slide-content h1 {
        max-width: 100%;
        font-size: clamp(39px, 11vw, 50px);
        line-height: 1.02;
    }

    .hero-slide-content p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-slider-arrow {
        top: 46%;
        width: 46px;
        height: 46px;
        margin-top: -23px;
    }

    .hero-slider-prev { left: 12px; }
    .hero-slider-next { right: 12px; }

    .hero-slider-dots {
        left: 24px;
        bottom: 24px;
    }
}

@media (max-width: 520px) {
    .site-header {
        align-items: flex-start;
        gap: 6px;
    }

    .brand-logo img {
        width: 170px;
    }

    .hero-slider {
        height: 690px;
        min-height: 690px;
    }

    .hero-slide-content {
        padding: 54px 20px 108px;
    }

    .hero-slide-eyebrow {
        font-size: 10px;
        letter-spacing: 0.09em;
    }
}

/* Responsive system — final overrides */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }
img, video, iframe, svg { max-width: 100%; height: auto; }
input, select, textarea, button { max-width: 100%; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(12px, 1.5vw, 24px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(254,2,2,.18);
    border-radius: 12px;
    background: #FFFFFF;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    border-radius: 4px;
    background: #000000;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Fluid layout helpers */
.container { width: min(1380px, calc(100% - 40px)); }
.hero-summary-grid,
.intro-grid,
.how-grid,
.footer-grid { min-width: 0; }
.hero-summary-grid > *,
.intro-grid > *,
.how-grid > *,
.footer-grid > * { min-width: 0; }

.hero-slide-content h1,
.hero-slide-content p { overflow-wrap: anywhere; }
.hero-slide-actions { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 1100px) {
    .nav { gap: 12px; }
    .nav a { font-size: 14px; }
    .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .site-header {
        min-height: 64px;
        padding: 9px 20px;
    }
    .brand-logo img { width: clamp(170px, 38vw, 220px); }
    .nav-toggle { display: block; flex: 0 0 auto; }
    .nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        max-height: calc(100vh - 70px);
        padding: 14px 20px 22px;
        overflow-y: auto;
        background: rgba(255,255,255,.98);
        border-bottom: 1px solid rgba(254,2,2,.12);
        box-shadow: 0 18px 35px rgba(0,0,0,.12);
    }
    .nav.is-open { display: flex; }
    .nav a,
    .nav .btn.small {
        display: block;
        width: 100%;
        padding: 12px 14px;
        text-align: left;
        border-radius: 10px;
    }
    body.nav-open { overflow: hidden; }

    .hero-slider {
        height: clamp(560px, 72svh, 680px);
        min-height: 560px;
    }
    .hero-slide-content {
        max-width: 760px;
        padding: 56px 68px 92px;
    }
    .hero-slide-content h1 { font-size: clamp(42px, 7vw, 58px); }
    .hero-summary-grid,
    .intro-grid,
    .how-grid,
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 28px, 1380px); }
    .site-header { padding-inline: 14px; }
    .brand-logo img { width: 165px; max-height: 36px; }

    .hero-slider-section .container { width: 100%; }
    .hero-slider {
        height: clamp(600px, 82svh, 720px);
        min-height: 600px;
        border-radius: 0;
    }
    .hero-slide-media img { object-position: 62% center; }
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.38) 38%, rgba(0,0,0,.94) 100%);
    }
    .hero-slide-content {
        justify-content: flex-end;
        padding: 44px 20px 98px;
    }
    .hero-slide-content h1 {
        font-size: clamp(36px, 11vw, 48px);
        line-height: 1.04;
        letter-spacing: -.035em;
    }
    .hero-slide-content p { font-size: 15px; line-height: 1.55; }
    .hero-slide-actions { flex-direction: column; align-items: stretch; }
    .hero-slide-actions .btn { width: 100%; text-align: center; }
    .hero-slider-arrow { width: 42px; height: 42px; font-size: 20px; }
    .hero-slider-prev { left: 10px; }
    .hero-slider-next { right: 10px; }
    .hero-slider-dots { left: 20px; bottom: 20px; }

    .category-grid,
    .cards-grid,
    .info-grid,
    .sample-grid { grid-template-columns: 1fr !important; }
    .category-tile,
    .card { min-width: 0; }

    table { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 380px) {
    .brand-logo img { width: 145px; }
    .site-header { padding-inline: 10px; }
    .hero-slider { min-height: 620px; }
    .hero-slide-content { padding-inline: 16px; }
    .hero-slide-content h1 { font-size: 34px; }
}

/* Clear, colour-neutral hero slider visual */
.hero-slider {
    background: #000000;
    box-shadow: 0 26px 70px rgba(0,0,0,0.18);
}

.hero-slide-media img {
    transform: none;
    filter: brightness(1.06) contrast(1.05) saturate(0.92);
    image-rendering: auto;
}

.hero-slide-overlay {
    background:
        linear-gradient(90deg,
            rgba(0,0,0,0.78) 0%,
            rgba(0,0,0,0.60) 27%,
            rgba(0,0,0,0.30) 46%,
            rgba(0,0,0,0.08) 66%,
            rgba(0,0,0,0.02) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.14));
}

.hero-btn-primary {
    color: #000000;
}

.hero-slider-arrow {
    color: #000000 !important;
}

.hero-slider-arrow:hover {
    color: #000000 !important;
}

@media (max-width: 768px) {
    .hero-slide-media img {
        filter: brightness(1.02) contrast(1.04) saturate(0.94);
    }

    .hero-slide-overlay {
        background:
            linear-gradient(180deg,
                rgba(0,0,0,0.22) 0%,
                rgba(0,0,0,0.48) 42%,
                rgba(0,0,0,0.82) 100%);
    }
}

/* =========================================================
   Animated discovery section — premium industrial UI
   ========================================================= */
.animated-summary {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(46px, 6vw, 90px) 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(109,109,109,0.10), transparent 28%),
        radial-gradient(circle at 92% 82%, rgba(109,109,109,0.14), transparent 30%),
        linear-gradient(180deg, #FFFFFF 0%, #ECECEC 100%);
}

.animated-summary::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 94%);
}

.summary-ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.summary-orbit {
    position: absolute;
    display: block;
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 50%;
    animation: summaryOrbit 18s linear infinite;
}

.summary-orbit::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6D6D6D;
    box-shadow: 0 0 28px rgba(109,109,109,0.8);
}

.summary-orbit-one { width: 420px; height: 420px; left: -190px; top: -170px; }
.summary-orbit-one::after { right: 66px; bottom: 42px; }
.summary-orbit-two { width: 300px; height: 300px; right: -120px; top: 32px; animation-direction: reverse; animation-duration: 22s; }
.summary-orbit-two::after { left: 38px; top: 52px; background: #6D6D6D; box-shadow: 0 0 28px rgba(109,109,109,0.75); }
.summary-orbit-three { width: 220px; height: 220px; right: 26%; bottom: -120px; animation-duration: 14s; }
.summary-orbit-three::after { top: 20px; right: 30px; }

.animated-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    gap: clamp(24px, 3vw, 42px);
    align-items: stretch;
}

.animated-summary-copy {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 38px;
    background:
        radial-gradient(circle at 80% 20%, rgba(109,109,109,.14), transparent 30%),
        linear-gradient(135deg, #000000 0%, #000000 58%, #000000 100%);
    color: #FFFFFF;
    box-shadow: 0 38px 90px rgba(0,0,0,.18);
    transform-style: preserve-3d;
}

.animated-summary-copy::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(112deg, transparent 15%, rgba(255,255,255,.055) 43%, transparent 64%);
    transform: translateX(-120%);
    animation: summarySheen 7s ease-in-out infinite;
}

.summary-copy-body {
    position: relative;
    z-index: 4;
    width: min(650px, 70%);
    padding: clamp(38px, 5vw, 72px);
}

.summary-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #E6F0EF;
}

.summary-kicker i {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6D6D6D;
    box-shadow: 0 0 0 0 rgba(109,109,109,.5);
    animation: summaryPulse 2s ease-out infinite;
}

.animated-summary-copy h2 {
    display: flex;
    flex-direction: column;
    margin: 22px 0 22px;
    font-size: clamp(48px, 5.4vw, 82px);
    line-height: .9;
    letter-spacing: -.055em;
    color: #FFFFFF;
}

.animated-summary-copy h2 span {
    display: block;
    opacity: 0;
    transform: translateY(32px);
    animation: summaryTitleIn .75s cubic-bezier(.2,.8,.2,1) forwards;
}

.animated-summary-copy h2 span:nth-child(2) { animation-delay: .12s; }
.animated-summary-copy h2 span:nth-child(3) { animation-delay: .24s; }
.animated-summary-copy h2 .summary-title-accent {
    color: transparent;
    -webkit-text-stroke: 1px rgba(254,251,214,.95);
    text-shadow: 0 0 34px rgba(109,109,109,.18);
}

.animated-summary-copy p {
    max-width: 610px;
    margin: 0;
    color: rgba(230,240,239,.75);
    font-size: 17px;
    line-height: 1.78;
}

.summary-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.summary-stat-row div {
    position: relative;
    overflow: hidden;
    padding: 18px 16px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(12px);
}

.summary-stat-row div::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: linear-gradient(#6D6D6D, #6D6D6D);
}

.summary-stat-row strong {
    display: block;
    color: #FFFFFF;
    font-size: 27px;
    line-height: 1;
}

.summary-stat-row span {
    display: block;
    margin-top: 8px;
    color: rgba(230,240,239,.55);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.summary-architecture {
    --scene-x: 0px;
    --scene-y: 0px;
    position: absolute;
    top: 46px;
    right: -32px;
    width: 47%;
    height: calc(100% - 92px);
    z-index: 2;
    transform: translate3d(var(--scene-x), var(--scene-y), 0);
    transition: transform .25s ease-out;
}

.architecture-grid {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 30px 0 0 30px;
    background-image:
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.3), #000000 40%);
}

.architecture-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    right: 12%;
    top: 20%;
    border-radius: 50%;
    background: rgba(109,109,109,.16);
    filter: blur(55px);
    animation: architectureGlow 4.8s ease-in-out infinite alternate;
}

.house-frame {
    position: absolute;
    inset: 13% 9% 10% 0;
    border-left: 2px solid rgba(254,251,214,.6);
    border-bottom: 2px solid rgba(255,255,255,.16);
    filter: drop-shadow(0 28px 34px rgba(0,0,0,.34));
}

.metal-beam,
.metal-louvers,
.metal-facade,
.metal-balcony,
.metal-gate,
.metal-ground,
.architecture-light-scan {
    position: absolute;
    display: block;
}

.metal-beam {
    height: 7px;
    border-radius: 2px;
    background: linear-gradient(90deg, #6D6D6D, #6D6D6D 45%, #0D6B68);
    box-shadow: 0 7px 18px rgba(0,0,0,.28);
}

.beam-a { left: 4%; top: 16%; width: 80%; transform: skewX(-8deg); }
.beam-b { left: 18%; top: 45%; width: 73%; }
.beam-c { left: 10%; top: 72%; width: 87%; }

.metal-louvers {
    right: 8%;
    top: 18%;
    width: 27%;
    height: 50%;
    border: 1px solid rgba(255,255,255,.12);
    background: repeating-linear-gradient(90deg, #000000 0 8px, #6D6D6D 8px 10px, transparent 10px 17px);
    transform: perspective(400px) rotateY(-10deg);
    animation: louverFloat 5.5s ease-in-out infinite;
}

.metal-facade {
    left: 8%;
    top: 21%;
    width: 38%;
    height: 48%;
    border: 1px solid rgba(254,251,214,.42);
    background:
        radial-gradient(circle at 18% 20%, transparent 0 3px, rgba(254,251,214,.55) 3px 4px, transparent 4px 10px),
        linear-gradient(135deg, rgba(254,251,214,.16), rgba(255,255,255,.025));
    background-size: 18px 18px, auto;
    clip-path: polygon(0 0, 100% 7%, 92% 100%, 8% 94%);
    animation: facadeFloat 6.2s ease-in-out infinite;
}

.metal-balcony {
    left: 18%;
    top: 51%;
    width: 63%;
    height: 12%;
    border-top: 2px solid rgba(255,255,255,.42);
    border-bottom: 2px solid rgba(255,255,255,.16);
    background: repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 2px, transparent 2px 13px);
}

.metal-gate {
    left: 14%;
    bottom: 8%;
    width: 72%;
    height: 25%;
    border: 1px solid rgba(255,255,255,.14);
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(254,251,214,.5) 50%, transparent 50.5%),
        repeating-linear-gradient(90deg, #000000 0 7px, transparent 7px 15px),
        linear-gradient(135deg, rgba(255,255,255,.06), rgba(0,0,0,.2));
    box-shadow: inset 0 0 0 6px rgba(0,0,0,.13);
}

.metal-ground {
    left: 5%;
    right: 0;
    bottom: 4%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(109,109,109,.8), rgba(254,251,214,.7), transparent);
    box-shadow: 0 0 20px rgba(109,109,109,.48);
}

.architecture-light-scan {
    top: 8%;
    bottom: 8%;
    width: 2px;
    background: linear-gradient(transparent, #FFFFFF, transparent);
    opacity: .8;
    filter: drop-shadow(0 0 10px #E6F0EF);
    animation: architectureScan 4.2s ease-in-out infinite;
}

.summary-chip {
    position: absolute;
    z-index: 5;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(0,0,0,.70);
    backdrop-filter: blur(14px);
    color: #E6F0EF;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(0,0,0,.24);
    animation: chipFloat 4.2s ease-in-out infinite;
}

.chip-one { top: 14%; left: -5%; }
.chip-two { right: 5%; bottom: 18%; animation-delay: -1.4s; }
.chip-three { left: 12%; bottom: 2%; animation-delay: -2.5s; }

.animated-feature-stack {
    display: grid;
    gap: 18px;
}

.summary-feature {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 50%;
    position: relative;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 178px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 28px;
    background:
        radial-gradient(circle at var(--mx) var(--my), rgba(109,109,109,.14), transparent 34%),
        linear-gradient(140deg, rgba(255,255,255,.94), rgba(255,255,255,.82));
    box-shadow: 0 20px 50px rgba(0,0,0,.10);
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform .22s ease, border-color .25s ease, box-shadow .25s ease;
}

.summary-feature:hover {
    border-color: rgba(109,109,109,.34);
    box-shadow: 0 30px 70px rgba(0,0,0,.17);
}

.summary-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.78) 48%, transparent 66%);
    transform: translateX(-120%);
    transition: transform .75s ease;
}

.summary-feature:hover::before { transform: translateX(120%); }

.feature-index {
    align-self: start;
    color: rgba(0,0,0,.32);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(145deg, #000000, #0D6B68);
    box-shadow: 0 12px 28px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.12);
    transform: translateZ(22px);
}

.feature-icon svg {
    width: 27px;
    height: 27px;
    fill: #FEFBD6;
}

.feature-copy { transform: translateZ(18px); }
.feature-copy strong {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-size: 20px;
    line-height: 1.2;
}
.feature-copy span {
    display: block;
    color: #6D6D6D;
    font-size: 14px;
    line-height: 1.65;
}
.feature-arrow {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #000000;
    background: rgba(0,0,0,.06);
    transition: transform .25s ease, background .25s ease;
}
.summary-feature:hover .feature-arrow { transform: rotate(45deg); background: rgba(109,109,109,.14); }
.feature-scan {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6D6D6D, #6D6D6D, transparent);
    animation: featureScan 4.4s ease-in-out infinite;
}
.summary-feature:nth-child(2) .feature-scan { animation-delay: -1.4s; }
.summary-feature:nth-child(3) .feature-scan { animation-delay: -2.8s; }

.animated-intro {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: clamp(32px, 5vw, 72px);
    padding: clamp(44px, 5.5vw, 76px) !important;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 38px;
    background:
        radial-gradient(circle at 15% 8%, rgba(109,109,109,.12), transparent 25%),
        radial-gradient(circle at 86% 95%, rgba(109,109,109,.17), transparent 28%),
        linear-gradient(145deg, #000000 0%, #000000 54%, #000000 100%);
    box-shadow: 0 34px 90px rgba(0,0,0,.22);
}

.animated-intro::before {
    content: "" !important;
    position: absolute !important;
    inset: -40% !important;
    z-index: -1 !important;
    opacity: .75 !important;
    background: conic-gradient(from 0deg, transparent, rgba(109,109,109,.12), transparent 28%, rgba(109,109,109,.10), transparent 58%) !important;
    animation: introHalo 20s linear infinite;
}

.intro-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .35;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 30%, #000000, transparent 75%);
}

.intro-heading-enhanced {
    position: relative;
    z-index: 2;
    max-width: none;
    margin-bottom: 36px;
}

.intro-heading-enhanced .section-kicker { color: #E6F0EF; }
.intro-title-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
    gap: 36px;
    align-items: end;
}

.intro-heading-enhanced h2 {
    max-width: 850px;
    margin: 14px 0 0;
    color: #FFFFFF;
    font-size: clamp(38px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.05em;
}

.intro-title-row p {
    margin: 0;
    padding-left: 22px;
    border-left: 1px solid rgba(254,251,214,.55);
    color: rgba(230,240,239,.66);
    font-size: 15px;
    line-height: 1.75;
}

.animated-step-grid {
    position: relative;
    z-index: 2;
    gap: 18px;
}

.animated-info-card {
    --rx: 0deg;
    --ry: 0deg;
    --mx: 50%;
    --my: 50%;
    position: relative;
    min-height: 290px;
    overflow: hidden;
    padding: 28px !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 26px !important;
    background:
        radial-gradient(circle at var(--mx) var(--my), rgba(109,109,109,.14), transparent 38%),
        linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025)) !important;
    backdrop-filter: blur(18px);
    box-shadow: inset 0 1px rgba(255,255,255,.08), 0 20px 38px rgba(0,0,0,.18) !important;
    color: #FFFFFF;
    transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform .22s ease, border-color .25s ease, background .25s ease;
}

.animated-info-card:hover {
    border-color: rgba(109,109,109,.34) !important;
}

.animated-info-card::after {
    content: "";
    position: absolute;
    top: -55%;
    left: -30%;
    width: 42%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
    transform: rotate(18deg) translateX(-180%);
    transition: transform .8s ease;
}
.animated-info-card:hover::after { transform: rotate(18deg) translateX(430%); }

.info-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateZ(22px);
}

.info-card-top span {
    color: #FEFBD6 !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.info-card-top i {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background:
        linear-gradient(90deg, transparent 45%, rgba(109,109,109,.9) 46% 54%, transparent 55%),
        linear-gradient(transparent 45%, rgba(254,251,214,.9) 46% 54%, transparent 55%),
        rgba(255,255,255,.035);
    box-shadow: inset 0 1px rgba(255,255,255,.08), 0 10px 28px rgba(0,0,0,.18);
    animation: infoIconSpin 8s linear infinite;
}

.animated-info-card:nth-child(2) .info-card-top i { animation-direction: reverse; animation-duration: 10s; }
.animated-info-card:nth-child(3) .info-card-top i { animation-duration: 12s; }

.animated-info-card h3 {
    margin: 34px 0 12px !important;
    color: #FFFFFF;
    font-size: 24px;
    transform: translateZ(18px);
}

.animated-info-card p {
    margin: 0;
    color: rgba(230,240,239,.65) !important;
    font-size: 14px;
    line-height: 1.75;
    transform: translateZ(14px);
}

.info-progress {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    height: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.info-progress span {
    display: block;
    width: 44%;
    height: 100%;
    background: linear-gradient(90deg, #6D6D6D, #FEFBD6);
    box-shadow: 0 0 18px rgba(109,109,109,.55);
    animation: progressSweep 4.8s ease-in-out infinite;
}

.animated-info-card:nth-child(2) .info-progress span { animation-delay: -1.6s; }
.animated-info-card:nth-child(3) .info-progress span { animation-delay: -3.2s; }

[data-reveal] {
    opacity: 0;
    transform: translateY(34px) scale(.985);
    transition: opacity .72s ease var(--delay, 0s), transform .72s cubic-bezier(.2,.8,.2,1) var(--delay, 0s);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes summaryOrbit { to { transform: rotate(360deg); } }
@keyframes summarySheen { 0%, 68% { transform: translateX(-120%); } 90%, 100% { transform: translateX(120%); } }
@keyframes summaryPulse { 70% { box-shadow: 0 0 0 12px rgba(109,109,109,0); } 100% { box-shadow: 0 0 0 0 rgba(109,109,109,0); } }
@keyframes summaryTitleIn { to { opacity: 1; transform: translateY(0); } }
@keyframes architectureGlow { to { transform: translate(-20px, 24px) scale(1.12); opacity: .7; } }
@keyframes louverFloat { 50% { transform: perspective(400px) rotateY(-5deg) translateY(-8px); } }
@keyframes facadeFloat { 50% { transform: translate(7px, -6px) rotate(.4deg); } }
@keyframes architectureScan { 0% { left: 4%; opacity: 0; } 18% { opacity: .9; } 82% { opacity: .9; } 100% { left: 96%; opacity: 0; } }
@keyframes chipFloat { 50% { transform: translateY(-8px); } }
@keyframes featureScan { 0% { transform: translateX(-120%); } 50%, 100% { transform: translateX(330%); } }
@keyframes introHalo { to { transform: rotate(360deg); } }
@keyframes infoIconSpin { to { transform: rotate(360deg); } }
@keyframes progressSweep { 0% { transform: translateX(-120%); } 50%, 100% { transform: translateX(280%); } }

@media (max-width: 1120px) {
    .animated-summary-grid { grid-template-columns: 1fr; }
    .animated-summary-copy { min-height: 570px; }
    .animated-feature-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .summary-feature { grid-template-columns: auto 1fr; min-height: 245px; align-content: start; }
    .summary-feature .feature-index { grid-column: 1; }
    .summary-feature .feature-icon { grid-column: 2; justify-self: end; }
    .summary-feature .feature-copy { grid-column: 1 / -1; }
    .summary-feature .feature-arrow { position: absolute; right: 20px; bottom: 20px; }
}

@media (max-width: 850px) {
    .summary-copy-body { width: 76%; padding: 40px; }
    .animated-summary-copy h2 { font-size: clamp(46px, 10vw, 70px); }
    .summary-architecture { width: 45%; opacity: .72; }
    .animated-feature-stack { grid-template-columns: 1fr; }
    .summary-feature { min-height: 160px; grid-template-columns: auto auto minmax(0,1fr) auto; }
    .summary-feature .feature-index,
    .summary-feature .feature-icon,
    .summary-feature .feature-copy { grid-column: auto; }
    .summary-feature .feature-arrow { position: static; }
    .intro-title-row { grid-template-columns: 1fr; gap: 18px; }
    .intro-title-row p { max-width: 620px; }
}

@media (max-width: 640px) {
    .animated-summary { padding: 34px 0 46px; }
    .animated-summary-grid { gap: 16px; }
    .animated-summary-copy { min-height: 670px; border-radius: 28px; }
    .summary-copy-body { width: 100%; padding: 30px 24px; }
    .animated-summary-copy h2 { font-size: clamp(43px, 14vw, 62px); }
    .animated-summary-copy p { font-size: 15px; line-height: 1.65; }
    .summary-stat-row { grid-template-columns: 1fr 1fr; }
    .summary-stat-row div:last-child { grid-column: 1 / -1; }
    .summary-architecture { top: auto; right: -36px; bottom: 20px; width: 82%; height: 295px; opacity: .72; }
    .summary-chip { font-size: 8px; padding: 7px 9px; }
    .summary-feature { min-height: 0; padding: 22px; grid-template-columns: auto minmax(0, 1fr) auto; }
    .summary-feature .feature-index { display: none; }
    .summary-feature .feature-icon { width: 46px; height: 46px; }
    .feature-copy strong { font-size: 18px; }
    .feature-copy span { font-size: 13px; }
    .animated-intro { width: calc(100% - 28px); margin-top: 28px; padding: 34px 20px 28px !important; border-radius: 28px; }
    .intro-heading-enhanced h2 { font-size: 40px; }
    .intro-title-row p { padding-left: 16px; }
    .animated-info-card { min-height: 270px; }
}

@media (prefers-reduced-motion: reduce) {
    .summary-orbit,
    .animated-summary-copy::after,
    .summary-kicker i,
    .animated-summary-copy h2 span,
    .architecture-glow,
    .metal-louvers,
    .metal-facade,
    .architecture-light-scan,
    .summary-chip,
    .feature-scan,
    .animated-intro::before,
    .info-card-top i,
    .info-progress span { animation: none !important; }
    [data-reveal] { opacity: 1; transform: none; transition: none; }
    .animated-summary-copy h2 span { opacity: 1; transform: none; }
    .summary-feature,
    .animated-info-card,
    .summary-architecture { transform: none !important; transition: none !important; }
}


/* =========================================================
   2026-07 performance fix — lightweight animated home section
   Keeps the premium motion while avoiding slow GPU-heavy effects.
   ========================================================= */
.animated-summary,
.animated-intro {
    contain: layout paint style;
}

/* Remove expensive continuously repainted effects. */
.summary-orbit,
.animated-summary-copy::after,
.architecture-glow,
.metal-louvers,
.metal-facade,
.summary-chip,
.animated-intro::before,
.info-card-top i {
    animation: none !important;
}

.summary-orbit { opacity: .42; }
.architecture-glow {
    filter: blur(24px) !important;
    opacity: .5;
}

.summary-stat-row div,
.summary-chip,
.animated-info-card {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

.animated-summary-copy,
.summary-feature,
.animated-info-card,
.summary-architecture {
    transform: none !important;
    transform-style: flat !important;
    will-change: auto !important;
}

.summary-feature:hover,
.animated-info-card:hover {
    transform: translateY(-4px) !important;
}

/* Transform-only scan animations render smoothly on mobile and desktop. */
.architecture-light-scan {
    left: 0 !important;
    width: 3px !important;
    animation: hebeOptimizedScan 6.5s ease-in-out infinite !important;
    will-change: transform, opacity;
}

.feature-scan {
    animation-duration: 6s !important;
    will-change: transform;
}

.info-progress span {
    animation-duration: 6s !important;
    will-change: transform;
}

/* Content is visible by default. JavaScript only hides items after it is ready. */
[data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity .55s ease var(--delay, 0s), transform .55s cubic-bezier(.2,.8,.2,1) var(--delay, 0s) !important;
}

[data-reveal].reveal-pending {
    opacity: 0 !important;
    transform: translateY(22px) !important;
}

[data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
}

@keyframes hebeOptimizedScan {
    0%, 12% { transform: translate3d(0,0,0); opacity: 0; }
    22% { opacity: .78; }
    78% { opacity: .78; }
    88%, 100% { transform: translate3d(420px,0,0); opacity: 0; }
}

@media (max-width: 850px) {
    .animated-summary,
    .animated-intro {
        content-visibility: auto;
        contain-intrinsic-size: 700px;
    }

    .summary-ambient,
    .animated-summary-copy::after,
    .architecture-light-scan,
    .feature-scan {
        display: none !important;
    }

    .summary-feature:hover,
    .animated-info-card:hover {
        transform: none !important;
    }

    .info-progress span {
        animation-duration: 7.5s !important;
    }
}

@media (max-width: 640px) {
    .animated-summary-copy {
        min-height: 610px !important;
    }

    .summary-architecture {
        opacity: .58 !important;
    }

    .animated-info-card {
        min-height: 245px !important;
    }

    .animated-info-card::after {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .architecture-light-scan,
    .feature-scan,
    .info-progress span {
        animation: none !important;
    }
}
