/* ═══════════════════════════════════════════════════════
   RAMI PRINTING · Premium Theme v2.0
   ═══════════════════════════════════════════════════════ */

/* ── Tokens — RED MEDIA palette ── */
:root {
    --c-black:   #0a0a0a;
    --c-dark:    #111111;
    --c-dark-2:  #1a1a1a;
    --c-dark-3:  #222222;
    --c-accent:  #cc101d;
    --c-accent2: #e8192a;
    --c-white:   #ffffff;
    --c-off:     #f5f5f5;
    --c-muted:   rgba(255,255,255,0.45);
    --c-border:  rgba(255,255,255,0.07);
    --c-border-l:rgba(0,0,0,0.07);

    --font-head: 'Barlow Condensed', 'Barlow', sans-serif;
    --font-body: 'Barlow', 'Inter', sans-serif;

    --ease:      cubic-bezier(0.25,0.46,0.45,0.94);
    --ease-out:  cubic-bezier(0.16,1,0.3,1);
    --ease-in:   cubic-bezier(0.7,0,0.84,0);

    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 40px;

    --shadow-sm: 0 2px 16px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.18);
    --shadow-xl: 0 40px 100px rgba(0,0,0,0.25);

    --header-h: 80px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--c-off);
    color: var(--c-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* ── Utility ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.section      { padding: 120px 0; background: var(--c-off); }
.section-dark { padding: 120px 0; background: var(--c-dark); color: var(--c-white); }

/* ════════════════════════════════════════════
   CURSOR
════════════════════════════════════════════ */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; }
.cursor-dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--c-accent);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: transform 0.1s, width 0.3s, height 0.3s;
}
.cursor-ring {
    position: absolute;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(204,16,29,0.5);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: transform 0.08s, width 0.4s var(--ease-out), height 0.4s var(--ease-out), opacity 0.3s;
}
body.cursor-hover .cursor-dot  { width: 12px; height: 12px; }
body.cursor-hover .cursor-ring { width: 60px; height: 60px; opacity: 0.7; }
body.cursor-button .cursor-dot  { width: 8px; height: 8px; background: #fff; }
body.cursor-button .cursor-ring { width: 50px; height: 50px; border-color: var(--c-accent); background: rgba(204,16,29,0.08); }

/* ════════════════════════════════════════════
   SCROLL PROGRESS
════════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 0%;
    background: var(--c-accent);
    z-index: 10000;
    transition: width 0.05s linear;
}

/* ════════════════════════════════════════════
   LOADER
════════════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--c-black);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-in), visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 0.01em;
    color: var(--c-white);
    margin-bottom: 32px;
}
.loader-rami { color: var(--c-white); }
.loader-printing { color: var(--c-accent); }
.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto 16px;
    overflow: hidden;
}
.loader-fill {
    height: 100%;
    background: var(--c-accent);
    width: 0%;
    transition: width 0.3s var(--ease);
}
.loader-pct {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background 0.5s var(--ease), box-shadow 0.5s;
}
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    transition: background 0.5s, backdrop-filter 0.5s;
}
.site-header.scrolled::before {
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--c-border);
}

.header-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 48px;
}

.logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.01em;
    color: var(--c-white);
    position: relative;
    z-index: 1;
}
.logo-printing { color: var(--c-accent); }

.primary-nav ul { display: flex; align-items: center; gap: 36px; }
.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
    overflow: hidden;
}
.nav-link span {
    position: relative;
    display: block;
    transition: transform 0.35s var(--ease-out);
}
.nav-link span::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--c-white);
}
.nav-link:hover span { transform: translateY(-100%); }
.nav-link:hover { color: var(--c-white); }

.nav-cta {
    background: var(--c-accent);
    color: var(--c-white) !important;
    padding: 10px 22px;
    border-radius: var(--r-xl);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
    background: var(--c-accent2);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(204,16,29,0.35);
}
.nav-cta span::before { display: none; }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: none;
    width: 32px; height: 32px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}
.ham-lines { display: flex; flex-direction: column; gap: 6px; }
.hamburger span {
    display: block;
    height: 1.5px;
    background: var(--c-white);
    transition: var(--transition);
    transform-origin: right center;
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger.active span:nth-child(1) { transform: rotate(-45deg) translate(0px, 4px); width: 24px; }
.hamburger.active span:nth-child(2) { transform: rotate(45deg) translate(0px, -4px); width: 24px; }

.nav-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}
.nav-close:hover { background: rgba(255,255,255,0.12); transform: rotate(90deg); }
@media (max-width: 900px) { .nav-close { display: flex; } }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 80px 80px;
    overflow: hidden;
    background: var(--c-black);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
    filter: brightness(0.65);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(10,10,10,0.60) 0%, rgba(10,10,10,0.25) 50%, rgba(10,10,10,0.88) 100%),
        linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 55%);
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
}
.eyebrow-line {
    display: block;
    width: 32px; height: 1px;
    background: var(--c-accent);
}
.eyebrow-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--c-white);
    margin-bottom: 64px;
    overflow: hidden;
}
.hero-title-line {
    display: block;
    overflow: hidden;
}
.hero-title-line--accent { color: var(--c-accent); }

/* Each .char inside title animates via GSAP */
.char { display: inline-block; }

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--c-accent);
    color: var(--c-white);
    padding: 16px 32px;
    border-radius: var(--r-xl);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.3s;
}
.btn-hero:hover { background: var(--c-accent2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(204,16,29,0.4); }
.btn-hero-icon { display: flex; }
.btn-hero-icon svg { width: 18px; height: 18px; }

.btn-hero-ghost {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    transition: color 0.2s, border-color 0.2s;
}
.btn-hero-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

.hero-scroll-cue {
    position: absolute;
    bottom: 80px; right: 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s 1.8s var(--ease-out) forwards;
}
.hero-scroll-cue span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    writing-mode: vertical-rl;
}
.scroll-cue-wheel {
    width: 22px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-cue-dot {
    width: 4px; height: 4px;
    background: var(--c-accent);
    border-radius: 50%;
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    80%       { transform: translateY(12px); opacity: 0; }
}

.hero-meta {
    position: absolute;
    top: 50%; right: 80px;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    animation: fadeInRight 0.8s 1.6s var(--ease-out) forwards;
}
.hero-meta-item { text-align: right; }
.hm-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2px;
}
.hm-value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
}
.hero-meta-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.12);
    align-self: flex-end;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translate(20px, -50%); }
    to   { opacity: 1; transform: translate(0, -50%); }
}

