:root {
    --orange: #FF6B00;
    --orange-light: #FF8C33;
    --orange-dark: #CC5500;
    --orange-glow: rgba(255, 107, 0, 0.25);
    --ink1: #0A0A08;
    --ink2: #12120E;
    --ink3: #1A1A12;
    --ink4: #222218;
    --beige: #F5F5DC;
    --stone: #C8C4B0;
    --olive: #8B8B3C;
    --olive-light: rgba(139, 139, 60, 0.4);
    --cream: #EDE8D8;
    --navy: #0D1B2A;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

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

@media (hover: none), (pointer: coarse) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none;
    }
}

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

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--orange);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.25s ease, height 0.25s ease, opacity 0.2s ease;
    opacity: 0.6;
}

/* ===================== NAVBAR ===================== */
#navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: rgba(10, 10, 8, 0.12);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

#navbar.scrolled .nav-inner {
    background: rgba(10, 10, 8, 0.85);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 107, 0, 0.1);
}

.nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.08em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo .logo-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: rgba(245, 245, 220, 0.8);
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    padding: 8px 16px;
    border-radius: 30px;
    transition: all 0.25s ease;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 107, 0, 0.15);
}

.nav-cta {
    background: var(--orange);
    color: white !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    border-radius: 30px !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.35);
}

.nav-cta:hover {
    background: var(--orange-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(255, 107, 0, 0.5) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--beige);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

/* ===================== WOVEN TEXT GRID HERO ===================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    background: var(--ink1);
    overflow: hidden;
}

/* subtle noise texture overlay */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

.weave-stage {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 60px;
}

/* === HORIZONTAL STRANDS (brand words) === */
.h-strands {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 40px 0;
    pointer-events: none;
}

.h-strand {
    display: flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1;
    will-change: transform;
    transition: transform 0.06s linear;
}

.h-word {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 7.5vw, 110px);
    color: var(--beige);
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-block;
    user-select: none;
    position: relative;
}

.h-word.over-v {
    /* horizontal strand on top at this intersection */
    z-index: 6;
    position: relative;
}

.h-word.over-v .char-bg {
    background: var(--ink1);
    padding: 0 3px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    filter: brightness(1.15);
}

.h-sep {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255, 107, 0, 0.35);
    letter-spacing: 0.3em;
    padding: 0 28px;
    align-self: center;
    flex-shrink: 0;
}

/* === VERTICAL STRANDS (service keywords) === */
.v-strands {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 0 100px;
    pointer-events: none;
    z-index: 4;
    /* default above h-strands */
    will-change: transform;
    transition: transform 0.06s linear;
}

.v-strand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.v-word {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: clamp(10px, 1.1vw, 15px);
    color: var(--orange);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    user-select: none;
    position: relative;
    line-height: 1;
    display: block;
}

.v-word.under-h {
    /* vertical strand dips behind horizontal at intersection */
    position: relative;
}

.v-word.under-h .char-mask {
    background: var(--ink1);
    display: inline-block;
    mix-blend-mode: normal;
}

.v-dot {
    width: 5px;
    height: 5px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.5;
    margin: 8px 0;
    flex-shrink: 0;
}

/* === WOVEN PHOTO PATCH === */
.weave-photo-patch {
    position: absolute;
    width: 190px;
    height: 148px;
    border: 2px solid var(--orange);
    z-index: 5;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 107, 0, 0.2),
        0 0 32px rgba(255, 107, 0, 0.15),
        inset 0 0 0 1px rgba(255, 107, 0, 0.1);
}

.weave-photo-patch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.5) hue-rotate(5deg) saturate(0.75) brightness(0.85);
    transition: filter 0.4s ease;
}

.weave-photo-patch:hover img {
    filter: sepia(0.2) hue-rotate(0deg) saturate(1) brightness(0.95);
}

.patch-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 10, 8, 0.88));
    padding: 14px 10px 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.55rem;
    color: var(--orange);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* corner accents on photo patch */
.weave-photo-patch::before,
.weave-photo-patch::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--orange-light);
    border-style: solid;
    z-index: 1;
    pointer-events: none;
}

.weave-photo-patch::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.weave-photo-patch::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

/* === HERO BOTTOM BAR === */
.hero-bottom {
    height: 76px;
    background: rgba(10, 10, 8, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 107, 0, 0.18);
    display: flex;
    align-items: center;
    padding: 0 52px;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.hero-phone {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.85rem;
    color: var(--stone);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-phone svg {
    width: 15px;
    height: 15px;
    fill: var(--orange);
}

.hero-phone a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--stone);
    text-align: center;
    flex: 1;
    padding: 0 32px;
}

