/* ═══════════════════════════════════════════════════════════
   WALL COMMUNICATION — MAIN STYLESHEET
   Brand Identity: Heavy Metal Edition v2.0
   ═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
    --void:   #080808;
    --iron:   #111111;
    --steel:  #1C1C1C;
    --slag:   #2A2A2A;
    --rust:   #8B1A1A;
    --blood:  #CC1111;
    --fire:   #FF2200;
    --bone:   #D4C9B0;
    --ash:    #8A8A8A;
    --chrome: #C8C8C8;
    --white:  #F0EDE8;

    --font-display: 'Impact', 'Arial Black', 'Franklin Gothic Heavy', sans-serif;
    --font-title:   'Arial Black', 'Impact', sans-serif;
    --font-body:    'Inter', 'Arial Narrow', 'Arial', sans-serif;
    --font-mono:    'Courier New', 'Courier', monospace;

    --nav-height: 80px;
    --section-padding: 100px 60px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--void);
    color: var(--bone);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--blood);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--fire);
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ═══════════════════════════ NAVIGATION ═══════════════════════════ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slag);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    height: 64px;
    background: rgba(8, 8, 8, 0.97);
    border-bottom-color: var(--rust);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-svg {
    transform: scale(1.05);
}

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

.nav-link {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ash);
    padding: 8px 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--blood);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════ HERO SECTION ═══════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
    background: var(--void);
}

.hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 40px,
        rgba(204, 17, 17, 0.035) 40px,
        rgba(204, 17, 17, 0.035) 41px
    );
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0, 0, 0, 0.18) 3px,
        rgba(0, 0, 0, 0.18) 4px
    );
    pointer-events: none;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 7px;
    color: var(--blood);
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    animation: glitchIn 0.4s 0.2s both;
}

.hero-logo-block {
    position: relative;
    text-align: center;
    z-index: 1;
    animation: smashIn 0.5s 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

h1.hero-wall,
.hero-wall {
    display: block;
    margin: 0;
    padding: 0;
    font-family: var(--font-display);
    font-size: clamp(90px, 20vw, 220px);
    font-weight: 900;
    color: var(--white);
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: uppercase;
    text-shadow:
        4px 4px 0 var(--rust),
        8px 8px 0 rgba(139, 26, 26, 0.3),
        0 0 80px rgba(204, 17, 17, 0.12);
    animation: flicker 9s 2s infinite;
}

.hero-rule {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--rust), var(--fire), var(--blood), transparent);
    margin: 14px 0;
    position: relative;
}

.hero-rule::before {
    content: '\25B6';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--fire);
    font-size: 9px;
}

.hero-comm {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(18px, 4vw, 48px);
    font-weight: 900;
    color: var(--ash);
    letter-spacing: 16px;
    text-transform: uppercase;
}

h1.hero-tagline,
.hero-tagline {
    margin: 0;
    padding: 0;
    font-family: var(--font-display);
    font-size: clamp(14px, 2.5vw, 26px);
    letter-spacing: 4px;
    color: var(--blood);
    text-transform: uppercase;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    animation: glitchIn 0.4s 1.2s both;
}

.hero-sub {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--ash);
    margin-top: 10px;
    position: relative;
    z-index: 1;
    animation: glitchIn 0.4s 1.5s both;
}

.hero-cta {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    animation: glitchIn 0.4s 1.8s both;
}

.btn {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 16px 40px;
    border: 2px solid var(--blood);
    color: var(--white);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--blood);
    transform: translateX(-101%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: var(--white);
    border-color: var(--fire);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--blood);
    border-color: var(--blood);
}

.btn-primary::before {
    background: var(--fire);
}

/* ═══════════════════════════ SECTIONS ═══════════════════════════ */
.section {
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-full {
    padding: var(--section-padding);
}

.sec-hdr {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.sec-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--rust);
    line-height: 1;
    opacity: 0.35;
}

.sec-title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 7px;
    color: var(--chrome);
    text-transform: uppercase;
}

.sec-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--rust), transparent);
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--slag);
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 1px;
    background: var(--rust);
}

