:root {
    --lilac: #D891EF;
    --lilac-dim: #b06bc8;
    --lilac-glow: rgba(216, 145, 239, 0.35);
    --lilac-pale: rgba(216, 145, 239, 0.12);
    --ink: #0e0b14;
    --ink-2: #160f1f;
    --ink-3: #1d1529;
    --olive: #8B7D2A;
    --olive-light: rgba(139, 125, 42, 0.6);
    --cream: #f0e8d8;
    --cream-dim: rgba(240, 232, 216, 0.7);
    --white: #ffffff;
    --accent: #D891EF;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Crimson Pro', serif;
    --font-mono: 'Space Mono', monospace;
    --font-ui: 'DM Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* ===================== SCROLL NAVBAR ===================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 22px 48px;
    background: transparent;
}

#navbar.shrunk {
    padding: 10px 48px;
    background: rgba(14, 11, 20, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(216, 145, 239, 0.15);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    margin: 0 auto;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(18px, 2.2vw, 26px);
    color: var(--lilac);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: font-size 0.4s;
    text-decoration: none;
}

#navbar.shrunk .nav-logo {
    font-size: clamp(14px, 1.6vw, 20px);
}

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

.nav-links a {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: rgba(240, 232, 216, 0.75);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--lilac);
}

.nav-cta {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: var(--lilac);
    color: var(--ink);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.nav-cta:hover {
    background: var(--lilac-dim);
    transform: translateY(-1px);
}

/* ===================== HERO — FOLDED MAP ===================== */
#hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: #1a1225;
    overflow: hidden;
    display: grid;
    grid-template-columns: 28% 44% 28%;
    grid-template-rows: 35% 38% 27%;
}

/* Paper texture overlay */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(139, 125, 42, 0.06) 39px, rgba(139, 125, 42, 0.06) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(139, 125, 42, 0.04) 59px, rgba(139, 125, 42, 0.04) 60px);
    pointer-events: none;
}

/* Map grid sections */
.map-section {
    position: relative;
    overflow: hidden;
}

/* Fold crease lines via borders + shadows */
.map-row-1 {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) inset;
}

.map-row-2 {
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.35) inset, 0 1px 6px rgba(0, 0, 0, 0.35) inset;
}

/* Section shade variations */
.ms-tl {
    background: rgba(0, 0, 0, 0.08);
}

.ms-tc {
    background: rgba(0, 0, 0, 0.02);
}

.ms-tr {
    background: rgba(0, 0, 0, 0.06);
}

.ms-ml {
    background: rgba(0, 0, 0, 0.04);
}

.ms-mc {
    background: rgba(0, 0, 0, 0.01);
}

.ms-mr {
    background: rgba(0, 0, 0, 0.05);
}

.ms-bl {
    background: rgba(0, 0, 0, 0.07);
}

.ms-bc {
    background: rgba(0, 0, 0, 0.03);
}

.ms-br {
    background: rgba(0, 0, 0, 0.06);
}

/* Fold crease borders */
.map-section {
    border: 1px solid rgba(128, 128, 0, 0.18);
    box-shadow: 1px 0 4px rgba(0, 0, 0, 0.4), -1px 0 2px rgba(255, 255, 255, 0.02);
}

/* TOP-LEFT: decorative border */
.ms-tl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.map-corner-deco {
    width: 100%;
    height: 100%;
    border: 1.5px solid rgba(139, 125, 42, 0.35);
    position: relative;
}

.map-corner-deco::before,
.map-corner-deco::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(139, 125, 42, 0.2);
}

.map-corner-deco::before {
    inset: 6px;
}

.map-corner-deco::after {
    inset: 12px;
}

.map-corner-deco .corner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(139, 125, 42, 0.5);
    letter-spacing: 0.12em;
    text-align: center;
    white-space: nowrap;
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* TOP-CENTER: main image */
.ms-tc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.map-photo-1 {
    width: clamp(200px, 25vw, 360px);
    height: clamp(160px, 22vh, 280px);
    object-fit: cover;
    border: 2px solid rgba(139, 125, 42, 0.4);
    box-shadow: 0 0 0 6px rgba(139, 125, 42, 0.08), 4px 4px 16px rgba(0, 0, 0, 0.6);
    position: relative;
}

.photo-caption {
    position: absolute;
    bottom: -22px;
    left: 0;
    right: 0;
    font-family: var(--font-mono);
    font-size: 8px;
    color: rgba(139, 125, 42, 0.6);
    text-align: center;
    letter-spacing: 0.15em;
}

.map-photo-wrap {
    position: relative;
}

