/* =============================================================================
   1. CUSTOM PROPERTIES
   ============================================================================= */

:root {
    --bg-deep:       #0F1115;
    --bg-surface:    #161A22;
    --bg-card:       rgba(255, 255, 255, 0.04);

    --grad-start:    #C9584A;
    --grad-end:      #8B3A62;
    --grad:          linear-gradient(135deg, var(--grad-start), var(--grad-end));

    --text-primary:  rgba(255, 255, 255, 0.92);
    --text-muted:    rgba(255, 255, 255, 0.50);
    --text-faint:    rgba(255, 255, 255, 0.28);

    --glass-bg:      rgba(255, 255, 255, 0.04);
    --glass-border:  rgba(255, 255, 255, 0.08);
    --glass-blur:    blur(20px);

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;

    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.2s ease;
}

/* =============================================================================
   2. RESET + BASE
   ============================================================================= */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* =============================================================================
   3. TYPOGRAPHY
   ============================================================================= */

.t-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;     /* 11px */
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.t-display {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

/* Word-split animation wrapper — set by JS */
.word-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

/* =============================================================================
   4. COMPONENTS
   ============================================================================= */

/* Glass card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
}

/* Gradient border utility — uses background-clip trick */
.grad-border {
    position: relative;
    border-radius: var(--radius-md);
}
.grad-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--grad);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Primary gradient button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--grad);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 100px;
    transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
}
.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(255, 90, 95, 0.28);
}

/* Ghost/glass button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 27px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 100px;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    white-space: nowrap;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

/* Gradient text link */
.link-grad {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity var(--transition-fast);
}
.link-grad:hover { opacity: 0.75; }
.link-grad .arrow {
    display: inline-block;
    transition: transform var(--transition-fast);
    -webkit-text-fill-color: initial;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.link-grad:hover .arrow { transform: translateX(4px); }

/* =============================================================================
   5. HEADER
   ============================================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(15, 17, 21, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--glass-border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header__logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.header__logo-text {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}
.header__logo-text--light {
    color: var(--text-muted);
    font-weight: 400;
}
.logo-num {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header__nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    letter-spacing: 0.01em;
}
.header__nav-link:hover { color: var(--text-primary); }

/* Nav dropdown */
.header__nav-item {
    position: relative;
}
.header__nav-item .header__nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.header__nav-chevron {
    color: var(--text-faint);
    transition: transform var(--transition-fast), color var(--transition-fast);
    flex-shrink: 0;
}
.header__nav-item:hover .header__nav-chevron,
.header__nav-item:focus-within .header__nav-chevron {
    transform: rotate(180deg);
    color: var(--text-muted);
}

.header__dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: rgba(22, 26, 34, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.header__nav-item:hover .header__dropdown,
.header__nav-item:focus-within .header__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Bridge so mouse moving into dropdown doesn't close it */
.header__dropdown::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

.header__dropdown-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    cursor: pointer;
}
.header__dropdown-item:hover {
    background: rgba(255,255,255,0.06);
}
.header__dropdown-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}
.header__dropdown-sub {
    font-size: 0.75rem;
    color: var(--text-faint);
    letter-spacing: 0.02em;
}


/* Mobile sub-links */
.mobile-menu__sub {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 8px 20px;
    margin-top: -8px;
}
.mobile-menu__sub-link {
    font-size: 0.9rem;
    color: var(--text-faint);
    transition: color var(--transition-fast);
}
.mobile-menu__sub-link:hover { color: var(--text-muted); }

.header__whatsapp-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: background var(--transition-fast), border-color var(--transition-fast);
    margin-left: 8px;
}
.header__whatsapp-pill:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(139, 92, 246, 0.5);
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.header__hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    transform-origin: center;
}
.header__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.header__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 17, 21, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.mobile-menu__link {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}
.mobile-menu__link:hover { color: var(--text-primary); }
.mobile-menu__whatsapp {
    margin-top: 16px;
    padding: 14px 32px;
    background: var(--grad);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 100px;
}

/* =============================================================================
   6. HERO
   ============================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-deep);
    padding-top: 72px;
}

/* Atmosphere orbs */
.hero__atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}
.hero__orb--a {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 90, 95, 0.18) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
}
.hero__orb--b {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.20) 0%, transparent 70%);
    top: -60px;
    right: 5%;
}

/* Background image layer */
.hero__image {
    position: absolute;
    right: 0;
    top: 72px;
    width: 58%;
    height: calc(100% - 72px);
    z-index: 2;
    overflow: hidden;
}
.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    transform: scale(1.02);
}
.hero__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-deep) 0%, rgba(15,17,21,0.55) 30%, rgba(15,17,21,0.15) 60%, transparent 100%);
    z-index: 1;
}
.hero__image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--bg-deep) 0%, transparent 100%);
    z-index: 1;
}