/* ═══════════════════════════ SERVICES GRID ═══════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3px;
    background: var(--rust);
}

.service-card {
    background: var(--iron);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blood), transparent);
    transition: width 0.4s ease;
}

.service-card:hover {
    background: var(--steel);
}

.service-card:hover::before {
    background: linear-gradient(90deg, var(--fire), var(--blood), transparent);
}

.service-icon {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--rust);
    margin-bottom: 20px;
    display: block;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    color: var(--blood);
    opacity: 1;
    transform: scale(1.1);
}

.service-title {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--bone);
}

.service-tag {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--ash);
    text-transform: uppercase;
    margin-top: 20px;
    display: block;
}

/* ═══════════════════════════ ABOUT / INTRO ═══════════════════════════ */
.intro-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-text h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 2px 0 var(--rust);
}

.intro-text h2 .accent {
    color: var(--blood);
}

.intro-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--bone);
    margin-bottom: 16px;
}

.intro-visual {
    position: relative;
}

.intro-visual::before {
    content: 'W';
    position: absolute;
    right: -20px;
    top: -30px;
    font-family: var(--font-display);
    font-size: 300px;
    color: rgba(204, 17, 17, 0.04);
    line-height: 1;
    pointer-events: none;
}

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

.stat-card {
    background: var(--iron);
    padding: 30px 24px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--white);
    text-shadow: 2px 2px 0 var(--rust);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--ash);
    text-transform: uppercase;
    margin-top: 8px;
}

/* ═══════════════════════════ SLOGANS / QUOTES ═══════════════════════════ */
.quote-banner {
    background: var(--void);
    border-top: 2px solid var(--rust);
    border-bottom: 2px solid var(--rust);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(204, 17, 17, 0.06) 0%, transparent 70%);
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 48px);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.quote-text .accent {
    color: var(--blood);
    text-shadow: 2px 2px 0 var(--rust);
}

/* ═══════════════════════════ TEAM ═══════════════════════════ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3px;
    background: var(--rust);
}

.team-card {
    background: var(--iron);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.team-card:hover {
    background: var(--steel);
}

.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--blood), transparent);
}

.team-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--rust);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    background: var(--steel);
    margin-bottom: 20px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
}

.team-role {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--blood);
    text-transform: uppercase;
    margin-top: 6px;
}

.team-bio {
    font-size: 13px;
    line-height: 1.7;
    color: var(--bone);
    margin-top: 14px;
}

/* ═══════════════════════════ REALISATIONS ═══════════════════════════ */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3px;
    background: var(--rust);
}

.realisation-card {
    background: var(--iron);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.realisation-card:hover {
    background: var(--steel);
}

.realisation-image {
    width: 100%;
    height: 220px;
    background: var(--steel);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.realisation-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--iron));
}

.realisation-placeholder {
    font-family: var(--font-display);
    font-size: 60px;
    color: var(--slag);
    opacity: 0.5;
}

.realisation-content {
    padding: 28px 32px;
}

.realisation-category {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--blood);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.realisation-title {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.realisation-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--bone);
}

/* ═══════════════════════════ CONTACT ═══════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 2px 0 var(--rust);
}

.contact-info h2 .accent {
    color: var(--blood);
}

.contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--bone);
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--slag);
}

.contact-detail-icon {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--blood);
    width: 36px;
    text-align: center;
}

.contact-detail-text {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--chrome);
}

/* Form */
.contact-form .form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--ash);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--iron);
    border: 1px solid var(--slag);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

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

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

.form-message {
    padding: 16px 20px;
    margin-bottom: 20px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
}

.form-message.success {
    background: rgba(139, 26, 26, 0.15);
    border: 1px solid var(--rust);
    color: var(--chrome);
}

.form-message.error {
    background: rgba(255, 34, 0, 0.1);
    border: 1px solid var(--fire);
    color: var(--fire);
}

/* ═══════════════════════════ 404 ═══════════════════════════ */
.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.error-code {
    font-family: var(--font-display);
    font-size: clamp(100px, 20vw, 200px);
    color: var(--rust);
    opacity: 0.3;
    line-height: 1;
}

