:root {
    --purple: #6A0DAD;
    --purple-dark: #4a0878;
    --purple-light: #8b2fd4;
    --purple-glow: rgba(106, 13, 173, 0.35);
    --purple-faint: rgba(106, 13, 173, 0.08);
    --olive: #8B8B00;
    --olive-light: rgba(139, 139, 0, 0.6);
    --olive-faint: rgba(139, 139, 0, 0.12);
    --ink: #0a0a12;
    --ink2: #0e0e1a;
    --ink3: #141422;
    --ink4: #1c1c2e;
    --cream: #f5f5dc;
    --cream-dim: rgba(245, 245, 220, 0.7);
    --cream-faint: rgba(245, 245, 220, 0.12);
    --white: #ffffff;
    --gray: rgba(255, 255, 255, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--cream);
    font-family: 'Cormorant Garamond', Georgia, serif;
    overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

#navbar.scrolled {
    padding: 10px 40px;
    background: rgba(10, 10, 18, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(106, 13, 173, 0.25);
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s;
}

.nav-logo span {
    color: var(--purple-light);
}

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

.nav-links-full a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--cream-dim);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
}

.nav-links-full a:hover {
    color: var(--purple-light);
}

.nav-links-compact {
    display: none;
    align-items: center;
    gap: 0;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links-compact a {
    color: var(--cream-dim);
    text-decoration: none;
    transition: color 0.25s;
}

.nav-links-compact a:hover {
    color: var(--purple-light);
}

.nav-dot {
    color: var(--purple-light);
    margin: 0 10px;
    font-size: 14px;
}

#navbar.scrolled .nav-links-full {
    display: none;
}

#navbar.scrolled .nav-links-compact {
    display: flex;
}

#navbar.scrolled .nav-logo {
    font-size: 18px;
}

.nav-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.nav-cta:hover {
    background: var(--purple-light);
}

#navbar.scrolled .nav-cta {
    padding: 8px 18px;
    font-size: 10px;
}

/* ─── HERO / VENETIAN BLINDS ──────────────────────────── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    background: var(--ink);
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(106, 13, 173, 0.22) 0%, transparent 70%), var(--ink);
}

.hero-inner {
    max-width: 1100px;
    width: 100%;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 64px;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-light);
    background: rgba(106, 13, 173, 0.15);
    border: 1px solid rgba(106, 13, 173, 0.4);
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 8px;
}

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

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: var(--cream-dim);
    margin: 20px 0 36px;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--purple);
    color: #fff;
    border: none;
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.25s;
}

.btn-primary:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
}

.btn-secondary {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 245, 220, 0.3);
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
}

.btn-secondary:hover {
    border-color: var(--purple-light);
    color: var(--purple-light);
}

.hero-img-wrap {
    width: 280px;
    height: 180px;
    flex-shrink: 0;
    position: relative;
}

.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: -6px -6px 6px 6px;
    border: 2px solid var(--purple);
    z-index: 0;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    filter: brightness(0.75) saturate(0.7);
}

.hero-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.4) 0%, transparent 60%);
    z-index: 2;
}

/* Blind Slats */
.blinds-container {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.slat {
    flex: 1;
    background: var(--ink3);
    transform-origin: center;
    transform: rotateX(0deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
}

.slat.open {
    transform: rotateX(85deg);
}

.blinds-toggle {
    position: absolute;
    top: 80px;
    right: 24px;
    z-index: 20;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    background: rgba(10, 10, 18, 0.85);
    color: var(--purple-light);
    border: 1px solid rgba(106, 13, 173, 0.5);
    padding: 8px 14px;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.2s;
    text-transform: uppercase;
}

.blinds-toggle:hover {
    background: rgba(106, 13, 173, 0.25);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.stat-item {
    text-align: left;
}

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

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

/* ─── WHY CHOOSE US ───────────────────────────────────── */
#why {
    padding: 120px 48px;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 60px;
}

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

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-card {
    background: var(--ink3);
    padding: 48px 44px;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
}

.why-card:hover {
    background: var(--ink4);
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--purple);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover::after {
    width: 100%;
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(106, 13, 173, 0.15);
    border: 1px solid rgba(106, 13, 173, 0.4);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    background: rgba(106, 13, 173, 0.3);
    border-color: var(--purple-light);
}

.why-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 64px;
    color: rgba(106, 13, 173, 0.08);
    line-height: 1;
}

.why-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.why-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--cream-dim);
}

/* ─── CTA SECTION ─────────────────────────────────────── */
#cta {
    padding: 100px 48px;
    background: var(--purple-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
    color: #fff;
    margin-bottom: 20px;
}

.cta-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: #fff;
    color: var(--purple-dark);
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: all 0.25s;
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-outline-white {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ─── SERVICES (SPINE) ────────────────────────────────── */
#services {
    padding: 120px 0;
    background: var(--ink);
    position: relative;
}

