:root {
    --red: #8E0E00;
    --red-deep: #6b0a00;
    --red-bright: #b01200;
    --dark: #1F1C18;
    --dark2: #2a2622;
    --dark3: #3a342e;
    --gold: #c9922a;
    --gold-light: #e8b84b;
    --cream: #f0ece0;
    --cream2: #e8e2d0;
    --white: #ffffff;
    --text-muted: #888;
    --paper: #f0ece0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ══════════════════════════════════════════
   FLOATING PILL NAVBAR
══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 40px);
    max-width: 1100px;
    background: rgba(31, 28, 24, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(142, 14, 0, 0.35);
    border-radius: 60px;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(142, 14, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(20, 17, 14, 0.97);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.7);
}

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

.nav-logo-img {
    width: 109px;
    height: 109px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 16px rgba(142, 14, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: #8e0e00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--white);
    box-shadow: 0 0 16px rgba(142, 14, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-logo-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    line-height: 1;
}

.nav-logo-text span {
    color: var(--gold);
}

.nav-logo-location {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.52);
    letter-spacing: 1.5px;
    font-family: 'IBM Plex Mono', monospace;
    line-height: 1;
}

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

.nav-links a {
    padding: 8px 14px;
    border-radius: 40px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    font-weight: 500;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    background: rgba(142, 14, 0, 0.25);
    color: var(--white);
}

.nav-cta {
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 20px rgba(142, 14, 0, 0.4);
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--red-bright), var(--red)) !important;
    transform: scale(1.03);
    box-shadow: 0 6px 28px rgba(142, 14, 0, 0.55) !important;
}

.nav-phone {
    font-size: 12px;
    color: var(--gold);
    margin-left: 2px;
}

/* ══════════════════════════════════════════
   HERO — BG TEXT HIDDEN BY FOREGROUND REVEAL
══════════════════════════════════════════ */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: var(--dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Subtle red glow bottom-left */
.hero-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 55% at 15% 80%, rgba(142, 14, 0, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 35% at 85% 20%, rgba(142, 14, 0, 0.08) 0%, transparent 60%);
}

/* Right image panel */
.hero-image-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48%;
    background: url('../img/hero.jpeg') center/cover no-repeat;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
    filter: brightness(0.55) saturate(0.75);
    z-index: 1;
}

.hero-image-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--dark) 0%, rgba(31, 28, 24, 0.55) 55%, transparent 100%);
}

/* ─── BG GHOST TEXT — sits behind everything, gets "erased" by clip ─── */
.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    /* Ghost text: outline only, very faint */
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(90px, 16vw, 210px);
    text-transform: uppercase;
    line-height: 0.88;
    letter-spacing: -2px;
    /* paint as outline so foreground text "punches through" it */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
    color: transparent;
    /* start fully visible, fade out as real text arrives */
    animation: bgTextHide 0.6s 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    white-space: nowrap;
}

@keyframes bgTextHide {
    0% {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
        opacity: 1;
    }

    100% {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
        opacity: 0.25;
    }
}

/* ─── Each word of bg text fades out one by one as fg word pops in ─── */
.hero-bg-text .bgt-line {
    display: block;
}

.hero-bg-text .bgt-line:nth-child(1) {
    animation: bgWordFade 0.5s 0.85s forwards;
}

.hero-bg-text .bgt-line:nth-child(2) {
    animation: bgWordFade 0.5s 1.05s forwards;
}

.hero-bg-text .bgt-line:nth-child(3) {
    animation: bgWordFade 0.5s 1.25s forwards;
}

@keyframes bgWordFade {
    to {
        opacity: 0;
        filter: blur(12px);
        transform: scale(1.04);
    }
}

