:root {
    --neon: #FF10F0;
    --neon-dim: rgba(255, 16, 240, 0.15);
    --neon-glow: 0 0 20px rgba(255, 16, 240, 0.6), 0 0 60px rgba(255, 16, 240, 0.2);
    --olive: #f26cc3;
    --olive2: #fa90f3;
    --ink: #0A0A0C;
    --ink2: #111116;
    --ink3: #1A1A22;
    --white: #F5F3EE;
    --gray: #8A8890;
    --light: #E8E4DC;
}

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

html {
    scroll-behavior: smooth;
}

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

/* ═══════════════════════════════════════════
 NAVBAR — DUAL COLOR SPLIT
═══════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: stretch;
    height: 94px;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.nav-left {
    background: var(--ink2);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 0 2.5rem;
    flex: 1;
    border-right: 2px solid var(--neon);
    position: relative;
}

.nav-left::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--neon);
    box-shadow: var(--neon-glow);
}

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

.nav-logo-image {
    width: 76px;
    height: 76px;
    border: 2px solid var(--neon);
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 0 12px rgba(255, 16, 240, 0.4);
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    color: var(--gray);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
    white-space: nowrap;
}

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

.nav-right {
    background: var(--neon);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    min-width: 340px;
}

.nav-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-cta {
    background: var(--ink);
    color: var(--neon);
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--ink);
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

/* ═══════════════════════════════════════════
 HERO — TRIANGLE COMPOSITION
═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
}

/* Background dashed grid lines */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 184, 96, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 184, 96, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-stage {
    position: relative;
    width: 700px;
    height: 620px;
    flex-shrink: 0;
}

/* Triangle 1 — large, pointing up, with image */
.tri1-wrap {
    position: absolute;
    width: 500px;
    height: 460px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.tri1-img {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    overflow: hidden;
    position: relative;
}

.tri1-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.8);
}

/* SVG outline frame for triangle 1 */
.tri1-outline {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Triangle 2 — medium, pointing down, gradient */
.tri2-wrap {
    position: absolute;
    width: 420px;
    height: 380px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
    background: linear-gradient(160deg, var(--olive) 0%, var(--olive2) 60%, #6B5F1E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tri2-headline {
    text-align: center;
    padding-top: 60px;
    padding-bottom: 120px;
}

.tri2-headline h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 4.5vw, 60px);
    color: var(--ink);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* Triangle 3 — small, pointing up, second image */
.tri3-wrap {
    position: absolute;
    width: 200px;
    height: 180px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: var(--ink2);
    z-index: 3;
    overflow: hidden;
}

.tri3-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: hue-rotate(280deg) saturate(1.5);
}

/* Negative space content */
.hero-tagline {
    position: absolute;
    top: 80px;
    left: -180px;
    width: 220px;
}

.hero-tagline p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--olive);
    line-height: 1.4;
}

.hero-tagline-line {
    width: 60px;
    height: 1px;
    background: var(--olive);
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

.hero-ctas {
    position: absolute;
    bottom: 120px;
    left: -200px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-primary {
    background: var(--neon);
    color: var(--ink);
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    display: inline-block;
    box-shadow: 0 0 24px rgba(255, 16, 240, 0.4);
    transition: all 0.25s;
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(255, 16, 240, 0.7);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--olive);
    color: var(--olive);
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    display: inline-block;
    transition: all 0.25s;
}

.btn-outline:hover {
    background: var(--olive);
    color: var(--ink);
}

.hero-trust {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-phone {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--neon);
    text-shadow: var(--neon-glow);
    text-decoration: none;
    display: block;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.trust-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--olive);
    flex-shrink: 0;
}

/* Dashed connecting lines */
.hero-connector {
    position: absolute;
    pointer-events: none;
    overflow: visible;
}

/* ═══════════════════════════════════════════
 ABOUT SECTION
═══════════════════════════════════════════ */
.about {
    background: var(--ink2);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: 'ABOUT';
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 18rem;
    color: rgba(255, 16, 240, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(20%) brightness(0.85);
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--neon);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.15;
}