.spine-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.spine-header {
    text-align: center;
    padding: 0 48px;
    margin-bottom: 80px;
}

.spine-wrapper {
    position: relative;
    min-height: 1200px;
}

.spine-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(106, 13, 173, 0.15);
    transform: translateX(-50%);
}

.spine-fill {
    width: 100%;
    background: var(--purple);
    height: 0%;
    transition: height 0.1s linear;
    box-shadow: 0 0 16px rgba(106, 13, 173, 0.6);
}

.service-row {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 80px;
}

.service-row.left {
    justify-content: flex-start;
}

.service-row.right {
    justify-content: flex-end;
}

.service-block {
    width: 44%;
    background: var(--ink3);
    border: 1px solid rgba(106, 13, 173, 0.15);
    padding: 40px 36px;
    position: relative;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-row.left .service-block {
    transform: translateX(-30px);
}

.service-row.right .service-block {
    transform: translateX(30px);
}

.service-block.visible {
    opacity: 1;
    transform: translateX(0);
}

.spine-node {
    position: absolute;
    left: 50%;
    top: 40px;
    width: 14px;
    height: 14px;
    background: var(--purple);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    box-shadow: 0 0 14px rgba(106, 13, 173, 0.6);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.spine-node.active {
    transform: translateX(-50%) scale(1);
}

.connector-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.connector-line {
    stroke: rgba(106, 13, 173, 0.35);
    stroke-width: 1;
    stroke-dasharray: 5 4;
    stroke-dashoffset: 300;
    fill: none;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.connector-line.drawn {
    stroke-dashoffset: 0;
}

.svc-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 56px;
    color: rgba(106, 13, 173, 0.12);
    line-height: 1;
    margin-bottom: 8px;
}

.svc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 12px;
}

.svc-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--cream-dim);
    margin-bottom: 20px;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.svc-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple-light);
    border: 1px solid rgba(106, 13, 173, 0.4);
    padding: 4px 10px;
}

.svc-img {
    width: 200px;
    height: 160px;
    object-fit: cover;
    border-radius: 2px;
    filter: brightness(0.7) saturate(0.6);
    margin-bottom: 16px;
    display: block;
    position: relative;
}

.svc-img-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}

.svc-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.svc-cta {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--purple-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.svc-cta:hover {
    gap: 14px;
}

/* ─── SERVICE AREAS ───────────────────────────────────── */
#areas {
    padding: 100px 48px;
    background: var(--ink2);
    position: relative;
}

.areas-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 60px;
}

.area-item {
    background: var(--ink3);
    padding: 18px 20px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--cream-dim);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.area-item:hover {
    background: rgba(106, 13, 173, 0.15);
    color: var(--white);
}

.area-dot {
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    flex-shrink: 0;
}

.area-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    color: var(--cream-dim);
    margin-top: 40px;
    text-align: center;
}

/* ─── PREMIUM SECTION ─────────────────────────────────── */
#premium {
    padding: 120px 48px;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

#premium::before {
    content: 'CERTIFIED';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(106, 13, 173, 0.04);
    white-space: nowrap;
    letter-spacing: 0.1em;
    pointer-events: none;
}

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

.premium-text {}

.premium-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--cream-dim);
    margin-bottom: 20px;
}

.premium-features {
    margin-top: 40px;
}

.pf-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(106, 13, 173, 0.12);
}

.pf-icon {
    width: 40px;
    height: 40px;
    background: rgba(106, 13, 173, 0.15);
    border: 1px solid rgba(106, 13, 173, 0.35);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pf-info h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 4px;
}

.pf-info p {
    font-size: 14px;
    color: var(--cream-dim);
    margin: 0;
}

.premium-visual {
    position: relative;
}

.premium-card {
    background: var(--ink3);
    border: 1px solid rgba(106, 13, 173, 0.2);
    padding: 40px;
}

.premium-card-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 28px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.stars {
    color: #f5c842;
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.rating-sub {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.review-item {
    background: rgba(106, 13, 173, 0.08);
    border-left: 2px solid var(--purple);
    padding: 16px 20px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 14px;
    font-style: italic;
    color: var(--cream-dim);
    margin-bottom: 8px;
    line-height: 1.6;
}

.review-author {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple-light);
}

/* ─── FAQ ─────────────────────────────────────────────── */
#faq {
    padding: 120px 48px;
    background: var(--ink2);
}

.faq-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 60px;
}

.faq-item {
    border-bottom: 1px solid rgba(106, 13, 173, 0.15);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    gap: 20px;
}

.faq-q-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    flex: 1;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(106, 13, 173, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--purple-light);
    transition: all 0.3s;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(106, 13, 173, 0.2);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--cream-dim);
    padding-bottom: 28px;
}

/* ─── ADDITIONAL SERVICES (BLUEPRINT) ────────────────── */
#blueprint {
    padding: 120px 48px;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
}

