:root {
    --berry: #7E22CE;
    --berry-dark: #5B1699;
    --berry-light: #9333EA;
    --berry-glow: rgba(126, 34, 206, 0.35);
    --berry-glow2: rgba(126, 34, 206, 0.15);
    --gold: #C9A84C;
    --gold-light: #E2C87A;
    --ink: #0A0A0F;
    --ink2: #111118;
    --ink3: #18181F;
    --ink4: #222230;
    --beige: #F0E8D8;
    --beige2: #D8CEBC;
    --white: #FFFFFF;
    --muted: rgba(240, 232, 216, 0.55);
    --olive: #2C2C1A;
    --olive-dark: #1E1E12;
    --olive-light: #47472D;
    --charcoal: #1C1C24;
    --stone: #1E1E1A;
    --progress-h: 3px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--beige);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--berry-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s, background 0.2s;
    mix-blend-mode: screen;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--berry-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.18s ease, width 0.2s, height 0.2s, opacity 0.2s;
}

/* ═══════════════════════════════
   NAVBAR — PROGRESS LINE
═══════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(126, 34, 206, 0.2);
}

.nav-progress {
    height: var(--progress-h);
    background: linear-gradient(90deg, var(--berry-dark), var(--berry-light), var(--gold));
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px var(--berry-glow);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 68px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 88px;
    height: 88px;
    position: relative;
}

.nav-logo-icon svg {
    width: 100%;
    height: 100%;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(126, 34, 206, 0.35));
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text span:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.09em;
    color: var(--white);
}

.nav-logo-text span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--beige2);
    transition: color 0.2s, letter-spacing 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--berry-light);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--white);
    letter-spacing: 0.2em;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--berry);
    color: var(--white);
    border: none;
    padding: 10px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.25s, box-shadow 0.25s;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--berry-light);
    box-shadow: 0 0 20px var(--berry-glow);
}

/* ═══════════════════════════════
   HERO — PERFORATED METAL PANEL
═══════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: 71px;
    background: var(--ink);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.metal-panel {
    width: 75vw;
    height: 70vh;
    min-height: 540px;
    position: relative;
    background-color: var(--olive-dark);
    background-image: radial-gradient(circle, var(--ink) 4px, transparent 4px);
    background-size: 18px 18px;
    border: 1px solid rgba(240, 232, 216, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    isolation: isolate;
}

.bolt {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--olive-light);
    border: 1px solid rgba(10, 10, 15, 0.5);
    z-index: 10;
}

.bolt::before {
    content: '';
    position: absolute;
    left: 3px;
    right: 3px;
    top: 8px;
    height: 2px;
    background: rgba(10, 10, 15, 0.7);
}

.bolt.tl {
    top: 12px;
    left: 12px;
}

.bolt.tr {
    top: 12px;
    right: 12px;
}

.bolt.bl {
    bottom: 12px;
    left: 12px;
}

.bolt.br {
    bottom: 12px;
    right: 12px;
}

.solid-zone {
    position: absolute;
    background: var(--olive-dark);
    z-index: 2;
}

.hero-copy {
    top: 50px;
    left: 50px;
    width: min(56%, 620px);
    padding: 28px 28px 24px;
}

.hero-eyebrow {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--beige2);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 8vw, 110px);
    color: var(--beige);
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: 0.01em;
    margin-bottom: 14px;
}

.hero-tagline {
    max-width: 520px;
    font-family: 'Barlow', sans-serif;
    color: var(--beige2);
    font-size: clamp(14px, 1.15vw, 18px);
    line-height: 1.6;
}

.image-window-main,
.image-window-secondary {
    position: absolute;
    background: var(--olive-dark);
    border: 4px solid var(--olive-light);
    box-shadow: inset 0 0 0 2px var(--olive-dark);
    overflow: hidden;
    z-index: 3;
}

.image-window-main {
    width: 280px;
    height: 320px;
    right: 58px;
    top: 92px;
}

.image-window-secondary {
    width: 180px;
    height: 130px;
    right: 240px;
    bottom: 84px;
}

.image-window-main img,
.image-window-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-cta-zone {
    bottom: 40px;
    left: 50px;
    width: 320px;
    padding: 10px;
}

.hero-plate-btn {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 12px 16px;
    background: var(--olive-light);
    color: var(--beige);
    border: 1px solid rgba(10, 10, 15, 0.45);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.hero-plate-btn:hover {
    background: var(--gold);
    color: var(--ink);
}

/* ═══════════════════════════════
   SHADOW BOX SERVICES
═══════════════════════════════ */
.services-shadow {
    padding: 100px 40px;
    background: var(--ink2);
    position: relative;
}