/* ─── FOREGROUND MAIN CONTENT ─── */
.hero-overlay {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 8%;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(142, 14, 0, 0.2);
    border: 1px solid rgba(142, 14, 0, 0.5);
    border-radius: 40px;
    padding: 7px 18px;
    margin-bottom: 28px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: wordPop 0.7s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Each headline word "pops" in — scaling up from slightly small, while
   the corresponding bg-text word simultaneously fades out behind it    */
.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 9vw, 118px);
    line-height: 0.88;
    text-transform: uppercase;
    color: var(--white);
    max-width: 100%;
    letter-spacing: -1px;
}

.hero-title .ht-word {
    display: block;
    opacity: 0;
    transform: translateY(18px) scale(0.94);
    animation: wordPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-title .ht-word:nth-child(1) {
    animation-delay: 0.75s;
}

.hero-title .ht-word:nth-child(2) {
    animation-delay: 0.95s;
    color: var(--red);
}

.hero-title .ht-word:nth-child(3) {
    animation-delay: 1.15s;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.35);
    color: transparent;
}

@keyframes wordPop {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-sub {
    margin-top: 22px;
    font-size: clamp(14px, 1.6vw, 17px);
    color: rgba(255, 255, 255, 0.68);
    max-width: 480px;
    line-height: 1.65;
    opacity: 0;
    animation: wordPop 0.6s 1.4s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.hero-ctas {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: wordPop 0.6s 1.6s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    color: var(--white);
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(142, 14, 0, 0.45);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(142, 14, 0, 0.6);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.hero-trust {
    margin-top: 44px;
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    opacity: 0;
    animation: wordPop 0.6s 1.85s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.trust-item i {
    color: var(--gold);
    font-size: 13px;
}

/* Red vertical accent line */
.hero-accent-line {
    position: absolute;
    left: 7%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent 0%, var(--red) 30%, var(--red) 70%, transparent 100%);
    opacity: 0;
    z-index: 10;
    animation: lineIn 1s 0.4s ease forwards;
}

@keyframes lineIn {
    to {
        opacity: 0.6;
    }
}

/* Floating service tags bottom-right */
.hero-service-tags {
    position: absolute;
    bottom: 48px;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    align-items: flex-end;
    opacity: 0;
    animation: wordPop 0.7s 2.1s ease forwards;
}

.hero-svc-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(31, 28, 24, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 2px solid var(--red);
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.hero-svc-tag i {
    color: var(--red);
    font-size: 11px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
#stats {
    background: linear-gradient(135deg, var(--red-deep), #5c0800);
    padding: 0;
    position: relative;
    overflow: hidden;
}

#stats::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.03'%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");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.stat-num span {
    color: var(--gold);
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════
   SERVICES — PERFORATED TICKET
══════════════════════════════════════════ */
#services {
    background: var(--paper);
    padding: 100px 0;
    position: relative;
}

#services::before {
    content: 'SERVICES';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 140px;
    color: rgba(142, 14, 0, 0.05);
    letter-spacing: 10px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
    content: '—';
    opacity: 0.5;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(40px, 5vw, 62px);
    color: var(--dark);
    line-height: 1;
    text-transform: uppercase;
}

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

.section-sub {
    font-size: 16px;
    color: #666;
    margin-top: 12px;
    max-width: 500px;
    margin-inline: auto;
}

.tickets-stack {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.ticket {
    display: flex;
    background: var(--white);
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s;
    cursor: pointer;
}

.ticket:hover {
    transform: translateY(-7px) scale(1.012);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
}

/* Stub */
.ticket-stub {
    width: 80px;
    flex-shrink: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.stub-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--gold);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    letter-spacing: 3px;
}

/* Perforation */
.ticket-perf {
    width: 32px;
    flex-shrink: 0;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 12px 0;
    position: relative;
}

.ticket-perf::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    border-left: 2px dashed rgba(0, 0, 0, 0.2);
    transform: translateX(-50%);
}

.perf-hole {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--paper);
    border: none;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Body */
.ticket-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.ticket-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.ticket-img-placeholder {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
}

.ticket-content {
    padding: 22px 28px 24px;
}

.ticket-stamp {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 2px solid var(--red);
    border-radius: 4px;
    padding: 4px 10px;
    transform: rotate(-7deg);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    z-index: 3;
}

.ticket-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--dark);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ticket-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

.ticket-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ticket-tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    background: rgba(142, 14, 0, 0.08);
    color: var(--red);
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid rgba(142, 14, 0, 0.2);
}