.blueprint-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(106, 13, 173, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(106, 13, 173, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

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

.blueprint-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(106, 13, 173, 0.3);
}

.blueprint-title-block {}

.blueprint-main-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--purple-light);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.blueprint-sub-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.01em;
}

.blueprint-info-block {
    text-align: right;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--gray);
    line-height: 1.8;
    border: 1px solid rgba(106, 13, 173, 0.3);
    padding: 14px 18px;
}

.blueprint-info-block span {
    color: var(--purple-light);
}

.bp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    position: relative;
}

.bp-card {
    background: rgba(10, 10, 18, 0.7);
    border: 1px solid rgba(106, 13, 173, 0.35);
    padding: 32px 28px;
    position: relative;
}

/* corner crosshairs */
.bp-card::before,
.bp-card::after,
.bp-card .corner-br,
.bp-card .corner-bl {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--purple-light);
    border-style: solid;
    border-width: 0;
}

.bp-card::before {
    top: 0;
    left: 0;
    border-top-width: 1px;
    border-left-width: 1px;
}

.bp-card::after {
    top: 0;
    right: 0;
    border-top-width: 1px;
    border-right-width: 1px;
}

.bp-card .corner-br {
    bottom: 0;
    right: 0;
    border-bottom-width: 1px;
    border-right-width: 1px;
}

.bp-card .corner-bl {
    bottom: 0;
    left: 0;
    border-bottom-width: 1px;
    border-left-width: 1px;
}

.bp-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--purple-light);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-label::before {
    content: '▸';
    font-size: 10px;
}

.bp-desc {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    line-height: 1.7;
    color: rgba(245, 245, 220, 0.45);
    margin-bottom: 16px;
}

.bp-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bp-spec {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(106, 13, 173, 0.9);
    border: 1px solid rgba(106, 13, 173, 0.3);
    padding: 3px 7px;
    background: rgba(106, 13, 173, 0.05);
}

.bp-card-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 16px;
    filter: brightness(0.65) saturate(0.5);
    position: relative;
}

.bp-fig-caption {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    letter-spacing: 0.14em;
    color: rgba(106, 13, 173, 0.7);
    text-transform: uppercase;
    padding: 6px 10px;
    background: rgba(106, 13, 173, 0.08);
    border: 1px solid rgba(106, 13, 173, 0.2);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-fig-caption::before {
    content: '📷';
    font-size: 10px;
}

.bp-icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

/* ─── CONTACT ─────────────────────────────────────────── */
#contact {
    padding: 120px 48px;
    background: var(--ink);
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 56px;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 32px;
}

.contact-info h2 em {
    font-style: normal;
    color: var(--purple-light);
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(106, 13, 173, 0.15);
    border: 1px solid rgba(106, 13, 173, 0.35);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
    font-size: 17px;
    color: var(--cream);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-detail-text a:hover {
    color: var(--purple-light);
}

.map-box {
    background: var(--ink3);
    border: 1px solid rgba(106, 13, 173, 0.2);
    overflow: hidden;
    position: relative;
}

.map-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple-light);
    padding: 12px 16px;
    background: rgba(106, 13, 173, 0.1);
    border-bottom: 1px solid rgba(106, 13, 173, 0.2);
}

.map-box iframe {
    width: 100%;
    height: 300px;
    border: none;
    filter: grayscale(0.6) brightness(0.8);
}

.contact-form {
    margin-top: 36px;
}

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

.form-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple-light);
    display: block;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--ink3);
    border: 1px solid rgba(106, 13, 173, 0.2);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.25s;
    resize: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--purple);
}

.form-textarea {
    height: 110px;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
    background: #06060e;
    position: relative;
    overflow: hidden;
    padding: 80px 48px 40px;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.045;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.footer-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--purple), var(--purple-light), var(--purple), transparent);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {}

.footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 32px;
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo span {
    color: var(--purple-light);
}

.footer-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: rgba(245, 245, 220, 0.4);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-contact-line {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--purple-light);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-contact-line:hover {
    color: var(--white);
}

.footer-col-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--purple-light);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(245, 245, 220, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-geo-shapes {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    pointer-events: none;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(106, 13, 173, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(245, 245, 220, 0.15);
    text-transform: uppercase;
}

.footer-lic {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(245, 245, 220, 0.15);
    text-transform: uppercase;
}

/* ─── SCROLL ANIMATIONS ───────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    #navbar {
        padding: 16px 24px;
    }

    .hero-inner {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
        text-align: center;
    }

    .hero-img-wrap {
        width: 100%;
        height: 200px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .spine-wrapper .service-block {
        width: 80%;
    }

    .service-row.left,
    .service-row.right {
        justify-content: center;
    }

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

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

    .premium-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #why,
    #cta,
    #services,
    #areas,
    #premium,
    #faq,
    #blueprint,
    #contact,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }
}