.photo-legend-border {
    position: absolute;
    inset: -8px;
    border: 1px dashed rgba(139, 125, 42, 0.25);
    pointer-events: none;
}

/* TOP-RIGHT: decorative lines */
.ms-tr {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
}

.map-ruled-lines {
    width: 100%;
}

.ruled-line {
    height: 1px;
    background: rgba(139, 125, 42, 0.2);
    margin-bottom: 10px;
    position: relative;
}

.ruled-line::after {
    content: attr(data-num);
    position: absolute;
    right: 0;
    top: -8px;
    font-family: var(--font-mono);
    font-size: 7px;
    color: rgba(139, 125, 42, 0.35);
    letter-spacing: 0.1em;
}

/* MIDDLE-LEFT: main headline */
.ms-ml {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 24px;
    z-index: 2;
}

.map-headline {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.88;
    color: var(--white);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5), 2px 2px 8px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.map-headline span {
    color: var(--lilac);
    display: block;
}

.map-subtitle {
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(139, 125, 42, 0.7);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* MIDDLE-CENTER: map legend */
.ms-mc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.map-legend-box {
    border: 1.5px solid rgba(139, 125, 42, 0.4);
    padding: 20px;
    width: 100%;
    background: rgba(139, 125, 42, 0.04);
    position: relative;
}

.map-legend-box::before {
    content: 'MAP LEGEND';
    position: absolute;
    top: -9px;
    left: 16px;
    background: #1a1225;
    padding: 0 8px;
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(139, 125, 42, 0.7);
    letter-spacing: 0.18em;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.legend-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--lilac);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.legend-text {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--cream-dim);
    letter-spacing: 0.05em;
}

.legend-text strong {
    color: var(--lilac);
    display: block;
    font-size: 11px;
}

/* MIDDLE-RIGHT: tagline + CTA */
.ms-mr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 24px;
    gap: 20px;
}

.map-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(14px, 1.4vw, 18px);
    color: var(--cream-dim);
    line-height: 1.5;
    border-left: 2px solid rgba(139, 125, 42, 0.4);
    padding-left: 14px;
}

.map-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 13px 20px;
    background: var(--lilac);
    color: var(--ink);
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.25s;
}

.btn-primary:hover {
    background: var(--lilac-dim);
}

.btn-secondary {
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 11px 20px;
    background: transparent;
    color: var(--lilac);
    border: 1.5px solid rgba(216, 145, 239, 0.4);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.25s;
}

.btn-secondary:hover {
    border-color: var(--lilac);
    background: var(--lilac-pale);
}

.map-phone {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--lilac);
    letter-spacing: 0.08em;
    text-decoration: none;
}

/* BOTTOM-LEFT: small image inset */
.ms-bl {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.map-photo-2-wrap {
    position: relative;
}

.map-photo-2 {
    width: clamp(140px, 16vw, 220px);
    height: clamp(120px, 14vh, 200px);
    object-fit: cover;
    border: 2px solid rgba(139, 125, 42, 0.4);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    display: block;
}

.inset-label {
    position: absolute;
    bottom: -18px;
    left: 0;
    right: 0;
    font-family: var(--font-mono);
    font-size: 7px;
    color: rgba(139, 125, 42, 0.55);
    text-align: center;
    letter-spacing: 0.15em;
}

.inset-frame {
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(139, 125, 42, 0.25);
    pointer-events: none;
}

/* BOTTOM-CENTER: compass rose */
.ms-bc {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

/* BOTTOM-RIGHT: coordinates */
.ms-br {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 20px;
}

.map-coords {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(139, 125, 42, 0.6);
    letter-spacing: 0.12em;
    text-align: right;
    line-height: 1.8;
}

.map-scale {
    width: 80px;
    height: 1px;
    background: rgba(139, 125, 42, 0.4);
    margin-top: 10px;
    margin-left: auto;
    position: relative;
}

.map-scale::before,
.map-scale::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 1px;
    height: 8px;
    background: rgba(139, 125, 42, 0.4);
}

.map-scale::before {
    left: 0;
}

.map-scale::after {
    right: 0;
}

.scale-label {
    font-family: var(--font-mono);
    font-size: 7px;
    color: rgba(139, 125, 42, 0.4);
    text-align: center;
    margin-top: 4px;
    letter-spacing: 0.1em;
}

/* Horizontal fold crease lines overlay */
.fold-crease-h {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 5;
    background: rgba(128, 128, 0, 0.18);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4), 0 -1px 2px rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.fold-crease-v {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 5;
    background: rgba(128, 128, 0, 0.18);
    box-shadow: 1px 0 4px rgba(0, 0, 0, 0.4), -1px 0 2px rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

/* ===================== ABOUT SECTION ===================== */
#about {
    padding: 100px 0;
    background: var(--ink-2);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: 'ABOUT';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 120px;
    color: rgba(216, 145, 239, 0.04);
    white-space: nowrap;
    pointer-events: none;
}

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

.about-images {
    position: relative;
    height: 500px;
}

.about-img-1 {
    width: 68%;
    height: 380px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid rgba(216, 145, 239, 0.2);
    box-shadow: 8px 8px 40px rgba(0, 0, 0, 0.5);
}

.about-img-2 {
    width: 55%;
    height: 280px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 2px solid rgba(216, 145, 239, 0.15);
    box-shadow: -4px 4px 30px rgba(0, 0, 0, 0.4);
}

.about-img-accent {
    position: absolute;
    bottom: 80px;
    left: 55%;
    width: 80px;
    height: 80px;
    border: 2px solid var(--lilac);
    border-radius: 50%;
    opacity: 0.3;
}

.about-content {}

.section-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    color: var(--lilac);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(216, 145, 239, 0.25);
    max-width: 60px;
}