h1.error-text,
.error-text {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 5px;
    color: var(--chrome);
    text-transform: uppercase;
    margin: 10px 0 0;
    padding: 0;
}

.error-nav {
    margin-top: 30px;
}

.error-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-nav a {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ash);
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid var(--slag);
    transition: all 0.3s ease;
}

.error-nav a:hover {
    color: var(--blood);
    border-color: var(--blood);
}

.error-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ash);
    margin-top: 16px;
    letter-spacing: 2px;
}

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
.site-footer {
    background: var(--void);
    border-top: 2px solid var(--rust);
    margin-top: 80px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 60px 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-quote {
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.7;
    color: var(--ash);
    max-width: 380px;
}

.footer-heading {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 4px;
    color: var(--rust);
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--ash);
    transition: color 0.3s ease;
}

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

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

.footer-contact-list li {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--ash);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--slag);
    padding: 20px 40px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--ash);
    text-transform: uppercase;
}

.footer-tagline {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--rust);
}

/* ═══════════════════════════ LEGAL PAGES ═══════════════════════════ */
.legal-content {
    max-width: 800px;
}

.legal-updated {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--ash);
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--slag);
}

.legal-block {
    margin-bottom: 40px;
}

.legal-heading {
    font-family: var(--font-display);
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--rust);
}

.legal-subheading {
    font-family: var(--font-title);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--chrome);
    margin: 16px 0 10px;
}

.legal-block p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--bone);
    margin-bottom: 12px;
}

.legal-block p strong {
    color: var(--white);
}

.legal-block code {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--blood);
    background: var(--iron);
    padding: 2px 8px;
}

.legal-list {
    list-style: none;
    margin: 12px 0;
}

.legal-list li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--bone);
    padding: 4px 0 4px 20px;
    position: relative;
}

.legal-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--rust);
}

.legal-list li strong {
    color: var(--white);
}

.legal-block a {
    color: var(--blood);
    border-bottom: 1px solid rgba(204, 17, 17, 0.3);
    transition: border-color 0.3s;
}

.legal-block a:hover {
    color: var(--fire);
    border-bottom-color: var(--fire);
}

/* ═══════════════════════════ GDPR COOKIE BANNER ═══════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--iron);
    border-top: 2px solid var(--rust);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text strong {
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.cookie-banner-text p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.7;
    color: var(--bone);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--blood);
    border-bottom: 1px solid rgba(204, 17, 17, 0.3);
}

.cookie-banner-text a:hover {
    color: var(--fire);
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: var(--blood);
    border-color: var(--blood);
    font-size: 9px;
    padding: 12px 24px;
}

.cookie-btn-accept:hover {
    background: var(--fire);
    border-color: var(--fire);
}

.cookie-btn-reject {
    border-color: var(--ash);
    color: var(--ash);
    font-size: 9px;
    padding: 12px 24px;
}

.cookie-btn-reject:hover {
    border-color: var(--chrome);
    color: var(--white);
}

/* ═══════════════════════════ FORM CHECKBOX (GDPR) ═══════════════════════════ */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--blood);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-text {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.6;
    color: var(--ash);
}

.checkbox-text a {
    color: var(--blood);
    border-bottom: 1px solid rgba(204, 17, 17, 0.3);
}

.checkbox-text a:hover {
    color: var(--fire);
}