/* Ticket image backgrounds */
.ti-1 {
    background: linear-gradient(135deg, #1a0a00, #3d1200);
}

.ti-2 {
    background: linear-gradient(135deg, #0d1a00, #1a3300);
}

.ti-3 {
    background: linear-gradient(135deg, #0a0a1a, #1a1a3d);
}

.ti-4 {
    background: linear-gradient(135deg, #1a0a0a, #3d1818);
}

.ti-5 {
    background: linear-gradient(135deg, #0a1a18, #1a3d38);
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
#cta {
    background: linear-gradient(135deg, var(--red-deep) 0%, var(--dark) 60%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(44px, 7vw, 80px);
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 24px;
}

.cta-title span {
    color: var(--gold);
}

.cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 44px;
}

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

.cta-phone-big {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 42px;
    color: var(--white);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-top: 44px;
    justify-content: center;
    transition: color 0.3s;
}

.cta-phone-big i {
    color: var(--gold);
    font-size: 32px;
}

.cta-phone-big:hover {
    color: var(--gold);
}

/* ══════════════════════════════════════════
   HOW WE WORK
══════════════════════════════════════════ */
#how-we-work {
    background: var(--dark2);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

#how-we-work::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 14, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

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

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.how-step:last-child {
    border-bottom: none;
}

.step-num-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--red);
    position: relative;
}

.step-num-wrap::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    height: 100%;
    border-left: 1px dashed rgba(142, 14, 0, 0.3);
    transform: translateX(-50%);
}

.how-step:last-child .step-num-wrap::after {
    display: none;
}

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

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.how-right {
    position: relative;
}

.how-img-frame {
    background: var(--dark3);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    border: 1px solid rgba(142, 14, 0, 0.2);
}

.how-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.how-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.how-badge-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 44px;
    color: var(--white);
    line-height: 1;
}

.how-badge-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
#why-us {
    background: var(--dark);
    padding: 100px 20px;
}

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

.why-left h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(42px, 5vw, 64px);
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.95;
}

.why-left h2 span {
    color: var(--red);
    display: block;
}

.why-left p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    line-height: 1.7;
}

.why-left .btn-primary {
    margin-top: 28px;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: var(--dark2);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.why-card:hover {
    border-color: rgba(142, 14, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

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

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(142, 14, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--red);
    margin-bottom: 16px;
}

.why-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ══════════════════════════════════════════
   SERVICE AREAS
══════════════════════════════════════════ */
#service-areas {
    background: var(--dark2);
    padding: 100px 20px;
}

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

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

.area-pill {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 14px 16px;
    text-align: center;
    transition: all 0.25s;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.area-pill:hover {
    background: rgba(142, 14, 0, 0.15);
    border-color: rgba(142, 14, 0, 0.4);
    transform: scale(1.03);
}

.area-pill i {
    color: var(--red);
    font-size: 12px;
}

.area-pill span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ══════════════════════════════════════════
   COMPREHENSIVE SERVICES (4 big cards)
══════════════════════════════════════════ */
#main-services {
    background: var(--dark);
    padding: 100px 20px;
}

.main-services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.main-svc-card {
    background: var(--dark2);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s;
    position: relative;
}

.main-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(142, 14, 0, 0.3);
}

.main-svc-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: brightness(0.75) saturate(0.9);
    transition: filter 0.4s;
}

.main-svc-card:hover .main-svc-img {
    filter: brightness(0.9) saturate(1);
}

.main-svc-img-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.main-svc-body {
    padding: 32px;
}

.main-svc-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    color: var(--red);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.main-svc-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1;
}

.main-svc-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 20px;
}

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

.main-svc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.main-svc-features li i {
    color: var(--red);
    font-size: 12px;
    width: 16px;
}