.about-img-frame {
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: -12px;
    border: 1px solid rgba(200, 184, 96, 0.3);
    pointer-events: none;
}

.about-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--neon);
    box-shadow: 0 0 8px var(--neon);
}

.about h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about h2 em {
    font-style: normal;
    color: var(--olive);
}

.about p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(245, 243, 238, 0.7);
    margin-bottom: 1.25rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
}

.feature-box {
    background: var(--ink3);
    border: 1px solid rgba(200, 184, 96, 0.15);
    padding: 1.25rem;
    position: relative;
    transition: border-color 0.25s;
}

.feature-box:hover {
    border-color: var(--neon);
}

.feature-box:hover .feature-box-line {
    background: var(--neon);
    box-shadow: 0 0 8px var(--neon);
}

.feature-box-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--olive);
    transition: all 0.25s;
}

.feature-box svg {
    width: 24px;
    height: 24px;
    fill: var(--olive);
    margin-bottom: 0.6rem;
}

.feature-box h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

/* ═══════════════════════════════════════════
 SERVICES — HORIZONTAL CINEMATIC SCROLL
═══════════════════════════════════════════ */
.services-section {
    background: var(--ink);
    position: relative;
    overflow: hidden;
}

.services-label {
    padding: 4rem 2rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.services-label span {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon);
}

.services-label h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
    color: var(--white);
}

.services-scroll-wrap {
    position: relative;
    height: 80vh;
}

.services-sticky-counter {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--neon);
    letter-spacing: 0.1em;
    z-index: 10;
    background: rgba(10, 10, 12, 0.8);
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255, 16, 240, 0.3);
}

.services-track {
    display: flex;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
}

.services-track:active {
    cursor: grabbing;
}

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

.service-card {
    min-width: 480px;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    padding: 3rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: border-color 0.25s;
}

.service-card:hover {
    border-right-color: rgba(255, 16, 240, 0.2);
}

.service-card.dark {
    background: var(--ink2);
}

.service-card.light {
    background: var(--ink3);
}

.service-card.accent {
    background: linear-gradient(135deg, #1A0F1E 0%, #0A0A0C 100%);
    border-left: 3px solid var(--neon);
}

.service-bg-num {
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 18rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    user-select: none;
}

.service-card.accent .service-bg-num {
    color: rgba(255, 16, 240, 0.06);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--olive);
}

.service-card.accent .service-icon svg {
    fill: var(--neon);
}

.service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.95rem;
    color: rgba(245, 243, 238, 0.55);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 360px;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 184, 96, 0.3);
    padding-bottom: 0.2rem;
    transition: all 0.2s;
}

.service-card.accent .service-arrow {
    color: var(--neon);
    border-bottom-color: rgba(255, 16, 240, 0.3);
}

.service-arrow:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.service-arrow svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* ═══════════════════════════════════════════
 CTA SECTION #1
═══════════════════════════════════════════ */
.cta1 {
    background: var(--neon);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta1::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta1::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta1-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta1 h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--ink);
    text-transform: uppercase;
    line-height: 0.95;
}

.cta1 p {
    font-size: 1.1rem;
    color: rgba(10, 10, 12, 0.7);
    margin-top: 0.75rem;
    max-width: 400px;
}

.btn-dark {
    background: var(--ink);
    color: var(--neon);
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 2.5rem;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.btn-dark:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════
 FAQ — ISOMETRIC BOX STACK
═══════════════════════════════════════════ */
.faq-section {
    background: var(--ink);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: 'FAQ';
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 20rem;
    color: rgba(255, 16, 240, 0.025);
    line-height: 1;
    pointer-events: none;
}

.section-header {
    margin-bottom: 4rem;
}

.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--neon);
    box-shadow: 0 0 8px var(--neon);
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 4vw, 4rem);
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--white);
}

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

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Isometric grid */
.iso-grid {
    display: grid;
    grid-template-columns: repeat(3, 120px);
    gap: 8px;
    transform: rotate(-5deg) skewX(-5deg);
    transform-origin: center;
}