/* ════════════════════════════════════════════
   INTRO
════════════════════════════════════════════ */
.intro { background: var(--c-off); padding: 120px 0; }
.intro-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 48px;
    align-items: start;
}
.intro-left { padding-top: 8px; }
.intro-statement {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 2.6vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--c-dark);
    margin-bottom: 40px;
}
.intro-statement--first { margin-bottom: 6px; }
.intro-statement em {
    font-style: normal;
    color: var(--c-accent);
}
.word { display: inline-block; overflow: hidden; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-dark);
    transition: gap 0.3s var(--ease-out), color 0.2s;
}
.link-arrow svg { width: 40px; height: 12px; }
.link-arrow:hover { gap: 20px; color: var(--c-accent); }

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 16px;
}
.tag::before {
    content: '';
    display: block;
    width: 20px; height: 1px;
    background: var(--c-accent);
}
.tag--light { color: var(--c-accent2); }
.tag--light::before { background: var(--c-accent2); }
/* ════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════ */
.marquee-section {
    background: var(--c-dark-2);
    overflow: hidden;
    padding: 20px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.marquee-track {
    display: flex;
    gap: 0;
}
.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    flex-shrink: 0;
    animation: marqueeScroll 28s linear infinite;
    white-space: nowrap;
}
.marquee-content span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}
.marquee-content span:not(.marquee-sep):hover { color: var(--c-accent); }
.marquee-sep { color: var(--c-accent) !important; font-size: 10px !important; }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-item {
    position: sticky;
    top: 220px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    padding: 48px 56px;
    cursor: none;
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.5);
    transform-origin: top center;
    overflow: hidden;
}
.service-item:nth-child(1) { z-index: 1; }
.service-item:nth-child(2) { z-index: 2; }
.service-item:nth-child(3) { z-index: 3; }
.service-item:nth-child(4) { z-index: 4; }
.service-item:nth-child(5) { z-index: 5; }
.service-item::before { display: none; }