.services-shadow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(126, 34, 206, 0.06) 0%, transparent 70%);
}

.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 5vw, 70px);
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 60px;
}

.section-title em {
    font-style: normal;
    color: var(--berry-light);
}

.shadow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

.shadow-grid .wide {
    grid-column: span 2;
}

.shadow-box {
    position: relative;
    border: 14px solid var(--ink3);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.85), 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    cursor: none;
    transform-style: preserve-3d;
    perspective: 700px;
    transition: box-shadow 0.3s;
    min-height: 340px;
}

.shadow-box:hover {
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.85), 0 30px 70px rgba(126, 34, 206, 0.15);
}

.sb-back {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sb-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: blur(1.5px);
    transition: opacity 0.4s;
}

.shadow-box:hover .sb-back img {
    opacity: 0.55;
}

.sb-mid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(10, 10, 15, 0.72);
}

.sb-front {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
}

.sb-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    letter-spacing: 0.25em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.sb-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 2.8vw, 38px);
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.sb-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 14px;
}

.sb-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--berry-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s, color 0.2s;
}

.sb-cta:hover {
    color: var(--gold-light);
    gap: 14px;
}

.sb-cta::after {
    content: '→';
}

.box-olive {
    border-color: #1a1a0f;
}

.box-dark {
    border-color: #10101A;
}

.box-charcoal {
    border-color: #1C1C26;
}

.box-stone {
    border-color: #1A1A16;
}

.box-green {
    border-color: #0D1A0F;
}

/* ═══════════════════════════════
   STATS
═══════════════════════════════ */
.stats {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0f0820 0%, #1a0d30 50%, #0a0a14 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--berry), var(--gold), var(--berry), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-cell {
    padding: 48px 32px;
    text-align: center;
    border-right: 1px solid rgba(126, 34, 206, 0.15);
    position: relative;
}

.stat-cell:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 7vw, 88px);
    color: var(--white);
    line-height: 1;
    display: block;
}

.stat-num sup {
    font-size: 0.4em;
    color: var(--berry-light);
    vertical-align: super;
}

.stat-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    letter-spacing: 0.22em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

.stat-line {
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--berry-glow2), transparent);
}

/* ═══════════════════════════════
   SERVICE AREAS (28 CITIES)
═══════════════════════════════ */
.areas {
    padding: 100px 40px;
    background: var(--ink);
    position: relative;
}

.areas::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    background: radial-gradient(ellipse at right, rgba(126, 34, 206, 0.07), transparent 70%);
}

.areas-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.areas-content {}

.cities-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.city-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border: 1px solid rgba(126, 34, 206, 0.25);
    color: var(--beige2);
    transition: all 0.25s;
    cursor: none;
    position: relative;
}

.city-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--berry);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
    z-index: -1;
}

.city-tag:hover {
    color: var(--white);
    border-color: var(--berry);
    box-shadow: 0 0 14px var(--berry-glow2);
}

.city-tag:hover::before {
    transform: scaleX(1);
}

.areas-visual {
    position: relative;
}

.areas-img-frame {
    position: relative;
    border: 1px solid rgba(126, 34, 206, 0.2);
    overflow: hidden;
}

.areas-img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: saturate(0.7);
}

.areas-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.3), transparent 60%);
}

.areas-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid rgba(126, 34, 206, 0.35);
    padding: 16px 20px;
    backdrop-filter: blur(12px);
}

.areas-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: var(--berry-light);
    line-height: 1;
}

.areas-badge-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--gold-light);
    text-transform: uppercase;
}

/* ═══════════════════════════════
   DETAIL SERVICES — EXPAND TEXT
═══════════════════════════════ */
.detail-services {
    padding: 100px 40px;
    background: var(--ink2);
    position: relative;
}

.detail-services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(126, 34, 206, 0.05), transparent 65%);
}

.detail-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.detail-item {
    border-bottom: 1px solid rgba(126, 34, 206, 0.15);
    overflow: hidden;
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    cursor: none;
    transition: padding 0.3s;
}