.iso-box {
    width: 120px;
    height: 100px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.iso-box:hover {
    transform: translateY(-6px) scale(1.05);
}

.iso-box.active {
    transform: translateY(-8px) scale(1.08);
}

.iso-face-top {
    position: absolute;
    top: 0;
    left: 10px;
    width: 100px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    transform: skewX(-40deg);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.iso-face-front {
    position: absolute;
    top: 20px;
    left: 0;
    width: 110px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.iso-box:nth-child(1) .iso-face-front {
    background: #1E1A2E;
    border-color: rgba(255, 16, 240, 0.2);
}

.iso-box:nth-child(2) .iso-face-front {
    background: #1A1E18;
    border-color: rgba(200, 184, 96, 0.2);
}

.iso-box:nth-child(3) .iso-face-front {
    background: #1A1820;
    border-color: rgba(255, 16, 240, 0.15);
}

.iso-box:nth-child(4) .iso-face-front {
    background: #181E1A;
    border-color: rgba(200, 184, 96, 0.15);
}

.iso-box:nth-child(5) .iso-face-front {
    background: #1E1818;
    border-color: rgba(255, 16, 240, 0.2);
}

.iso-box:nth-child(6) .iso-face-front {
    background: #181A1E;
    border-color: rgba(200, 184, 96, 0.2);
}

.iso-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.iso-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.48rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
    margin-top: 0.2rem;
}

.iso-box.active .iso-num {
    color: var(--neon);
}

.iso-box.active .iso-face-front {
    border-color: var(--neon) !important;
    background: #1E0A1E !important;
}

.iso-box:nth-child(even).active .iso-face-front {
    border-color: var(--olive) !important;
}

.iso-box:nth-child(even).active .iso-num {
    color: var(--olive) !important;
}

/* FAQ accordion */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: color 0.2s;
}

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

.faq-q-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--neon);
    min-width: 30px;
}

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

.faq-toggle {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 12px;
    height: 12px;
    fill: var(--gray);
    transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
    background: var(--neon);
    border-color: var(--neon);
}

.faq-item.open .faq-toggle svg {
    fill: var(--ink);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 2.5rem;
}

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

.faq-a p {
    font-size: 1rem;
    color: rgba(245, 243, 238, 0.65);
    line-height: 1.7;
    padding-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════
 CITIES — SERVICE AREAS
═══════════════════════════════════════════ */
.cities-section {
    background: var(--ink2);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0;
    margin-top: 3rem;
}

.city-item {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.2s;
    cursor: default;
}

.city-item:hover {
    background: rgba(255, 16, 240, 0.06);
    border-color: rgba(255, 16, 240, 0.2);
}

.city-item svg {
    width: 12px;
    height: 12px;
    fill: var(--neon);
    flex-shrink: 0;
    opacity: 0.7;
}

.city-item span {
    font-family: 'Space Mono', monospace;
    font-size: 0.72rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.city-item:hover span {
    color: var(--white);
}

/* ═══════════════════════════════════════════
 CTA SECTION #2
═══════════════════════════════════════════ */
.cta2 {
    background: var(--ink3);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 16, 240, 0.15);
}

.cta2-inner {
    text-align: center;
    position: relative;
}

.cta2-inner::before {
    content: '24/7';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 14rem;
    color: rgba(255, 16, 240, 0.04);
    line-height: 1;
    pointer-events: none;
}

.cta2 h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 6rem);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.cta2 h2 span {
    color: var(--neon);
    text-shadow: var(--neon-glow);
}

.cta2 p {
    font-size: 1.2rem;
    color: rgba(245, 243, 238, 0.6);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.cta2-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
 DETAILED SERVICES — SPLIT NARRATIVE SCROLL
═══════════════════════════════════════════ */
.detailed-services {
    background: var(--ink);
    position: relative;
}

.ds-header {
    padding: 6rem 2rem 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.ds-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

/* Sticky left panel */
.ds-sticky {
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow: hidden;
    background: var(--ink2);
}

.ds-sticky-bg {
    position: absolute;
    inset: 0;
    transition: clip-path 0.5s ease;
}

.ds-sticky-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(0.6);
}

.ds-sticky-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 16rem;
    color: rgba(255, 16, 240, 0.08);
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.4s;
    z-index: 1;
}