.main-svc-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(142, 14, 0, 0.9);
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════
   FAQ — INK LINE ACCORDION
══════════════════════════════════════════ */
#faq {
    background: #f5f2ec;
    padding: 110px 20px;
}

#faq .section-tag {
    color: var(--red);
}

#faq .section-title {
    color: var(--dark);
}

#faq .section-sub {
    color: #666;
}

.faq-accordion {
    max-width: 780px;
    margin: 64px auto 0;
}

.faq-ink-item {
    display: flex;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid rgba(31, 28, 24, 0.1);
    position: relative;
}

.faq-ink-item:first-child {
    border-top: 1px solid rgba(31, 28, 24, 0.1);
}

/* The vertical ink line — left edge */
.faq-ink-line {
    width: 3px;
    flex-shrink: 0;
    position: relative;
    background: rgba(31, 28, 24, 0.08);
    margin-right: 36px;
    border-radius: 2px;
    overflow: hidden;
}

.faq-ink-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 28%;
    background: rgba(31, 28, 24, 0.28);
    border-radius: 2px;
    transition: height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.4s ease;
}

.faq-ink-item.open .faq-ink-line::after {
    height: 100%;
    background: var(--red);
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.2s ease 0.1s;
}

.faq-ink-body {
    flex: 1;
    padding: 32px 0 32px 0;
    cursor: pointer;
}

.faq-ink-question {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(22px, 3vw, 28px);
    color: #1a1714;
    line-height: 1.2;
    letter-spacing: 0.2px;
    transition: color 0.2s ease;
    user-select: none;
    padding-right: 20px;
}

.faq-ink-body:hover .faq-ink-question {
    color: #000;
}

.faq-ink-item.open .faq-ink-question {
    color: var(--dark);
}

.faq-ink-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease;
    opacity: 0;
}

.faq-ink-item.open .faq-ink-answer {
    max-height: 400px;
    opacity: 1;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease 0.1s;
}

.faq-ink-answer-inner {
    padding: 18px 0 10px 0;
    font-size: 16px;
    color: #4a4540;
    line-height: 1.78;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Number label — subtle */
.faq-ink-num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: rgba(31, 28, 24, 0.3);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.faq-ink-item.open .faq-ink-num {
    color: var(--red);
    opacity: 0.7;
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact {
    background: var(--dark2);
    padding: 100px 20px;
}

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

.contact-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 44px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 24px;
}

.contact-info h3 span {
    color: var(--red);
}

.contact-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: var(--dark3);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(142, 14, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--red);
    flex-shrink: 0;
}

.contact-detail-text h5 {
    font-weight: 600;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail-text p {
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
}

.contact-form {
    background: var(--dark3);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 28px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 13px 16px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s;
    width: 100%;
}

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

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

.form-group select option {
    background: var(--dark2);
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer-cta-strip {
    background: linear-gradient(135deg, var(--red), var(--red-deep));
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
}

.footer-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-cta-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-cta-text span {
    color: var(--gold);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-white:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.04);
}

footer {
    background: #0d0b09;
    padding: 64px 20px 32px;
}

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

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

.footer-brand .nav-logo-text {
    font-size: 22px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 14px;
    line-height: 1.7;
}

.footer-col h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col ul li a i {
    font-size: 11px;
    color: var(--red);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: gap;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy a {
    color: var(--gold);
    text-decoration: none;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
}

.social-btn:hover {
    background: var(--red);
    color: var(--white);
}

/* ══════════════════════════════════════════
   SCROLL ANIMATION UTILS
══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ══════════════════════════════════════════
   MOBILE
══════════════════════════════════════════ */
@media(max-width: 900px) {
    .nav-links {
        display: none;
    }

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

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

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

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

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

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

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

    .hero-image-panel {
        opacity: 0.3;
        width: 100%;
        clip-path: none;
    }

    .hero-overlay {
        padding: 0 6%;
    }

    .hero-title {
        max-width: 100%;
    }

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

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

@media(max-width: 600px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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