.hero-cta-btn {
    background: var(--orange);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 11px 26px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 22px rgba(255, 107, 0, 0.4);
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.hero-cta-btn:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 28px rgba(255, 107, 0, 0.55);
}

/* ===================== ABOUT STATS ===================== */
#about {
    position: relative;
    background: linear-gradient(135deg, var(--ink2) 0%, #0f0f0a 40%, var(--ink3) 100%);
    padding: 120px 48px;
    overflow: hidden;
}

.about-bg-text {
    position: absolute;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(100px, 18vw, 280px);
    color: rgba(255, 107, 0, 0.03);
    top: 50%;
    transform: translateY(-50%);
    right: -40px;
    letter-spacing: -0.05em;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.about-header {
    margin-bottom: 80px;
}

.section-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--orange);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.section-title span {
    color: var(--orange);
}

.stats-asymmetric {
    position: relative;
    min-height: 500px;
}

.stat-item {
    position: absolute;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--orange);
    line-height: 0.85;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-suffix {
    font-size: 0.4em;
    color: var(--orange-light);
}

.stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--stone);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 8px;
}

.stat-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 0.85rem;
    color: rgba(200, 196, 176, 0.6);
    max-width: 200px;
    margin-top: 8px;
    line-height: 1.5;
}

.about-philosophy {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.philosophy-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--stone);
    line-height: 1.6;
    border-left: 3px solid var(--orange);
    padding-left: 24px;
}

.philosophy-body {
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    color: rgba(200, 196, 176, 0.7);
    line-height: 1.8;
}

/* ===================== SERVICES HEATMAP ===================== */
#services {
    position: relative;
    background: var(--ink2);
    padding: 120px 48px;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(15, 20, 10, 0.8) 0%, transparent 60%),
        var(--ink1);
}

.heat-cursor {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, rgba(139, 139, 60, 0.08) 40%, transparent 70%);
    transition: opacity 0.3s ease;
    z-index: 2;
    opacity: 0;
}

.services-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.service-card {
    background: rgba(26, 26, 16, 0.9);
    border: 1px solid rgba(255, 107, 0, 0.12);
    border-radius: 2px;
    padding: 32px;
    opacity: 1;
    filter: none;
    transform: translateY(0);
    transition: opacity 0.45s ease, filter 0.45s ease, border-color 0.45s ease, transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(255, 107, 0, 0.45);
    transform: translateY(-3px);
}

.service-card.revealed {
    opacity: 1;
    filter: none;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.12);
}

.service-card.image-card {
    padding: 0;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    filter: sepia(0.6) hue-rotate(10deg) saturate(0.7);
    transition: filter 0.4s ease;
}

.service-card.image-card:hover .service-card-img {
    filter: sepia(0.3) hue-rotate(5deg) saturate(1);
}

.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 1.5;
}

.service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--stone);
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: var(--olive);
    border: 1px solid rgba(139, 139, 60, 0.3);
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.1em;
}

/* ===================== STATS SECTION ===================== */
#stats-section {
    padding: 100px 48px;
    background: var(--ink1);
    position: relative;
    overflow: hidden;
}

.stats-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-block {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    position: relative;
    transition: border-color 0.3s ease;
}

.stat-block:hover {
    border-color: rgba(255, 107, 0, 0.4);
}

.stat-block::before,
.stat-block::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border: 2px solid var(--orange);
}

.stat-block::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.stat-block::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.stat-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--orange);
    line-height: 1;
}

.stat-unit {
    font-size: 0.55em;
    vertical-align: super;
    color: var(--orange-light);
}

.stat-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.68rem;
    color: var(--stone);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 10px;
}

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

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.faq-sidebar {
    position: sticky;
    top: 120px;
}

.faq-sidebar-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.faq-sidebar-text {
    color: var(--stone);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: gap 0.25s ease;
}

.faq-contact-link:hover {
    gap: 16px;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 107, 0, 0.12);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--beige);
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color 0.25s ease;
}

.faq-q:hover {
    color: var(--orange);
}

.faq-q.open {
    color: var(--orange);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 107, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-q.open .faq-icon {
    transform: rotate(45deg);
    background: var(--orange);
}

.faq-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--orange);
    stroke-width: 2;
    fill: none;
}