.ds-sticky-band {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    z-index: 2;
    background: linear-gradient(transparent, rgba(10, 10, 12, 0.9));
}

.ds-sticky-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon), var(--olive));
}

.ds-sticky-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--white);
}

.ds-sticky-steps {
    display: flex;
    gap: 4px;
    margin-top: 0.75rem;
}

.ds-step-dash {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.ds-step-dash.active {
    background: var(--neon);
    box-shadow: 0 0 8px var(--neon);
}

/* Right scroll panel */
.ds-right {
    overflow-y: auto;
    scrollbar-width: none;
}

.ds-right::-webkit-scrollbar {
    display: none;
}

.ds-service-block {
    padding: 5rem 3rem;
    border-bottom: 1px solid rgba(200, 184, 96, 0.15);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ds-service-anchor {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.ds-service-block h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}

.ds-service-block p {
    font-size: 1.05rem;
    color: rgba(245, 243, 238, 0.65);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.ds-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.ds-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--olive);
    border: 1px solid rgba(200, 184, 96, 0.3);
    padding: 0.3rem 0.75rem;
}

.ds-process {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: var(--ink2);
    border-left: 3px solid var(--neon);
}

.ds-process-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ds-process-num {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--neon);
    min-width: 20px;
    margin-top: 0.15rem;
}

.ds-process-text {
    font-size: 0.9rem;
    color: rgba(245, 243, 238, 0.7);
    line-height: 1.5;
}

.ds-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--olive);
    line-height: 1.5;
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--olive);
}

/* ═══════════════════════════════════════════
 HOW WE WORK + STATS
═══════════════════════════════════════════ */
.how-section {
    background: var(--ink2);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 4rem;
}

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

.how-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

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

.how-step-num {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.how-step-circle {
    width: 48px;
    height: 48px;
    border: 2px solid var(--neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--neon);
    box-shadow: 0 0 16px rgba(255, 16, 240, 0.2);
    flex-shrink: 0;
}

.how-step-line {
    width: 1px;
    flex: 1;
    background: rgba(255, 16, 240, 0.15);
    margin-top: 4px;
}

.how-step:last-child .how-step-line {
    display: none;
}

.how-step h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.how-step p {
    font-size: 0.95rem;
    color: rgba(245, 243, 238, 0.6);
    line-height: 1.6;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--ink3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--neon);
    box-shadow: 0 0 12px var(--neon);
}

.stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--neon);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 16, 240, 0.4);
}

.stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════
 CONTACT
═══════════════════════════════════════════ */
.contact-section {
    background: var(--ink);
    padding: 8rem 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--ink2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--neon);
    transition: border-color 0.2s;
}

.contact-item:hover {
    border-color: var(--olive);
}

.contact-item-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--neon);
}

.contact-item h4 {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.3rem;
}

.contact-item a,
.contact-item p {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    line-height: 1.3;
}

.contact-item a:hover {
    color: var(--neon);
}

.map-wrap {
    background: var(--ink2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--ink2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%);
    opacity: 0.85;
}

/* ═══════════════════════════════════════════
 FOOTER — TYPOGRAPHIC WAVE
═══════════════════════════════════════════ */
footer {
    background: var(--ink2);
    border-top: 1px solid rgba(255, 16, 240, 0.15);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    padding: 4rem 0 0;
    overflow: hidden;
    position: relative;
}

.footer-brand-svg {
    width: 100%;
    overflow: visible;
    display: block;
}