.detail-header:hover {
    padding-left: 8px;
}

.detail-num {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--berry-light);
    min-width: 48px;
}

.detail-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(22px, 3vw, 38px);
    color: var(--white);
    text-transform: uppercase;
    flex: 1;
    transition: color 0.25s;
}

.detail-item.open .detail-title {
    color: var(--gold-light);
}

.detail-dash {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 300;
    font-size: 28px;
    color: var(--berry-light);
    margin: 0 16px;
    transition: transform 0.3s;
}

.detail-item.open .detail-dash {
    transform: rotate(45deg);
}

.detail-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-item.open .detail-body {
    max-height: 400px;
}

.detail-body-inner {
    padding: 0 48px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.detail-body-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
}

.detail-body-img {
    overflow: hidden;
}

.detail-body-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    filter: saturate(0.8);
}

/* ═══════════════════════════════
   HOW WE WORK
═══════════════════════════════ */
.how-work {
    padding: 100px 40px;
    background: linear-gradient(160deg, #0a0a14 0%, #110720 100%);
    position: relative;
    overflow: hidden;
}

.how-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.how-steps {
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--berry), transparent);
}

.how-step {
    display: flex;
    gap: 28px;
    margin-bottom: 40px;
    position: relative;
}

.step-dot {
    width: 40px;
    height: 40px;
    border: 1px solid var(--berry);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    background: var(--ink2);
}

.step-dot span {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: var(--berry-light);
}

.step-content {}

.step-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.step-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.how-img {
    position: relative;
}

.how-img-wrap {
    position: relative;
    border: 1px solid rgba(126, 34, 206, 0.2);
}

.how-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: saturate(0.75);
}

.how-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(225deg, rgba(126, 34, 206, 0.25), transparent 60%);
}

.how-float-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--berry);
    padding: 20px;
    text-align: center;
    width: 110px;
}

.how-float-badge span:first-child {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--white);
    display: block;
    line-height: 1;
}

.how-float-badge span:last-child {
    font-family: 'Cormorant Garamond', serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* ═══════════════════════════════
   FAQ — GLASSMORPHIC
═══════════════════════════════ */
.faq {
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    background: var(--ink);
}

.faq-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.faq-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
}

.faq-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--berry);
    top: -100px;
    left: -100px;
    animation: blobDrift 12s ease-in-out infinite alternate;
}

.faq-blob-2 {
    width: 400px;
    height: 400px;
    background: #4C1D95;
    bottom: -100px;
    right: 10%;
    animation: blobDrift 16s ease-in-out infinite alternate-reverse;
}

.faq-blob-3 {
    width: 300px;
    height: 300px;
    background: #6D28D9;
    top: 30%;
    left: 40%;
    animation: blobDrift 10s ease-in-out infinite alternate;
}

@keyframes blobDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 20px) scale(1.08);
    }
}

.faq-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.faq-card {
    background: rgba(30, 18, 55, 0.45);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(126, 34, 206, 0.3);
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: box-shadow 0.3s, border-color 0.3s;
    cursor: none;
}