/* ═══════════════════════════ FOOTER LEGAL LINKS ═══════════════════════════ */
.footer-legal-links {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-legal-links a {
    color: var(--ash);
    transition: color 0.3s;
}

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

.footer-sep {
    color: var(--slag);
    margin: 0 6px;
}

/* ═══════════════════════════ SCROLL ANIMATIONS ═══════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* ═══════════════════════════ ANIMATIONS ═══════════════════════════ */
@keyframes glitchIn {
    0%   { opacity: 0; transform: translateX(-6px) skewX(-3deg); }
    50%  { opacity: 0.8; transform: translateX(2px) skewX(1deg); }
    100% { opacity: 1; transform: none; }
}

@keyframes smashIn {
    0%   { opacity: 0; transform: scale(1.1) translateY(-12px); }
    65%  { transform: scale(0.97) translateY(3px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes flicker {
    0%, 95%, 100% { opacity: 1; }
    96%  { opacity: 0.4; }
    97%  { opacity: 1; }
    98%  { opacity: 0.7; }
    99%  { opacity: 1; }
}

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px 40px;
    }

    .intro-block,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 900px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 8, 8, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 14px;
        letter-spacing: 5px;
    }

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

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

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

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .sec-hdr {
        flex-wrap: wrap;
    }

    .sec-rule {
        width: 100%;
        order: 3;
    }
}

@media (max-width: 480px) {
    .hero-comm {
        letter-spacing: 8px;
    }

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

/* ═══════════════════════════════════════════════════════
   SOCIAL MEDIA
   ═══════════════════════════════════════════════════════ */

/* ── Footer Social Links ── */
.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--slag);
    margin-top: 10px;
}

.footer-social-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--ash);
    text-transform: uppercase;
    white-space: nowrap;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--slag);
    background: var(--iron);
    color: var(--ash);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--white);
    border-color: var(--blood);
    background: var(--steel);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 17, 17, 0.2);
}

/* ── Share Bar ── */
.share-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 60px;
    border-top: 1px solid var(--slag);
}

.share-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--ash);
    text-transform: uppercase;
    white-space: nowrap;
}

.share-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ash);
    background: var(--iron);
    border: 1px solid var(--slag);
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    color: var(--white);
    border-color: var(--blood);
    background: var(--steel);
    transform: translateY(-1px);
}

.share-btn-x:hover { color: var(--white); }
.share-btn-linkedin:hover { color: #0A66C2; border-color: #0A66C2; }
.share-btn-facebook:hover { color: #1877F2; border-color: #1877F2; }
.share-btn-whatsapp:hover { color: #25D366; border-color: #25D366; }
.share-btn-email:hover { color: var(--blood); border-color: var(--blood); }

/* ── Responsive: Social ── */
@media (max-width: 768px) {
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .share-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 24px;
    }

    .share-btn span {
        display: none;
    }

    .share-btn {
        padding: 10px;
    }
}

/* ═══════════════════════════════════════════════════════
   MURSSAGE — MINI-GAME
   ═══════════════════════════════════════════════════════ */

.game-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* ── Start Screen ── */
.game-screen { text-align: center; }

.game-start-icon {
    margin-bottom: 24px;
    opacity: 0.8;
}

.game-start-title {
    font-family: var(--font-display);
    font-size: clamp(18px, 4vw, 28px);
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.game-start-rules {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--ash);
    line-height: 2;
    margin-bottom: 32px;
}

.game-start-rules p:first-child {
    color: var(--blood);
    margin-bottom: 8px;
    letter-spacing: 3px;
}

.game-start-timer {
    color: var(--bone);
    margin-top: 8px;
}

.game-btn-start {
    font-size: 14px;
    letter-spacing: 4px;
    padding: 16px 40px;
    cursor: pointer;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(204, 17, 17, 0.3); }
    50% { box-shadow: 0 0 20px 4px rgba(204, 17, 17, 0.3); }
}

/* ── HUD ── */
.game-hud {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--iron);
    border: 1px solid var(--slag);
    margin-bottom: 20px;
}

.game-hud-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-hud-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--ash);
    text-transform: uppercase;
}

.game-hud-value {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    min-width: 40px;
    transition: color 0.2s;
}

.game-damage-bar {
    width: 100px;
    height: 12px;
    background: var(--steel);
    border: 1px solid var(--slag);
    overflow: hidden;
}

.game-damage-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rust), var(--blood));
    transition: width 0.1s ease-out;
}

/* ── Arena ── */
.game-arena {
    position: relative;
    height: 300px;
    background: var(--iron);
    border: 1px solid var(--slag);
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.game-arena.screen-shake {
    animation: screen-shake 0.15s ease;
}

@keyframes screen-shake {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-4px, 2px); }
    50% { transform: translate(3px, -3px); }
    75% { transform: translate(-2px, 1px); }
}