.footer-body {
    padding: 3rem 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col h5 {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1.25rem;
}

.footer-col p {
    font-size: 0.9rem;
    color: rgba(245, 243, 238, 0.45);
    line-height: 1.7;
}

.footer-logo-image {
    width: min(220px, 100%);
    height: auto;
    display: block;
    border: 2px solid var(--olive);
    box-shadow: 0 0 18px rgba(200, 184, 96, 0.25);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.68rem;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    color: rgba(245, 243, 238, 0.25);
    letter-spacing: 0.05em;
}

.footer-bottom a {
    color: var(--neon);
    text-decoration: none;
}

/* Scroll indicator for services */
.scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.62rem;
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scroll-hint-arrow {
    display: flex;
    gap: 2px;
}

.scroll-hint-arrow span {
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1px solid var(--neon);
    border-bottom: 1px solid var(--neon);
    transform: rotate(-45deg);
    opacity: 0.6;
    animation: arrowBounce 1.4s infinite;
}

.scroll-hint-arrow span:nth-child(2) {
    animation-delay: 0.15s;
}

.scroll-hint-arrow span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes arrowBounce {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════
 ANIMATIONS
═══════════════════════════════════════════ */
@keyframes neonPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.neon-pulse {
    animation: neonPulse 2s ease-in-out infinite;
}

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

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

.fade-up {
    animation: fadeUp 0.7s ease forwards;
}

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

    .nav-right {
        min-width: auto;
        padding: 0 1rem;
    }

    .nav-right .nav-cta {
        display: none;
    }

    .hero-stage {
        transform: scale(0.7);
    }

    .hero-tagline,
    .hero-ctas,
    .hero-trust {
        display: none;
    }

    .about-inner,
    .how-grid,
    .contact-inner,
    .faq-layout,
    .ds-layout {
        grid-template-columns: 1fr;
    }

    .ds-sticky {
        position: relative;
        height: 300px;
        top: 0;
    }

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

    .services-scroll-wrap {
        height: 70vh;
    }

    .service-card {
        min-width: 340px;
    }
}

@media (max-width: 600px) {
    .about-features {
        grid-template-columns: 1fr;
    }

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

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

    .hero {
        min-height: auto;
        padding: 100px 1rem 3rem;
    }

    .hero-stage {
        width: 320px;
        height: 360px;
        transform: scale(1);
    }

    .tri1-wrap {
        width: 300px;
        height: 270px;
    }

    .tri2-wrap {
        width: 250px;
        height: 225px;
    }

    .tri3-wrap {
        width: 120px;
        height: 108px;
    }
}

/* ═══════════════════════════════════════════
MANIFESTO HERO POSTER
═══════════════════════════════════════════ */
.manifesto-hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 0 70px;
    background: var(--ink);
    overflow: hidden;
}

.manifesto-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(128, 128, 0, 0.06) 1px, transparent 1px);
    background-size: 6px 6px;
    pointer-events: none;
}

.manifesto-wrap {
    position: relative;
    z-index: 1;
    width: min(1160px, 100%);
    margin: 0 auto;
    padding: 0 clamp(12px, 2.2vw, 34px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.manifesto-word {
    width: 100%;
    margin: 0;
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(60px, 10vw, 140px);
    letter-spacing: clamp(0.06em, 1.1vw, 0.18em);
    line-height: 0.84;
    color: var(--white);
    text-transform: uppercase;
}

.manifesto-main-photo {
    position: relative;
    width: 100%;
    height: 180px;
    margin: clamp(10px, 1.3vw, 18px) 0;
    border: 2px solid var(--olive);
}

.manifesto-main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%) contrast(1.2);
}

.manifesto-main-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(128, 128, 0, 0.7), rgba(128, 128, 0, 0.3), rgba(128, 128, 0, 0.7));
}

.manifesto-secondary {
    margin-top: clamp(18px, 2.5vw, 30px);
    width: 240px;
}

.manifesto-secondary img {
    width: 240px;
    height: 120px;
    border: 2px solid var(--white);
    object-fit: cover;
    filter: grayscale(60%) contrast(1.2);
    display: block;
}

.manifesto-caption {
    margin-top: 8px;
    font-family: 'IBM Plex Mono', 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--gray);
    text-transform: uppercase;
}

.manifesto-tagline {
    margin-top: clamp(20px, 2.8vw, 34px);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--olive);
}