.faq-card:hover {
    border-color: rgba(126, 34, 206, 0.55);
    box-shadow: 0 8px 40px rgba(126, 34, 206, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.faq-q {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    letter-spacing: 0.04em;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.faq-toggle {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(126, 34, 206, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: var(--berry-light);
    transition: transform 0.3s, background 0.3s;
    margin-top: 2px;
}

.faq-card.open .faq-toggle {
    transform: rotate(45deg);
    background: rgba(126, 34, 206, 0.2);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.open .faq-a {
    max-height: 200px;
}

.faq-a-inner {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(240, 232, 216, 0.7);
    line-height: 1.75;
    padding-top: 14px;
    border-top: 1px solid rgba(126, 34, 206, 0.15);
    margin-top: 14px;
}

/* ═══════════════════════════════
   COMPREHENSIVE SERVICES — BLUEPRINT
═══════════════════════════════ */
.blueprint {
    padding: 100px 40px;
    background: var(--ink2);
    position: relative;
}

.blueprint::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(126, 34, 206, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(126, 34, 206, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.blueprint-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.blueprint-diagram {
    position: relative;
}

.diagram-svg-wrap {
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(126, 34, 206, 0.2);
    padding: 24px;
    border-radius: 2px;
}

.detail-panel {
    background: rgba(18, 8, 32, 0.9);
    border: 1px solid rgba(126, 34, 206, 0.3);
    padding: 32px;
    backdrop-filter: blur(12px);
}

.detail-panel-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.detail-panel-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

.detail-panel-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
    margin-bottom: 20px;
    filter: saturate(0.8);
}

.process-steps-mini {
    list-style: none;
    margin-bottom: 24px;
}

.process-steps-mini li {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: var(--beige2);
    padding: 6px 0;
    border-bottom: 1px solid rgba(126, 34, 206, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-steps-mini li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--berry-light);
    flex-shrink: 0;
}

.node {
    cursor: none;
    transition: all 0.3s;
}

.node:hover .node-glow,
.node.active .node-glow {
    opacity: 1;
}

.node-glow {
    opacity: 0;
    transition: opacity 0.3s;
}

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact {
    padding: 100px 40px;
    background: linear-gradient(160deg, #0a0a12 0%, #140b24 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--berry), transparent);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-info {}

.contact-map {
    position: relative;
}

.map-card {
    border: 1px solid rgba(126, 34, 206, 0.26);
    overflow: hidden;
    background: #120d1d;
    min-height: 100%;
}

.map-embed {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    display: block;
    filter: invert(90%) hue-rotate(200deg) saturate(0.6);
}

.contact-info .section-label {
    margin-bottom: 8px;
}

.contact-info .section-title {
    margin-bottom: 32px;
}

.info-block {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(126, 34, 206, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--berry-light);
    font-size: 18px;
}

.info-text {}

.info-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 3px;
}

.info-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--beige2);
    line-height: 1.5;
}

.contact-form {}

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

.form-field label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: rgba(30, 18, 55, 0.4);
    border: 1px solid rgba(126, 34, 206, 0.2);
    color: var(--beige);
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.25s, background 0.25s;
    resize: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(126, 34, 206, 0.6);
    background: rgba(30, 18, 55, 0.6);
}

.form-field select option {
    background: var(--ink2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ═══════════════════════════════
   BENTO FOOTER
═══════════════════════════════ */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(126, 34, 206, 0.15);
    padding: 40px 40px 0;
}

.bento {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 3px;
}

.bento-cell {
    padding: 36px 32px;
    position: relative;
}

.bc-brand {
    background: #0e0820;
    grid-column: 1;
    grid-row: 1 / span 2;
}

.bc-brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.bc-brand-logo svg {
    width: 44px;
    height: 44px;
}

.bc-brand-logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(126, 34, 206, 0.35));
    border-radius: 8px;
}

.bc-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 26px;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
}

.bc-brand-name span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.15em;
}

.bc-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.bc-social {
    display: flex;
    gap: 10px;
}

.bc-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(126, 34, 206, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige2);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: none;
}

.bc-social a:hover {
    background: var(--berry);
    border-color: var(--berry);
    color: var(--white);
}

.bc-nav {
    background: #0c0a1a;
    grid-column: 2;
    grid-row: 1;
}

.bc-nav-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.bc-nav ul {
    list-style: none;
}

.bc-nav li {
    margin-bottom: 12px;
}

.bc-nav a {
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: var(--muted);
    transition: color 0.2s;
    cursor: none;
}

.bc-nav a:hover {
    color: var(--berry-light);
}

.bc-newsletter {
    background: #0f0a1e;
    grid-column: 3;
    grid-row: 1;
}

.bc-newsletter-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

.bc-newsletter input {
    width: 100%;
    background: rgba(126, 34, 206, 0.1);
    border: 1px solid rgba(126, 34, 206, 0.2);
    color: var(--beige);
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    margin-top: 14px;
    margin-bottom: 12px;
    transition: border-color 0.25s;
}

.bc-newsletter input:focus {
    border-color: rgba(126, 34, 206, 0.5);
}

.bc-newsletter button {
    background: var(--berry);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: none;
    width: 100%;
    transition: background 0.25s;
}

.bc-newsletter button:hover {
    background: var(--berry-light);
}

.bc-location {
    background: #0b0818;
}

.bc-location .info-label {
    margin-bottom: 6px;
}

.bc-quote {
    background: #0d0c1c;
    grid-column: 4;
    grid-row: 1 / span 2;
}