.si-left {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}
.si-num {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.06em;
    padding-top: 6px;
    flex-shrink: 0;
    transition: color 0.3s;
}
.service-item:hover .si-num { color: var(--c-accent); }

.si-title {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.service-item:hover .si-title { color: var(--c-accent2); }

.si-desc {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 24px;
}
.si-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s, gap 0.3s;
}
.si-link svg { width: 16px; height: 16px; }
.service-item:hover .si-link { opacity: 1; transform: translateX(0); }
.si-link:hover { gap: 14px; }

.si-visual { flex-shrink: 0; width: 160px; height: 160px; align-self: center; }
.si-img-wrap { width: 100%; height: 100%; }
.si-img-placeholder {
    width: 100%; height: 100%;
    border-radius: var(--r-md);
    overflow: hidden;
    position: relative;
    transition: transform 0.6s var(--ease-out);
}
.service-item:hover .si-img-placeholder { transform: scale(1.03); }
.si-img-1 { background: linear-gradient(135deg, #161616, #1f1f1f); }
.si-img-2 { background: linear-gradient(135deg, #161616, #1f1f1f); }
.si-img-3 { background: linear-gradient(135deg, #141414, #1e1e1e); }
.si-img-4 { background: linear-gradient(135deg, #141414, #1e1e1e); }
.si-img-5 { background: linear-gradient(135deg, #181818, #222222); }

.si-img-inner {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.si-img-inner svg { width: 100%; height: 100%; }

/* section heading shared */
.section-heading {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.section-heading em { color: var(--c-accent); font-style: normal; }

.section-header-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 72px;
}
.section-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--c-muted);
    max-width: 360px;
    flex-shrink: 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

/* ════════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
.stats { background: var(--c-off); padding: 100px 0; }
.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}
.stat-item {
    text-align: center;
    flex: 1;
    padding: 40px 24px;
}
.stat-num {
    display: block;
    font-family: var(--font-head);
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--c-dark);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.04em;
}
.stat-divider {
    width: 1px;
    height: 80px;
    background: var(--c-border-l);
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about { padding: 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    align-items: stretch;
}

.about-media {
    position: relative;
    overflow: hidden;
    background-color: var(--c-dark-3);
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    filter: brightness(0.95) saturate(0.9);
}

.about-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,10,10,0.45) 0%,
        rgba(10,10,10,0.15) 50%,
        rgba(10,10,10,0.55) 100%
    );
    z-index: 1;
}

.about-media-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.about-img-bg {
    position: absolute;
    inset: -20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-placeholder {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ap-logo {
    font-family: var(--font-head);
    font-size: 7rem;
    font-weight: 700;
    color: rgba(204,16,29,0.15);
    letter-spacing: -0.05em;
    z-index: 1;
}
.ap-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: ringPulse 3s ease-in-out infinite;
}
.ap-ring-1 { width: 160px; height: 160px; border-color: rgba(204,16,29,0.15); animation-delay: 0s; }
.ap-ring-2 { width: 280px; height: 280px; border-color: rgba(204,16,29,0.08); animation-delay: 0.6s; }
.ap-ring-3 { width: 400px; height: 400px; border-color: rgba(204,16,29,0.04); animation-delay: 1.2s; }
@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

.about-logo-card {
    position: relative;
    margin-top: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--r-md);
    padding: 48px 64px;
    z-index: 2;
}
.about-logo-card a { display: flex; align-items: center; justify-content: center; }
.about-logo-card img { max-width: 280px; max-height: 120px; object-fit: contain; filter: brightness(0) invert(1); }
.about-logo-text {
    font-family: var(--font-head);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--c-white);
    letter-spacing: 0.02em;
}
.about-logo-text span { color: var(--c-accent); }

.about-float {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--c-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--r-md);
    padding: 16px 24px;
    z-index: 2;
}
.about-float strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 2px;
}
.about-float span {
    font-size: 11px;
    color: var(--c-muted);
    font-weight: 500;
}
.about-float-1 { bottom: 15%; right: 10%; }
.about-float-2 { top: 15%; left: 10%; }

.about-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--c-dark);
    color: var(--c-white);
}
.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0 48px;
}
.af-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}
.af-dot {
    width: 6px; height: 6px;
    background: var(--c-accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Primary CTA button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--c-accent);
    color: var(--c-white);
    padding: 16px 36px;
    border-radius: var(--r-xl);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    align-self: flex-start;
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-primary:hover { background: var(--c-accent2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(204,16,29,0.4); }

.btn-lg { padding: 18px 44px; font-size: 15px; }

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--c-white);
    padding: 16px 36px;
    border-radius: var(--r-xl);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1.5px solid rgba(255,255,255,0.25);
    cursor: none;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.btn-ghost-white:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
.process { background: var(--c-off); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--c-border-l);
}
.process-item {
    padding: 60px 48px;
    border-right: 1px solid var(--c-border-l);
    position: relative;
    overflow: hidden;
}
.process-item:last-child { border-right: none; }
.process-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204,16,29,0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.process-item:hover::after { opacity: 1; }

.pi-num {
    font-family: var(--font-head);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s;
}
.process-item:hover .pi-num { color: rgba(204,16,29,0.08); }

.pi-line {
    width: 32px; height: 2px;
    background: var(--c-accent);
    margin-bottom: 32px;
    transition: width 0.4s var(--ease-out);
}
.process-item:hover .pi-line { width: 64px; }

.pi-content h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.pi-content p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: #777;
}

/* ════════════════════════════════════════════
   CTA FULL
════════════════════════════════════════════ */
.cta-full {
    position: relative;
    padding: 140px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--c-black);
    min-height: 60vh;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-video {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    filter: brightness(0.6) saturate(1.2) hue-rotate(320deg);
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.7) 100%);
}
.cta-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px;
}
.cta-content { position: relative; z-index: 1; }
.cta-heading {
    font-family: var(--font-head);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    color: var(--c-white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.0;
    margin-bottom: 24px;
}
.cta-sub {
    font-size: 1.05rem;
    color: var(--c-muted);
    margin-bottom: 48px;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact { background: var(--c-off); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.contact-info-list { display: flex; flex-direction: column; gap: 12px; margin-top: 40px; }
.cil-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--c-border-l);
    border-radius: var(--r-md);
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    color: var(--c-dark);
}
.cil-item:hover { border-color: rgba(204,16,29,0.25); transform: translateX(6px); box-shadow: var(--shadow-sm); }
.cil-icon {
    width: 44px; height: 44px;
    background: rgba(204,16,29,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-accent);
    flex-shrink: 0;
}
.cil-icon svg { width: 18px; height: 18px; }
.cil-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2px;
}
.cil-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-dark);
}

/* Form — floating labels */
.contact-right { position: sticky; top: 120px; }
.contact-form {
    background: #fff;
    border: 1px solid var(--c-border-l);
    border-radius: var(--r-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

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

.field {
    position: relative;
    margin-bottom: 20px;
}
.form-row-2 .field { margin-bottom: 0; }

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 22px 16px 8px;
    background: var(--c-off);
    border: 1.5px solid #e8e8ee;
    border-radius: var(--r-sm);
    font-size: 14px;
    color: var(--c-dark);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { cursor: none; }

.field label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #aaa;
    pointer-events: none;
    transition: top 0.2s, font-size 0.2s, color 0.2s, transform 0.2s;
    font-weight: 400;
}
.field--textarea label { top: 22px; transform: none; }
.field--select label { top: 50%; transform: translateY(-50%); }

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--c-accent);
    background: #fff;
}
.field input:not(:placeholder-shown) + label,
.field input:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field select:not([value=""]) + label,
.field select:focus + label {
    top: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-accent);
    transform: none;
}
.field--textarea input:focus + label,
.field--textarea textarea:focus + label,
.field--textarea textarea:not(:placeholder-shown) + label { top: 8px; }

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #aaa;
}
.select-arrow svg { width: 16px; height: 16px; }

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--c-dark);
    color: var(--c-white);
    padding: 18px 24px;
    border-radius: var(--r-sm);
    border: none;
    cursor: none;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s, transform 0.25s;
    margin-top: 8px;
}
.btn-submit:hover { background: var(--c-accent); transform: translateY(-1px); }
.btn-submit-icon { display: flex; }
.btn-submit-icon svg { width: 20px; height: 20px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
/* Page content sits above the sticky footer */
.site-footer {
    background: #080808;
    color: var(--c-white);
    position: relative;
}

/* ── CTA Band ── */
.footer-cta-band {
    position: relative;
    overflow: hidden;
    padding: 120px 0 110px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-cta-bg-text {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-head);
    font-size: clamp(9rem, 19vw, 21rem);
    font-weight: 800;
    color: rgba(255,255,255,0.025);
    letter-spacing: -0.04em;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
}

.footer-cta-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.footer-cta-heading {
    font-family: var(--font-head);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 0;
    color: var(--c-white);
}
.footer-cta-heading em { color: var(--c-accent); font-style: normal; }

.footer-cta-right {
    flex-shrink: 0;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 10px;
}
.footer-cta-sub {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.4);
}
.footer-cta-btn svg { width: 18px; height: 18px; }