/* ── Wall ── */
.game-wall {
    position: absolute;
    right: 60px;
    bottom: 0;
    width: 100px;
    height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.05s;
}

.game-wall.shake {
    animation: wall-shake 0.1s ease;
}

@keyframes wall-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(3px); }
    75% { transform: translateX(-3px); }
}

.game-wall-bricks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    width: 100%;
    height: 100%;
    position: relative;
}

.game-brick {
    background: var(--ash);
    border: 1px solid #555;
    transition: all 0.4s ease;
}

.game-brick:nth-child(odd) {
    background: #5a5a5a;
}

.game-brick.cracked {
    background: #4a4a4a;
    border-color: #333;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}

.game-brick.broken {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-wall-crack {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(204, 17, 17, 0.1) 30%,
        rgba(204, 17, 17, 0.2) 60%,
        rgba(204, 17, 17, 0.3) 100%
    );
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.game-wall.broken {
    animation: wall-explode 0.5s ease forwards;
}

@keyframes wall-explode {
    0% { filter: brightness(1); }
    20% { filter: brightness(3); }
    100% { filter: brightness(0.5); opacity: 0.3; }
}

/* ── Character ── */
.game-character {
    position: absolute;
    left: 80px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.05s;
}

.game-character.bash {
    animation: bash 0.12s ease;
}

@keyframes bash {
    0% { transform: translateX(0); }
    40% { transform: translateX(60px); }
    60% { transform: translateX(55px); }
    100% { transform: translateX(0); }
}

.game-character.victory {
    animation: victory-run 0.8s ease forwards;
}

@keyframes victory-run {
    0% { transform: translateX(0); }
    100% { transform: translateX(200px); }
}

.game-head {
    width: 40px;
    height: 40px;
    background: var(--bone);
    border-radius: 50%;
    position: relative;
    border: 2px solid var(--rust);
}

.game-face {
    position: relative;
    width: 100%;
    height: 100%;
}

.game-eye {
    position: absolute;
    width: 5px;
    height: 5px;
    background: var(--void);
    border-radius: 50%;
    top: 14px;
}

.game-eye.left { left: 10px; }
.game-eye.right { right: 10px; }

.game-mouth {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 6px;
    border-bottom: 2px solid var(--void);
    border-radius: 0 0 8px 8px;
}

.game-body {
    width: 6px;
    height: 60px;
    background: var(--bone);
    margin-top: 2px;
    position: relative;
}

.game-body::before,
.game-body::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 35px;
    background: var(--bone);
    border-radius: 3px;
}

.game-body::before {
    top: 5px;
    left: -12px;
    transform: rotate(-30deg);
}

.game-body::after {
    top: 5px;
    right: -12px;
    transform: rotate(30deg);
}

/* ── Impact Flash ── */
.game-impact {
    position: absolute;
    right: 140px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--fire);
    opacity: 0;
    pointer-events: none;
}

.game-impact.flash {
    animation: impact-flash 0.15s ease;
}

@keyframes impact-flash {
    0% { opacity: 0.9; transform: translateY(-50%) scale(0.5); }
    50% { opacity: 0.6; transform: translateY(-50%) scale(1.5); }
    100% { opacity: 0; transform: translateY(-50%) scale(2); }
}

/* ── Combo ── */
.game-combo {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--fire);
    text-shadow: 0 0 10px rgba(255, 34, 0, 0.5);
    animation: combo-pop 0.5s ease forwards;
    pointer-events: none;
    z-index: 10;
}

@keyframes combo-pop {
    0% { opacity: 1; transform: translateX(-50%) translateY(0) scale(0.8); }
    50% { transform: translateX(-50%) translateY(-20px) scale(1.2); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-40px) scale(0.9); }
}

/* ── Click Zone ── */
.game-click-zone {
    background: var(--steel);
    border: 2px dashed var(--slag);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    transition: all 0.1s;
}

.game-click-zone:hover {
    border-color: var(--blood);
    background: var(--iron);
}

.game-click-zone:active {
    background: var(--rust);
    border-color: var(--fire);
    transform: scale(0.98);
}