.rotating-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    position: relative;
}

.rotating-quote::before {
    content: '"';
    font-size: 40px;
    color: var(--berry);
    line-height: 0;
    position: relative;
    top: 14px;
    margin-right: 6px;
}

.bc-bottom {
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(126, 34, 206, 0.1);
    margin-top: 3px;
}

.bc-copy {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    color: rgba(240, 232, 216, 0.35);
    letter-spacing: 0.08em;
}

.bc-copy a {
    color: var(--berry-light);
    text-decoration: none;
}

.bc-links {
    display: flex;
    gap: 24px;
}

.bc-links a {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    color: rgba(240, 232, 216, 0.35);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.2s;
    cursor: none;
}

.bc-links a:hover {
    color: var(--berry-light);
}

/* Utilities */
.max-w {
    max-width: 1300px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-60 {
    margin-top: 60px;
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media(max-width:1024px) {
    .hero {
        min-height: auto;
        padding: 86px 16px 28px;
    }

    .metal-panel {
        width: min(92vw, 920px);
        height: auto;
        min-height: 620px;
        padding-bottom: 24px;
    }

    .hero-copy {
        position: relative;
        top: 24px;
        left: 24px;
        width: calc(100% - 48px);
    }

    .image-window-main {
        right: 24px;
        top: auto;
        bottom: 178px;
    }

    .image-window-secondary {
        right: 214px;
        bottom: 210px;
    }

    .hero-cta-zone {
        left: 24px;
        bottom: 24px;
    }

    .shadow-grid {
        grid-template-columns: 1fr 1fr;
    }

    .shadow-grid .wide {
        grid-column: span 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-inner,
    .how-inner,
    .contact-inner,
    .blueprint-inner {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .bento {
        grid-template-columns: 1fr 1fr;
    }

    .bc-brand {
        grid-column: span 2;
        grid-row: auto;
    }

    .bc-quote {
        grid-row: auto;
    }
}

@media(max-width:768px) {
    .contact-inner {
        gap: 28px;
    }

    .contact-map {
        order: 2;
    }

    .contact-info {
        order: 1;
    }

    .map-embed {
        min-height: 260px;
    }

    .nav-links {
        display: none;
    }

    .metal-panel {
        min-height: 700px;
    }

    .hero-copy {
        top: 20px;
        left: 16px;
        width: calc(100% - 32px);
        padding: 20px 16px;
    }

    .hero-title {
        font-size: clamp(52px, 12vw, 78px);
    }

    .image-window-main {
        width: calc(100% - 32px);
        height: 280px;
        left: 16px;
        right: auto;
        bottom: 180px;
    }

    .image-window-secondary {
        width: 150px;
        height: 110px;
        left: 16px;
        right: auto;
        bottom: 56px;
    }

    .hero-cta-zone {
        width: 190px;
        left: auto;
        right: 16px;
        bottom: 54px;
        padding: 8px;
    }

    .shadow-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento {
        grid-template-columns: 1fr;
    }

    .bc-brand {
        grid-column: auto;
        grid-row: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .detail-body-inner {
        grid-template-columns: 1fr;
    }
}


/* ═══════════════════════════════
   HERO — PERFORATED METAL PANEL
═══════════════════════════════ */


.hero {
    background: var(--ink);
    padding-top: 71px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Deep background texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(126, 34, 206, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 30%, rgba(91, 22, 153, 0.08) 0%, transparent 50%);
}

/* THE PERFORATED METAL PANEL */
.perf-panel {
    position: relative;
    width: 75vw;
    height: 70vh;
    /* Perforation: holes punched through the berry-dark panel */
    background-color: #1e0a38;
    background-image:
        radial-gradient(circle, var(--ink) 3.5px, transparent 3.5px);
    background-size: 18px 18px;
    /* Mounted panel shadow — depth effect */
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 4px 16px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(147, 51, 234, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(147, 51, 234, 0.25);
    z-index: 1;
}

/* MOUNTING BOLT — shared */
.bolt {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #9333EA, #5B1699);
    border: 1.5px solid rgba(147, 51, 234, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.bolt::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 1.5px;
    background: rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -50%) rotate(-35deg);
}

.bolt-tl {
    top: 14px;
    left: 14px;
}

.bolt-tr {
    top: 14px;
    right: 14px;
}

.bolt-bl {
    bottom: 14px;
    left: 14px;
}

.bolt-br {
    bottom: 14px;
    right: 14px;
}

/* ── SOLID REGION 1: HEADLINE BLOCK (upper-left) ── */
.perf-headline-region {
    position: absolute;
    top: 36px;
    left: 44px;
    width: 52%;
    padding: 22px 28px 26px;
    background: #1e0a38;
    /* solid — no holes */
    z-index: 3;
    border-bottom: 2px solid rgba(126, 34, 206, 0.4);
}

.hero-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 6.5vw, 96px);
    line-height: 0.92;
    color: var(--beige);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.hero-title em {
    font-style: normal;
    color: var(--berry-light);
}

/* ── TAGLINE strip — positioned relative to headline bottom ── */
.perf-tagline-region {
    position: absolute;
    top: 54%;
    left: 44px;
    width: 46%;
    padding: 12px 28px;
    background: #1e0a38;
    z-index: 3;
    border-left: 3px solid var(--berry);
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.75;
}

/* ── SOLID REGION: IMAGE WINDOW 1 (portrait, center-right) ── */
.perf-img1 {
    position: absolute;
    top: 36px;
    right: 52px;
    width: 220px;
    height: 300px;
    z-index: 4;
    border: 4px solid var(--berry-light);
    box-shadow:
        inset 0 0 0 2px #1e0a38,
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(126, 34, 206, 0.3);
    overflow: hidden;
}

.perf-img1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.8) brightness(0.9);
}

/* machined-label below img1 */
.img1-label {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background: #1e0a38;
    border-top: 2px solid var(--berry-light);
    padding: 6px 0;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--berry-light);
    text-transform: uppercase;
    z-index: 5;
}

/* ── SOLID REGION: IMAGE WINDOW 2 (landscape, lower-right) ── */
.perf-img2 {
    position: absolute;
    bottom: 90px;
    right: 52px;
    width: 220px;
    height: 130px;
    z-index: 4;
    border: 4px solid var(--gold);
    box-shadow:
        inset 0 0 0 2px #1e0a38,
        0 8px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.perf-img2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.75) brightness(0.85);
}

.img2-label {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    background: #1e0a38;
    border-top: 2px solid var(--gold);
    padding: 5px 0;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    text-transform: uppercase;
    z-index: 5;
}

/* ── CTA REGION — cut-out label plate ── */
.perf-cta-region {
    position: absolute;
    bottom: 32px;
    left: 44px;
    display: flex;
    gap: 16px;
    z-index: 5;
}

.btn-primary {
    background: var(--berry);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 0 1px rgba(147, 51, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: var(--berry-light);
    box-shadow: 0 0 24px var(--berry-glow);
}

.btn-outline {
    border: 1px solid rgba(147, 51, 234, 0.5);
    color: var(--beige);
    padding: 13px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.25s, background 0.25s;
    background: #1e0a38;
}

.btn-outline:hover {
    border-color: var(--gold-light);
    background: rgba(201, 168, 76, 0.08);
}

/* ── TRUST STRIP — solid bar at bottom of panel ── */
.perf-trust-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: #1e0a38;
    border-top: 2px solid rgba(126, 34, 206, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 4;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--beige2);
}

.trust-dot {
    width: 6px;
    height: 6px;
    background: var(--berry-light);
    border-radius: 50%;
}

/* ── SPEC LINES (decorative engineering marks) ── */
.spec-line {
    position: absolute;
    background: rgba(126, 34, 206, 0.25);
    z-index: 2;
}

.spec-h {
    height: 1px;
    left: 0;
    right: 0;
}

.spec-v {
    width: 1px;
    top: 0;
    bottom: 0;
}

/* mobile hero */
@media(max-width:900px) {
    .perf-panel {
        width: 92vw;
        height: auto;
        min-height: 85vh;
    }

    .perf-img1,
    .perf-img2 {
        display: none;
    }

    .perf-headline-region {
        width: 85%;
        left: 24px;
        top: 28px;
    }

    .perf-tagline-region {
        left: 24px;
        width: 80%;
        top: auto;
        position: relative;
        margin-top: 8px;
    }

    .perf-cta-region {
        left: 24px;
        bottom: 80px;
        flex-direction: column;
    }
}