/* ── Footer Grid ── */
.footer-main {
    padding: 64px 0 56px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo { margin-bottom: 20px; display: inline-flex; }
.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.35);
    max-width: 240px;
    margin-bottom: 28px;
}

.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.social-links a:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: #fff;
    transform: translateY(-2px);
}
.social-links svg { width: 15px; height: 15px; }

.footer-col h4 {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.footer-col a:hover { color: var(--c-white); padding-left: 4px; }

.contact-list li {
    color: rgba(255,255,255,0.38);
    font-size: 0.875rem;
    margin-bottom: 12px;
}
.contact-list a {
    color: rgba(255,255,255,0.38);
    transition: color 0.2s;
    padding-left: 0 !important;
}
.contact-list a:hover { color: var(--c-accent); }

/* ── Bottom Bar ── */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.18); }
/* ════════════════════════════════════════════
   GSAP ANIMATION BASE STATES
════════════════════════════════════════════ */
.gsap-fade-up {
    opacity: 0;
    transform: translateY(50px);
}
.gsap-fade-in { opacity: 0; }
.gsap-slide-left  { opacity: 0; transform: translateX(-60px); }
.gsap-slide-right { opacity: 0; transform: translateX(60px); }

/* SplitText chars initial */
.split-char { display: inline-block; overflow: hidden; }
.split-char-inner { display: inline-block; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; min-height: auto; }
    .about-media { height: 60vw; min-height: 400px; }
    .about-content { padding: 80px 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero { padding: 0 48px 72px; }
    .hero-meta { right: 48px; }
    .hero-scroll-cue { right: 48px; bottom: 72px; }
    .contact-grid { gap: 60px; }
}