.faq-q.open .faq-icon svg {
    stroke: white;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

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

.faq-a-inner {
    padding-bottom: 24px;
    color: var(--stone);
    font-size: 0.9rem;
    line-height: 1.75;
}

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

.blueprint-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 139, 60, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 139, 60, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

.blueprint-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.blueprint-title-block {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--olive);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.blueprint-title-block h2 {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--olive);
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.blueprint-info-block {
    border: 1px solid rgba(139, 139, 60, 0.35);
    padding: 16px 24px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: var(--olive);
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.blueprint-info-block div {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.blueprint-services-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bp-card {
    position: relative;
    border: 1px solid rgba(139, 139, 60, 0.4);
    padding: 28px;
    background: rgba(10, 10, 8, 0.6);
    transition: border-color 0.3s ease;
}

.bp-card:hover {
    border-color: rgba(255, 107, 0, 0.5);
}

.bp-corner {
    position: absolute;
}

.bp-corner::before,
.bp-corner::after {
    content: '';
    position: absolute;
    background: var(--olive);
}

.bp-corner.tl {
    top: -1px;
    left: -1px;
}

.bp-corner.tl::before {
    width: 12px;
    height: 1px;
    top: 0;
    left: 0;
}

.bp-corner.tl::after {
    width: 1px;
    height: 12px;
    top: 0;
    left: 0;
}

.bp-corner.tr {
    top: -1px;
    right: -1px;
}

.bp-corner.tr::before {
    width: 12px;
    height: 1px;
    top: 0;
    right: 0;
}

.bp-corner.tr::after {
    width: 1px;
    height: 12px;
    top: 0;
    right: 0;
}

.bp-corner.bl {
    bottom: -1px;
    left: -1px;
}

.bp-corner.bl::before {
    width: 12px;
    height: 1px;
    bottom: 0;
    left: 0;
}

.bp-corner.bl::after {
    width: 1px;
    height: 12px;
    bottom: 0;
    left: 0;
}

.bp-corner.br {
    bottom: -1px;
    right: -1px;
}

.bp-corner.br::before {
    width: 12px;
    height: 1px;
    bottom: 0;
    right: 0;
}

.bp-corner.br::after {
    width: 1px;
    height: 12px;
    bottom: 0;
    right: 0;
}

.bp-label {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--olive);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.bp-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.6rem;
    color: rgba(139, 139, 60, 0.5);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.bp-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--beige);
    margin-bottom: 10px;
}

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

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

.bp-spec {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.58rem;
    color: var(--olive);
    border: 1px solid rgba(139, 139, 60, 0.3);
    padding: 2px 7px;
    letter-spacing: 0.08em;
}

.bp-arrow {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.55rem;
    color: var(--olive);
    white-space: nowrap;
    letter-spacing: 0.1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.bp-arrow-line {
    width: 80px;
    height: 1px;
    background: var(--olive);
    position: relative;
}

.bp-arrow-line::before,
.bp-arrow-line::after {
    content: '';
    position: absolute;
    top: -3px;
    border: 3px solid transparent;
}

.bp-arrow-line::before {
    left: -1px;
    border-right-color: var(--olive);
}

.bp-arrow-line::after {
    right: -1px;
    border-left-color: var(--olive);
}

/* ===================== SERVICE AREAS ===================== */
#areas {
    padding: 120px 48px;
    background: var(--ink1);
    position: relative;
    overflow: hidden;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 60px;
}

.area-pill {
    padding: 14px 20px;
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 2px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--stone);
    letter-spacing: 0.05em;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.area-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.area-pill:hover {
    color: white;
    border-color: var(--orange);
}

.area-pill:hover::before {
    transform: scaleX(1);
}

/* ===================== PREMIUM SERVICES ===================== */
#premium {
    padding: 120px 48px;
    background: linear-gradient(135deg, #0f0f0a, var(--ink3), #0f0f0a);
    position: relative;
    overflow: hidden;
}

.premium-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 60px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.premium-card {
    padding: 48px;
    background: rgba(12, 12, 10, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.premium-card:hover {
    background: rgba(255, 107, 0, 0.04);
}

.premium-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover::after {
    opacity: 1;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 0, 0.12);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 4px 12px;
    border-radius: 2px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.premium-badge svg {
    width: 10px;
    height: 10px;
    fill: var(--orange);
}

.premium-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.premium-card-desc {
    color: var(--stone);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.premium-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: rgba(200, 196, 176, 0.75);
}

.premium-features li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    margin-top: 7px;
}

.premium-price {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 107, 0, 0.15);
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-from {
    font-size: 0.8rem;
    color: var(--stone);
}

.price-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    color: var(--orange);
}

.price-unit {
    font-size: 0.8rem;
    color: var(--stone);
}

/* ===================== CONTACT ===================== */
#contact {
    padding: 120px 48px;
    background: var(--ink2);
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    padding: 28px;
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-left: 3px solid var(--orange);
    background: rgba(10, 10, 8, 0.5);
    transition: border-color 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(255, 107, 0, 0.4);
}