.about-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 0.9;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-heading em {
    color: var(--lilac);
    font-style: normal;
    display: block;
}

.about-text {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--cream-dim);
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin-bottom: 32px;
}

.about-list li {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--cream);
    padding: 10px 0;
    border-bottom: 1px solid rgba(216, 145, 239, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-list li::before {
    content: '◆';
    color: var(--lilac);
    font-size: 8px;
}

.stats-row {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

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

.stat-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 44px;
    color: var(--lilac);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    color: rgba(240, 232, 216, 0.5);
    text-transform: uppercase;
    margin-top: 4px;
}

/* ===================== STATS SECTION ===================== */
#stats {
    padding: 80px 0;
    background: var(--lilac);
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0, 0, 0, 0.03) 20px, rgba(0, 0, 0, 0.03) 21px);
}

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

.stat-card {
    text-align: center;
    padding: 40px 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

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

.stat-big {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 64px;
    color: var(--ink);
    line-height: 1;
}

.stat-big sup {
    font-size: 28px;
    vertical-align: super;
}

.stat-desc {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: rgba(14, 11, 20, 0.7);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

/* ===================== FEATURED SERVICES ===================== */
#featured {
    padding: 100px 0;
    background: var(--ink-3);
    position: relative;
    overflow: hidden;
}

.featured-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-header {
    margin-bottom: 64px;
}

.section-header .section-label {
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(42px, 5vw, 72px);
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.9;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.feat-card {
    position: relative;
    overflow: hidden;
    background: var(--ink-2);
    padding: 40px 32px;
    transition: all 0.35s;
    border: 1px solid rgba(216, 145, 239, 0.08);
    cursor: pointer;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--lilac);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feat-card:hover::before {
    height: 100%;
}

.feat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(216, 145, 239, 0.25);
}

.feat-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(216, 145, 239, 0.35);
    margin-bottom: 24px;
    letter-spacing: 0.15em;
}

.feat-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feat-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.feat-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(240, 232, 216, 0.6);
    line-height: 1.65;
    margin-bottom: 20px;
}

.feat-link {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--lilac);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s;
}

.feat-link:hover {
    gap: 14px;
}

.feat-link::after {
    content: '→';
}

/* ===================== RIVER TIMELINE SERVICES ===================== */
#river-services {
    padding: 100px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.river-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
}

.river-svg-wrap {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    pointer-events: none;
    z-index: 0;
}

.river-svg-wrap svg {
    width: 100%;
    height: 100%;
}

.river-services-list {
    position: relative;
    z-index: 1;
}

.river-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.6s, transform 0.6s;
}

.river-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.river-item.left {
    flex-direction: row-reverse;
    transform: translateX(-60px);
}

.river-item.left.visible {
    transform: translateX(0);
}

.river-spacer {
    flex: 1;
}

.river-card {
    width: 42%;
    background: var(--ink-2);
    clip-path: polygon(0 0, 96% 0, 100% 12%, 100% 100%, 4% 100%, 0 88%);
    padding: 32px 28px;
    border: 1px solid rgba(216, 145, 239, 0.1);
    position: relative;
}

.river-item.left .river-card {
    clip-path: polygon(4% 0, 100% 0, 100% 88%, 96% 100%, 0 100%, 0 12%);
}

.river-card-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.river-card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(240, 232, 216, 0.65);
    line-height: 1.6;
    margin-bottom: 16px;
}

.river-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.river-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--lilac);
    border: 1px solid rgba(216, 145, 239, 0.3);
    padding: 3px 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.river-cta {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--lilac);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.river-cta::after {
    content: '→';
    transition: margin-left 0.25s;
}