@media (max-width: 900px) {
    :root { --header-h: 68px; }

    /* Hide desktop cursor + prevent horizontal overflow */
    .cursor { display: none !important; }
    body { overflow-x: hidden; }

    .container { padding: 0 24px; }
    .section, .section-dark { padding: 88px 0; }
    .header-inner { padding: 0 24px; }

    .primary-nav {
        position: fixed;
        inset: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
        z-index: 999;
    }
    .primary-nav.open { transform: translateX(0); }
    .primary-nav ul { flex-direction: column; gap: 0; text-align: center; }
    .primary-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.05); width: 240px; }
    .nav-link { font-size: 1.4rem; font-weight: 700; padding: 20px 0; display: block; width: 100%; }
    .nav-cta { margin-top: 24px; border-radius: var(--r-xl); padding: 14px 32px; font-size: 1rem; }
    .hamburger { display: flex; }

    .hero { padding: 0 24px 60px; }
    .hero-title { font-size: clamp(3rem, 10vw, 5rem); }
    .hero-bottom { flex-direction: column; align-items: flex-start; gap: 32px; }
    .hero-meta { display: none; }
    .hero-scroll-cue { right: 24px; bottom: 60px; }

    .intro-grid { grid-template-columns: 1fr; gap: 32px; }

    /* Services — keep sticky stack, reduce top offset for mobile */
    .services-list { padding: 0; gap: 12px; }
    .service-item {
        top: 80px;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 28px;
    }
    .si-left { gap: 20px; }
    .si-visual { width: 100%; height: 160px; align-self: auto; }
    .si-img-placeholder { border-radius: 12px; }

    .section-header-split { flex-direction: column; gap: 20px; align-items: flex-start; }

    /* About — logo card centered on smaller media panel */
    .about-logo-card {
        margin-top: 0;
        padding: 32px 40px;
        width: calc(100% - 48px);
        max-width: 320px;
    }
    .about-logo-card img { max-width: 200px; max-height: 80px; }
    .about-logo-text { font-size: 2rem; }
    .about-float { display: none; }

    /* Process — sticky card stack on mobile */
    .process-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        gap: 12px;
        border-top: none;
    }
    .process-item {
        position: sticky;
        top: 80px;
        border-right: none;
        border-bottom: none;
        border-radius: 16px;
        background: #ffffff;
        box-shadow: 0 4px 32px rgba(0,0,0,0.1);
        padding: 36px 28px;
        transform-origin: top center;
    }
    .process-item:nth-child(1) { z-index: 1; }
    .process-item:nth-child(2) { z-index: 2; }
    .process-item:nth-child(3) { z-index: 3; }

    .stats-grid { flex-wrap: wrap; gap: 0; }
    .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--c-border-l); }
    .stat-divider { display: none; }

    .cta-full { padding: 100px 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-right { position: static; }
    .contact-form { padding: 32px 24px; }
    .form-row-2 { grid-template-columns: 1fr; }

    /* Footer CTA band — stack on mobile */
    .footer-cta-band { padding: 80px 0 72px; }
    .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 36px; }
    .footer-cta-right { max-width: 100%; }
    .footer-cta-bg-text { font-size: 38vw; right: -4%; opacity: 0.6; }
}