.contact-card-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: var(--orange);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-card-value {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
}

.contact-card-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-card-value a:hover {
    color: var(--orange);
}

.map-container {
    position: relative;
    border: 1px solid rgba(255, 107, 0, 0.2);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 380px;
    border: none;
    filter: invert(90%) hue-rotate(180deg) saturate(0.3) brightness(0.85);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(18, 18, 14, 0.7) 0%, transparent 100%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.map-overlay-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: var(--orange);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    color: var(--stone);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    background: rgba(10, 10, 8, 0.7);
    border: 1px solid rgba(255, 107, 0, 0.15);
    color: var(--beige);
    padding: 14px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.95rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.25s ease;
}

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

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

.form-submit {
    background: var(--orange);
    color: white;
    border: none;
    padding: 16px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 24px rgba(255, 107, 0, 0.3);
}

.form-submit:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
}

.form-submit svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

/* ===================== FOOTER ===================== */
#footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 40%, #FF8C33 70%, #FFB366 100%);
    padding: 80px 48px 48px;
}

.footer-brand {
    text-align: center;
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.footer-brand-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 6px;
}

.footer-islands {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-island {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.island-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.island-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.island-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.island-links a:hover {
    color: white;
}

.island-links a svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.5);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.island-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
}

.island-contact-item svg {
    width: 15px;
    height: 15px;
    stroke: rgba(255, 255, 255, 0.7);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 2px;
}

.island-newsletter input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    font-size: 0.875rem;
    outline: none;
    margin-bottom: 10px;
}

.island-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.island-newsletter button {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.25s ease;
}

.island-newsletter button:hover {
    background: rgba(0, 0, 0, 0.4);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.social-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.footer-copy {
    text-align: center;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

/* ===================== SHARED ===================== */
.section-header {
    margin-bottom: 20px;
}

.orange-line {
    display: block;
    width: 48px;
    height: 3px;
    background: var(--orange);
    margin-bottom: 16px;
}

.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

html.no-js .scroll-reveal,
html.no-js .service-card {
    opacity: 1;
    filter: none;
    transform: none;
}

html.js-animations .scroll-reveal:not(.revealed) {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html.js-animations .scroll-reveal:not(.revealed),
    .service-card {
        opacity: 1;
        filter: none;
        transform: none;
    }
}

/* MOBILE */
@media(max-width:1024px) {
    .footer-islands {
        grid-template-columns: 1fr 1fr;
    }

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

    .stats-asymmetric {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
    }

    .stat-item {
        position: static !important;
    }

    .about-philosophy {
        grid-template-columns: 1fr;
    }

    .blueprint-services-layout {
        grid-template-columns: 1fr 1fr;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    #navbar {
        width: calc(100% - 24px);
        top: 12px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: rgba(10, 10, 8, 0.97);
        backdrop-filter: blur(12px);
        z-index: 999;
        margin: 0;
        padding: 80px 24px 40px;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links.open a {
        font-size: 1.15rem;
        padding: 12px 24px;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .hero-bottom {
        padding: 0 20px;
        flex-wrap: wrap;
        height: auto;
        gap: 10px;
        padding: 16px 20px;
    }

    .hero-tagline {
        display: none;
    }

    .weave-stage {
        padding: 0 20px;
    }

    .h-word {
        font-size: clamp(36px, 9vw, 72px) !important;
    }

    .v-strands {
        padding: 0 20px;
        justify-content: space-around;
    }

    .v-word {
        font-size: clamp(8px, 1.8vw, 12px);
    }

    .weave-photo-patch {
        width: 130px;
        height: 100px;
        right: 4% !important;
    }

    #about,
    #services,
    #faq,
    #blueprint,
    #areas,
    #premium,
    #contact {
        padding: 80px 20px;
    }

    #stats-section {
        padding: 80px 20px;
    }

    #footer {
        padding: 60px 20px 40px;
    }

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

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

    .faq-sidebar {
        position: static;
    }

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

    .blueprint-services-layout {
        grid-template-columns: 1fr;
    }

    .footer-islands {
        grid-template-columns: 1fr 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .blueprint-header {
        flex-direction: column;
        gap: 20px;
    }
}

@media(max-width:480px) {
    .stats-asymmetric {
        grid-template-columns: 1fr;
    }

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

    .footer-islands {
        grid-template-columns: 1fr;
    }

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

    .contact-layout {
        gap: 40px;
    }

    .weave-photo-patch {
        display: none;
    }

    .h-word {
        font-size: clamp(28px, 10vw, 58px) !important;
    }
}