.river-cta:hover::after {
    margin-left: 6px;
}

.river-node {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--lilac);
    box-shadow: 0 0 12px var(--lilac-glow);
    flex-shrink: 0;
    margin-top: 24px;
    align-self: flex-start;
}

.river-connector {
    width: 80px;
    height: 2px;
    background: rgba(216, 145, 239, 0.3);
    align-self: flex-start;
    margin-top: 30px;
    flex-shrink: 0;
}

.river-img-inset {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(216, 145, 239, 0.4);
    position: absolute;
    top: -20px;
    right: -20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.river-item.left .river-img-inset {
    right: auto;
    left: -20px;
}

/* ===================== FAQ WHEEL ===================== */
#faq {
    padding: 100px 0;
    background: var(--ink-2);
    position: relative;
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.faq-wheel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#faqWheel {
    cursor: pointer;
}

.faq-qa-wrap {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-category-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 42px;
    color: var(--lilac);
    text-transform: uppercase;
    margin-bottom: 32px;
    line-height: 0.9;
}

.faq-item {
    margin-bottom: 24px;
}

.faq-q {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.faq-a {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(240, 232, 216, 0.65);
    line-height: 1.65;
}

.faq-qa-wrap {
    opacity: 1;
    transition: opacity 0.3s;
}

.faq-qa-wrap.fade {
    opacity: 0;
}

/* ===================== WHY CHOOSE US ===================== */
#why {
    padding: 100px 0;
    background: var(--ink-3);
}

.why-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
}

.why-card {
    background: var(--ink-2);
    padding: 48px 36px;
    border: 1px solid rgba(216, 145, 239, 0.06);
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--lilac);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.why-card:hover::after {
    transform: scaleX(1);
}

.why-card:hover {
    background: rgba(29, 21, 41, 0.8);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.why-desc {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(240, 232, 216, 0.6);
    line-height: 1.65;
}

/* ===================== SERVICE AREAS ===================== */
#areas {
    padding: 100px 0;
    background: var(--ink);
}

.areas-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 48px;
}

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

.area-chip {
    padding: 14px 12px;
    text-align: center;
    background: var(--ink-2);
    border: 1px solid rgba(216, 145, 239, 0.07);
    transition: all 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.area-chip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lilac-pale);
    opacity: 0;
    transition: opacity 0.25s;
}

.area-chip:hover::before {
    opacity: 1;
}

.area-chip:hover .area-name {
    color: var(--lilac);
}

.area-name {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: rgba(240, 232, 216, 0.7);
    letter-spacing: 0.05em;
    transition: color 0.25s;
    display: block;
}

/* ===================== FILM STRIP SERVICES ===================== */
#film {
    height: 80vh;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.film-title-stamp {
    position: absolute;
    top: 20px;
    left: 32px;
    z-index: 10;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
}

.film-progress-rail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #111;
    z-index: 10;
    cursor: pointer;
}

.film-progress-fill {
    height: 100%;
    background: var(--lilac);
    width: 0%;
    transition: width 0.1s linear;
    pointer-events: none;
}

.film-track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
}

.film-track::-webkit-scrollbar {
    display: none;
}

.film-track.dragging {
    cursor: grabbing;
}

.film-frame {
    flex-shrink: 0;
    width: 480px;
    height: 100%;
    position: relative;
    border-right: 1px solid #1a1a1a;
}

.sprocket-strip {
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    background: #0a0a0a;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 16px;
}

.sprocket-strip.top {
    top: 0;
}

.sprocket-strip.bottom {
    bottom: 0;
}

.sprocket-hole {
    width: 18px;
    height: 26px;
    border-radius: 4px;
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
}

.film-num {
    position: absolute;
    z-index: 3;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.film-num.top {
    top: 12px;
    left: 8px;
}

.film-num.bottom {
    bottom: 12px;
    right: 8px;
}

.frame-content {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    right: 0;
    overflow: hidden;
}

.frame-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(0.85);
}

.frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.frame-service-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 80px;
    line-height: 0.85;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    overflow: hidden;
}

.frame-text-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink-2);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frame-text-num {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(216, 145, 239, 0.4);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.frame-text-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    color: var(--lilac);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.frame-text-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(240, 232, 216, 0.7);
    line-height: 1.65;
    margin-bottom: 20px;
}

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

.frame-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--lilac);
    border: 1px solid rgba(216, 145, 239, 0.3);
    padding: 3px 10px;
    letter-spacing: 0.08em;
}