.manifesto-stamp {
    margin-top: 24px;
    border: 3px solid var(--olive);
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.8rem 1.4rem;
    box-shadow: inset 0 0 0 1px var(--olive), 0 0 0 1px rgba(10, 10, 12, 0.5);
    transform: rotate(-1deg);
}

.manifesto-stamp:hover {
    background: var(--olive);
    color: var(--ink);
}

@media (max-width: 768px) {
    .manifesto-hero {
        padding-top: 112px;
    }

    .manifesto-word {
        letter-spacing: 0.05em;
    }

    .manifesto-main-photo {
        height: 160px;
    }
}

/* ═══════════════════════════════════════════
BROKEN GRID EDITORIAL HERO
═══════════════════════════════════════════ */
.broken-grid-hero {
    min-height: 100vh;
    padding: 108px 14px 14px;
    background: var(--ink);
}

.broken-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(130px, 1fr));
    gap: 3px;
    background: var(--olive);
    min-height: calc(100vh - 122px);
}

.bg-cell {
    padding: clamp(0.8rem, 1.2vw, 1.25rem);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.bg-cell:hover {
    box-shadow: inset 0 0 20px rgba(128, 128, 0, 0.1);
    filter: brightness(1.08);
}

.cell-brand {
    background: var(--ink2);
}

.cell-headline {
    background: var(--ink);
}

.cell-tagline {
    background: var(--ink3);
}

.cell-phone {
    background: var(--ink2);
}

.cell-trust {
    background: var(--ink3);
}

.cell-address {
    background: var(--ink2);
}

.cell-dark-empty {
    background: var(--ink);
}

.cell-olive-fill {
    background: var(--olive2);
}

.cell-cta {
    background: var(--olive);
    display: grid;
    place-items: center;
}

.cell-image-a,
.cell-image-b {
    background: var(--ink3);
    padding: 0;
    overflow: hidden;
}

.cell-headline {
    grid-column: 2 / span 3;
    grid-row: 2 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cell-image-a {
    grid-column: 1;
    grid-row: 1 / span 3;
}

.cell-tagline {
    grid-column: 2 / span 2;
    grid-row: 1;
    display: flex;
    align-items: center;
}

.cell-cta {
    grid-column: 4;
    grid-row: 1;
}

.cell-image-b {
    grid-column: 4;
    grid-row: 5 / span 2;
}

.cell-brand {
    grid-column: 2;
    grid-row: 4;
}

.cell-phone {
    grid-column: 3;
    grid-row: 4;
}

.cell-trust {
    grid-column: 4;
    grid-row: 4;
}

.cell-address {
    grid-column: 2;
    grid-row: 5;
}

.cell-olive-fill {
    grid-column: 3;
    grid-row: 5;
}

.cell-dark-empty {
    grid-column: 1;
    grid-row: 5;
}

.cell-image-a img,
.cell-image-b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(35%) contrast(1.1);
}

.cell-label {
    font-family: 'Space Mono', monospace;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.62rem;
    margin-bottom: 0.5rem;
}

.cell-brand h3,
.cell-phone a,
.cell-trust p,
.cell-address p {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.55rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    text-decoration: none;
}

.cell-headline h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.3rem, 7.5vw, 7rem);
    line-height: 0.9;
    letter-spacing: 0.04em;
    color: var(--white);
    margin: 0;
}

.headline-sub {
    margin-top: 0.9rem;
    color: var(--olive);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-style: italic;
}

.cell-tagline p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--white);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    line-height: 1.3;
}

.grid-cta-btn {
    display: inline-block;
    border: 2px solid var(--ink);
    color: var(--ink);
    background: transparent;
    padding: 0.7rem 1rem;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
}

@media (max-width: 900px) {
    .broken-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }

    .cell-headline,
    .cell-image-a,
    .cell-tagline,
    .cell-cta,
    .cell-image-b,
    .cell-brand,
    .cell-phone,
    .cell-trust,
    .cell-address,
    .cell-olive-fill,
    .cell-dark-empty {
        grid-column: auto;
        grid-row: auto;
    }

    .cell-image-a,
    .cell-image-b {
        min-height: 220px;
    }
}