/* Noise grain overlay */
.hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Content / glass card */
.hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero__card {
    max-width: 560px;
    padding: 52px 48px;
    background: rgba(15, 17, 21, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    will-change: transform;
    position: relative;
}
.hero__card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grad-start), var(--grad-end), transparent);
}

.hero__eyebrow {
    display: block;
    margin-bottom: 20px;
}

.hero__headline {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
    overflow: hidden;
}

.hero__sub {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 40px;
}

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero__ctas .btn-ghost svg {
    color: #25D366;
    flex-shrink: 0;
}

/* =============================================================================
   7. MANIFESTO STRIP
   ============================================================================= */

.manifesto {
    position: relative;
    padding: 130px 40px;
    background: var(--bg-deep);
    text-align: center;
    overflow: hidden;
}

/* Subtle central glow */
.manifesto__orb {
    position: absolute;
    width: 700px;
    height: 400px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center,
        rgba(139, 92, 246, 0.07) 0%,
        rgba(255, 90, 95, 0.04) 50%,
        transparent 75%
    );
    filter: blur(40px);
    pointer-events: none;
}

/* Giant faint "ONE" behind the text */
.manifesto__bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(14rem, 28vw, 26rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    opacity: 0.03;
    user-select: none;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}

/* Top + bottom gradient divider lines */
.manifesto__line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grad-start) 30%, var(--grad-end) 70%, transparent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
}
.manifesto__line--top  { top: 0; }
.manifesto__line--bottom { bottom: 0; }

.manifesto__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto__headline {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 32px;
    overflow: hidden;
}

.manifesto__sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* =============================================================================
   8. PROJECT SECTION
   ============================================================================= */

.project {
    padding: 120px 40px;
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}
.project::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

/* Left: content */
.project__content {
    padding: 52px 48px;
    background: rgba(15, 17, 21, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    position: relative;
}
.project__content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(139,92,246,0.3), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.project__eyebrow { margin-bottom: 20px; }

.project__title {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.project__body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.project__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-bottom: 40px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-border);
}

.project__spec {
    padding: 20px 16px;
    background: rgba(15, 17, 21, 0.7);
}
.project__spec-label {
    display: block;
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 6px;
}
.project__spec-value {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Right: image stack */
.project__images {
    position: relative;
    height: 560px;
}

.project__img {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.project__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project__img--front {
    width: 85%;
    height: 420px;
    top: 0;
    right: 0;
    z-index: 3;
    transform: rotate(2deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.project__img--mid {
    width: 70%;
    height: 340px;
    bottom: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-1.5deg) translate(0, 0);
    filter: brightness(0.75);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.project__img--peek {
    width: 45%;
    height: 220px;
    bottom: 30px;
    right: 5%;
    z-index: 1;
    transform: rotate(1deg);
    filter: brightness(0.45);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.project__images:hover .project__img--front {
    transform: rotate(2deg) translate(12px, -8px);
    box-shadow: 0 60px 100px rgba(0,0,0,0.55);
}
.project__images:hover .project__img--mid {
    transform: rotate(-1.5deg) translate(-8px, 6px);
    filter: brightness(0.85);
}
.project__images:hover .project__img--front img { transform: scale(1.03); }

/* =============================================================================
   9. WHY U7
   ============================================================================= */

.why {
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
}

.why-panel {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.why-panel:last-child { border-bottom: none; }

/* Subtle background image per panel */
.why-panel__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.04;
    z-index: 0;
    filter: grayscale(100%);
}

/* Ambient glow per panel */
.why-panel__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.10;
}
.why-panel[data-index="1"] .why-panel__glow {
    background: var(--grad-end);
    bottom: -100px;
    right: 5%;
}
.why-panel[data-index="2"] .why-panel__glow {
    background: var(--grad-start);
    top: -80px;
    left: 5%;
}
.why-panel[data-index="3"] .why-panel__glow {
    background: conic-gradient(from 0deg, var(--grad-start), var(--grad-end));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
}

.why-panel__inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 160px 1fr 60px;
    gap: 40px;
    align-items: center;
}

.why-panel__number {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(7rem, 12vw, 11rem);
    font-weight: 700;
    color: var(--text-primary);
    opacity: 0.05;
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
    will-change: opacity;
}

.why-panel__content { max-width: 720px; }

.why-panel__label { margin-bottom: 20px; }

.why-panel__headline {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
    overflow: hidden;
}

.why-panel__body {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
}

.why-panel__accent-line {
    width: 1px;
    height: 120px;
    background: var(--grad);
    opacity: 0.5;
    justify-self: end;
}

/* =============================================================================
   10. GALLERY
   ============================================================================= */

.gallery {
    background: var(--bg-deep);
    overflow: hidden;
}

.gallery__header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px 60px;
}
.gallery__header .t-eyebrow { margin-bottom: 16px; }
.gallery__title {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.1;
}

/* Desktop: horizontal scroll strip */
.gallery__scroll-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.gallery__track {
    display: flex;
    gap: 24px;
    padding: 0 80px;
    align-items: flex-start;
    height: 100%;
    will-change: transform;
}

.gallery__item {
    position: relative;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
    display: block;
}
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    transition: opacity 0.5s ease;
    border-radius: inherit;
}
.gallery__item:hover::after { opacity: 0; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item:hover {
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.2);
}

/* Individual item sizes */
.gallery__item--1 { width: 660px; height: 460px; margin-top: 70px; }
.gallery__item--2 { width: 520px; height: 400px; margin-top: 140px; }
.gallery__item--3 { width: 380px; height: 500px; margin-top: 30px; }
.gallery__item--4 { width: 440px; height: 470px; margin-top: 100px; }
.gallery__item--5 { width: 580px; height: 420px; margin-top: 60px; }

/* Mobile: vertical stacked */
.gallery__mobile {
    display: none;
    padding: 0 20px 80px;
    flex-direction: column;
    gap: 16px;
}
.gallery__mobile-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
}
.gallery__mobile-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =============================================================================
   11. CTA SECTION
   ============================================================================= */