/* ===================== CTA SECTION ===================== */
#cta {
    padding: 120px 0;
    background: var(--lilac);
    position: relative;
    overflow: hidden;
    text-align: center;
}

#cta::before {
    content: 'CALL US';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 200px;
    color: rgba(14, 11, 20, 0.08);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: -0.02em;
}

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

.cta-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.25em;
    color: rgba(14, 11, 20, 0.6);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(48px, 6vw, 86px);
    color: var(--ink);
    text-transform: uppercase;
    line-height: 0.88;
    margin-bottom: 24px;
}

.cta-sub {
    font-family: var(--font-body);
    font-size: 19px;
    color: rgba(14, 11, 20, 0.7);
    margin-bottom: 44px;
    line-height: 1.5;
}

.cta-phone-big {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--ink);
    text-decoration: none;
    display: block;
    margin-bottom: 36px;
    letter-spacing: -0.01em;
}

.cta-phone-big:hover {
    text-decoration: underline;
}

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

.cta-btn-dark {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 40px;
    background: var(--ink);
    color: var(--lilac);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.cta-btn-dark:hover {
    background: #1d1529;
}

.cta-btn-outline {
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 40px;
    background: transparent;
    color: var(--ink);
    border: 2px solid rgba(14, 11, 20, 0.4);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.cta-btn-outline:hover {
    border-color: var(--ink);
    background: rgba(14, 11, 20, 0.08);
}

/* ===================== CONTACT ===================== */
#contact {
    padding: 100px 0;
    background: var(--ink-3);
}

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

.contact-map-wrap {
    border: 2px solid rgba(216, 145, 239, 0.15);
    overflow: hidden;
    position: relative;
    height: 400px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(0.3) invert(0.05);
}

.map-overlay-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--ink);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--lilac);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 52px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 36px;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(216, 145, 239, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-detail-text {}

.contact-detail-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(216, 145, 239, 0.6);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-detail-val {
    font-family: var(--font-ui);
    font-size: 15px;
    color: var(--cream);
}

.contact-detail-val a {
    color: var(--lilac);
    text-decoration: none;
}

/* ===================== FOOTER ===================== */
#footer {
    min-height: 100vh;
    background: #120d1a;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(216, 145, 239, 0.1);
}

.footer-brand-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 48px 0;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(48px, 9vw, 130px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(216, 145, 239, 0.2);
    text-transform: uppercase;
    text-align: center;
    line-height: 0.88;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.footer-brand-name span {
    -webkit-text-stroke: 1px var(--lilac);
    color: var(--lilac);
    opacity: 0.8;
    display: block;
}

.footer-brand-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(216, 145, 239, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding: 60px 80px;
    border-top: 1px solid rgba(216, 145, 239, 0.08);
}

.footer-col-title {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--lilac);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

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

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

.footer-links a {
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(240, 232, 216, 0.55);
    text-decoration: none;
    transition: color 0.25s;
}

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

.footer-contact-item {
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(240, 232, 216, 0.55);
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact-item span {
    color: var(--lilac);
}

.footer-newsletter {
    position: relative;
    margin-top: 4px;
}

.footer-newsletter input {
    width: 100%;
    padding: 13px 50px 13px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(216, 145, 239, 0.2);
    color: var(--cream);
    font-family: var(--font-ui);
    font-size: 13px;
    outline: none;
    transition: border-color 0.25s;
}

.footer-newsletter input::placeholder {
    color: rgba(240, 232, 216, 0.3);
}

.footer-newsletter input:focus {
    border-color: rgba(216, 145, 239, 0.5);
}

.footer-newsletter button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--lilac);
    border: none;
    cursor: pointer;
    padding: 0 16px;
    color: var(--ink);
    font-size: 14px;
    transition: background 0.25s;
}

.footer-newsletter button:hover {
    background: var(--lilac-dim);
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(216, 145, 239, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(240, 232, 216, 0.5);
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
}

.social-btn:hover {
    border-color: var(--lilac);
    color: var(--lilac);
}

.footer-bottom {
    padding: 20px 80px;
    border-top: 1px solid rgba(216, 145, 239, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 10px;
    color: rgba(240, 232, 216, 0.25);
    letter-spacing: 0.1em;
}

/* ===================== PLACEHOLDERS FOR IMAGES ===================== */
.img-placeholder {
    background: linear-gradient(135deg, #1d1529 0%, #2a1a3e 50%, #1d1529 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 9px;
    color: rgba(216, 145, 239, 0.3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
    #hero {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .about-inner,
    .contact-inner {
        grid-template-columns: 1fr;
    }

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

    .featured-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .nav-links {
        display: none;
    }

    .film-frame {
        width: 320px;
    }
}