.game-click-zone span {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--ash);
    text-transform: uppercase;
    pointer-events: none;
}

/* ── End Screen ── */
.game-end-title {
    font-family: var(--font-display);
    font-size: clamp(20px, 5vw, 36px);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.game-end-title.victory { color: var(--fire); }
.game-end-title.failure { color: var(--ash); }

.game-end-sub {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--ash);
    margin-bottom: 32px;
}

.game-end-stats {
    background: var(--iron);
    border: 1px solid var(--slag);
    padding: 16px 20px;
    margin-bottom: 32px;
    text-align: left;
}

.game-stat-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--steel);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 1px;
}

.game-stat-row:last-child { border-bottom: none; }

.game-stat-row span:first-child { color: var(--ash); text-transform: uppercase; }
.game-stat-row span:last-child { color: var(--bone); }

/* ── Scoreboard ── */
.game-scoreboard {
    margin-bottom: 32px;
}

.game-score-title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--blood);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.game-score-list {
    background: var(--iron);
    border: 1px solid var(--slag);
}

.game-score-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--steel);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
}

.game-score-row:last-child { border-bottom: none; }

.game-score-row.highlight {
    background: rgba(204, 17, 17, 0.1);
    border-left: 3px solid var(--blood);
}

.game-score-rank {
    color: var(--ash);
    min-width: 24px;
}

.game-score-name {
    color: var(--bone);
    font-weight: 600;
    min-width: 80px;
}

.game-score-detail {
    color: var(--ash);
    flex: 1;
    text-align: right;
}

.game-score-empty {
    padding: 20px;
    color: var(--ash);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-align: center;
}

.game-end-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Responsive: Game ── */
@media (max-width: 600px) {
    .game-arena {
        height: 220px;
    }

    .game-wall {
        right: 30px;
        width: 70px;
        height: 190px;
    }

    .game-character {
        left: 40px;
    }

    .game-head {
        width: 30px;
        height: 30px;
    }

    .game-body {
        height: 45px;
    }

    .game-hud {
        flex-wrap: wrap;
        gap: 8px;
    }

    .game-damage-bar {
        width: 70px;
    }

    @keyframes bash {
        0% { transform: translateX(0); }
        40% { transform: translateX(35px); }
        60% { transform: translateX(30px); }
        100% { transform: translateX(0); }
    }
}

/* ═══════ ACCESSIBILITY — Focus & Skip Link ═══════ */

.skip-to-main {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10001;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--blood);
    padding: 12px 24px;
    text-decoration: none;
}

.skip-to-main:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    outline: 2px solid var(--fire);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.share-btn:focus-visible,
.social-icon:focus-visible {
    outline: 2px solid var(--blood);
    outline-offset: 2px;
}

.form-input:focus-visible,
.form-textarea:focus-visible,
select.form-input:focus-visible {
    outline: 2px solid var(--blood);
    outline-offset: 2px;
}

/* ═══════ REUSABLE TEMPLATE CLASSES ═══════ */

/* Subpage hero (50vh, smaller text) */
.hero-subpage {
    min-height: 50vh;
}

.hero-subpage .hero-wall {
    font-size: clamp(40px, 10vw, 100px);
}

.hero-subpage .hero-comm {
    font-size: clamp(14px, 2.5vw, 28px);
}

/* Legal page hero (40vh, compact text) */
.hero-legal {
    min-height: 40vh;
}

.hero-legal .hero-wall {
    font-size: clamp(24px, 6vw, 70px);
}

.hero-legal .hero-comm {
    font-size: clamp(12px, 2vw, 22px);
}

/* CTA section pattern */
.cta-section {
    text-align: center;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 40px);
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 var(--rust);
}

.cta-subtitle {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--ash);
    margin-bottom: 40px;
}

/* Content intro block */
.content-intro {
    max-width: 700px;
    margin-bottom: 50px;
}

.content-intro p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--bone);
}

/* Footer legal heading spacing */
.footer-heading-legal {
    margin-top: 24px;
}

/* Service detail text */
.service-detail {
    margin-top: 12px;
    color: var(--ash);
    font-size: 13px;
}