.cta {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
    background: var(--bg-deep);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta__orb {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center,
        rgba(255, 90, 95, 0.07) 0%,
        rgba(139, 92, 246, 0.09) 40%,
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.cta__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.cta__eyebrow { margin-bottom: 24px; }

.cta__headline {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
    overflow: hidden;
}

.cta__sub {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 52px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Animated gradient border around button group */
.cta__button-wrapper {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(var(--angle, 0deg), var(--grad-start), var(--grad-end), var(--grad-start));
    animation: rotate-border 5s linear infinite;
}
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes rotate-border {
    to { --angle: 360deg; }
}

.cta__button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 32px 40px;
    background: var(--bg-deep);
    border-radius: calc(var(--radius-lg) - 1px);
}

.cta__link {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 8px;
    transition: color var(--transition-fast);
}
.cta__link:hover { color: var(--text-primary); }

/* =============================================================================
   12. FOOTER
   ============================================================================= */

.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer__gradient-line {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grad-start) 30%, var(--grad-end) 70%, transparent);
    opacity: 0.6;
}

.footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 40px 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 60px;
}

.footer__brand { }

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer__logo-img {
    width: auto;
    height: 100px;
    object-fit: contain;
}
.footer__logo-text {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}
.footer__logo-text span { color: var(--text-muted); font-weight: 400; }

.footer__tagline {
    font-size: 0.875rem;
    color: var(--text-faint);
    letter-spacing: 0.01em;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer__nav a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}
.footer__nav a:hover { color: var(--text-primary); }

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__contact-link {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}
.footer__contact-link:hover { color: var(--text-primary); }
.footer__contact-text {
    font-size: 0.875rem;
    color: var(--text-faint);
}

.footer__bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__copy {
    font-size: 0.8125rem;
    color: var(--text-faint);
}

/* =============================================================================
   13. CONTACT PAGE
   ============================================================================= */

/* ---- Hero ---- */
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-deep);
    overflow: hidden;
    padding-top: 80px;
}

.contact-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.contact-hero__orb--a {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,90,95,0.10) 0%, transparent 70%);
    top: -120px; left: -80px;
}
.contact-hero__orb--b {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(139,92,246,0.13) 0%, transparent 70%);
    bottom: -80px; right: 10%;
}

.contact-hero__bg-word {
    position: absolute;
    bottom: -2%;
    left: -2%;
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(160px, 22vw, 280px);
    font-weight: 700;
    letter-spacing: -0.05em;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
}

.contact-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}
.contact-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.contact-hero__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--bg-deep) 0%, transparent 40%);
    z-index: 1;
}
.contact-hero__image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15,17,21,0.45);
    z-index: 1;
}

.contact-hero__inner {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.contact-hero__content {
    max-width: 560px;
}

.contact-hero__eyebrow {
    display: block;
    margin-bottom: 24px;
}

.contact-hero__headline {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--text-primary);
    margin: 0 0 28px;
}