@media (max-width: 640px) {
    .hero-title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .section-heading { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .service-item { padding: 28px 20px; gap: 24px; }
    .si-title { font-size: 1.3rem; }
    .about-content { padding: 60px 24px; }
    .about-media { height: 80vw; min-height: 360px; }
    .about-logo-card { padding: 24px 28px; }

    /* CTA section — center + stretch buttons */
    .cta-full { padding: 80px 24px; }
    .cta-heading { font-size: clamp(2.5rem, 10vw, 4rem); }
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .cta-btns .btn-primary,
    .cta-btns .btn-ghost-white {
        justify-content: center;
        width: 100%;
        text-align: center;
    }

    /* Contact — full width items, no hover shift */
    .cil-item { transform: none !important; }
    .contact-grid { gap: 40px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; }
    .footer-cta-heading { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .footer-cta-band { padding: 64px 0 56px; }
}

/* ════════════════════════════════════════════
   HERO — gradient background (no video)
════════════════════════════════════════════ */
.hero-media {
    background: linear-gradient(160deg, #0a0a0a 0%, #111111 40%, #0a0a0a 100%);
}
.hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 75% 40%, rgba(204,16,29,0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(204,16,29,0.04) 0%, transparent 60%);
    animation: heroBgPulse 8s ease-in-out infinite;
}
@keyframes heroBgPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}