.contact-hero__sub {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-hero__scroll-cue {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 10;
}
.contact-hero__scroll-line {
    display: block;
    width: 1px;
    height: 64px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

/* ---- Contact section (methods + form) ---- */
.contact-section {
    position: relative;
    background: var(--bg-deep);
    padding: 120px 0;
    overflow: hidden;
}

.contact-section__orb {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
    filter: blur(80px);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.contact-section__inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

/* ---- Contact method cards ---- */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-methods__eyebrow {
    margin-bottom: 8px;
}

.contact-card {
    padding: 28px 32px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-card__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.contact-card__value {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.contact-card__note {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 4px 0 8px;
}

.contact-card__btn {
    margin-top: 8px;
    align-self: flex-start;
}

.contact-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    margin-top: 4px;
}
.contact-card__link:hover { color: var(--text-primary); }

/* ---- Contact form card ---- */
.contact-form-wrap {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    padding: 40px 44px;
}

.contact-form-card__header {
    margin-bottom: 32px;
}

.contact-form-card__title {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 10px;
}

.contact-form-card__sub {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

.contact-form-card__no-form {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.contact-form-card__fallback {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ---- CF7 form overrides ---- */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpcf7-form p {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wpcf7-form label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: var(--text-primary);
    outline: none;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    border-color: rgba(255,90,95,0.4);
    background: rgba(255,255,255,0.07);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: var(--text-faint);
}

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

.wpcf7-form input[type="submit"] {
    align-self: flex-start;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.wpcf7-form input[type="submit"]:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.wpcf7-response-output {
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    border: 1px solid;
    margin-top: 8px;
}
.wpcf7-mail-sent-ok {
    border-color: rgba(52,211,153,0.3);
    background: rgba(52,211,153,0.06);
    color: rgba(52,211,153,0.9);
}
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    border-color: rgba(255,90,95,0.3);
    background: rgba(255,90,95,0.06);
    color: rgba(255,90,95,0.9);
}

/* =============================================================================
   14. UTILITIES  (was 13)
   ============================================================================= */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Page fallback */
.page-main {
    min-height: 100vh;
    padding: 140px 40px 80px;
    background: var(--bg-deep);
}
.page-container {
    max-width: 800px;
    margin: 0 auto;
}
.page-title {
    font-family: 'Clash Display', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 32px;
}
.page-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-muted);
}

/* =============================================================================
   14. MEDIA QUERIES
   ============================================================================= */

@media (max-width: 1100px) {
    .project__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .project__images {
        height: 440px;
        order: -1;
    }
    .why-panel__inner {
        grid-template-columns: 100px 1fr 40px;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .site-header { padding: 0 20px; }
    .header__nav { display: none; }
    .header__hamburger { display: flex; }
    .mobile-menu { display: flex; }

    .hero { padding-top: 72px; }
    .hero__content { padding: 0 20px; }
    .hero__card { padding: 36px 28px; max-width: 100%; }
    .hero__image {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        opacity: 0.35;
    }
    .hero__image::before {
        background: linear-gradient(to bottom, var(--bg-deep) 0%, transparent 50%);
    }

    .manifesto { padding: 80px 20px; }
    .manifesto__bg-word { font-size: 40vw; }

    .project { padding: 80px 20px; }
    .project__content { padding: 32px 24px; }
    .project__images { height: 340px; }
    .project__img--front { width: 90%; height: 300px; }
    .project__img--mid { width: 65%; height: 240px; }
    .project__img--peek { display: none; }

    .why-panel { padding: 60px 20px; min-height: 70vh; }
    .why-panel__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .why-panel__number { display: none; }
    .why-panel__accent-line { display: none; }
    .why-panel__headline { font-size: clamp(2.2rem, 8vw, 3rem); }

    .gallery__header { padding: 80px 20px 40px; }
    .gallery__scroll-container { display: none; }
    .gallery__mobile { display: flex; }

    .cta { padding: 80px 20px; min-height: auto; }
    .cta__button-group { padding: 24px 24px; }
    .cta__button-group .btn-primary,
    .cta__button-group .btn-ghost { width: 100%; justify-content: center; }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 52px 20px 40px;
    }
    .footer__bottom { padding: 20px 20px; }

    .contact-hero__inner { padding: 0 20px; }
    .contact-hero__headline { font-size: clamp(3.5rem, 12vw, 5rem); }
    .contact-hero__sub { font-size: 1rem; }
    .contact-hero__image { width: 100%; opacity: 0.25; }
    .contact-hero__scroll-cue { left: 20px; }

    .contact-section { padding: 80px 0; }
    .contact-section__inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 40px;
    }
    .contact-form-wrap { position: static; }
    .contact-form-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
    .manifesto__headline { font-size: clamp(2.2rem, 9vw, 3rem); }
    .hero__ctas { flex-direction: column; align-items: stretch; }
    .hero__ctas .btn-primary,
    .hero__ctas .btn-ghost { justify-content: center; }
}
