/*
Theme Name: ABWEB
Theme URI: https://june-works.com
Author: June Works Studio
Description: Custom theme for June Works creative studio
Version: 1.1
License: Private
Text Domain: abweb
*/

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

:root {
    --dark:   #2E2E38;
    --red:    #E3071D;
    --cream:  #FFE8B8;
    --gray:   #D9D9D9;
    --white:  #FFFFFF;
    --card:   #25252F;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark) !important;
    color: var(--white) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    overflow-x: hidden;
    cursor: none;
}

/* ============ CUSTOM CURSOR ============ */
#cur-dot {
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform .15s ease, width .25s ease, height .25s ease;
}
#cur-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(227,7,29,.45);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: border-color .3s ease, transform .3s ease;
}
body.hovering #cur-dot  { transform: translate(-50%,-50%) scale(2.4); }
body.hovering #cur-ring { transform: translate(-50%,-50%) scale(1.5); border-color: var(--red); }

/* ============ NAV ============ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 80px; padding: 0 64px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background .4s ease, border-color .4s ease;
    border-bottom: 1px solid transparent;
}
nav.scrolled {
    background: rgba(46,46,56,.96);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255,255,255,.06);
}
.nav-logo {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 20px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--red); }
.nav-logo-img { height: 54px !important; width: auto !important; display: block !important; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,.55); text-decoration: none;
    font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    transition: color .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
    background: var(--red) !important; color: var(--white) !important;
    padding: 10px 26px; border-radius: 2px;
    transition: background .3s, transform .2s !important;
}
.nav-cta:hover { background: #bf0519 !important; transform: translateY(-1px); }

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 160px 64px 100px;
    position: relative; overflow: hidden;
}
.hero-label {
    display: flex; align-items: center; gap: 14px;
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: var(--cream); margin-bottom: 36px;
    opacity: 0; transform: translateY(16px);
    animation: fadeUp .7s ease forwards .3s;
}
.hero-label::before { content:''; width: 36px; height: 1px; background: var(--cream); }
.hero-headline {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 8vw;
    line-height: .9; text-transform: uppercase; letter-spacing: -0.025em;
    overflow: hidden;
}
.hl {
    display: block;
    opacity: 0; transform: translateY(110%);
}
.hl:nth-child(1) { animation: slideUp .85s cubic-bezier(.16,1,.3,1) forwards .45s; }
.hl:nth-child(2) { animation: slideUp .85s cubic-bezier(.16,1,.3,1) forwards .6s; }
.hl:nth-child(3) { animation: slideUp .85s cubic-bezier(.16,1,.3,1) forwards .75s; }
.outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.red     { color: var(--red); }
.hero-bottom {
    margin-top: 52px;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
    opacity: 0; transform: translateY(18px);
    animation: fadeUp .7s ease forwards 1s;
}
.hero-desc {
    max-width: 360px; font-size: 15px; line-height: 1.75;
    color: rgba(255,255,255,.5); font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.btn { display: inline-block; text-decoration: none; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 15px 36px; border-radius: 2px; transition: all .3s ease; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #bf0519; transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.18); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.scroll-hint {
    position: absolute; bottom: 44px; left: 64px;
    display: flex; align-items: center; gap: 14px;
    opacity: 0; animation: fadeUp .7s ease forwards 1.3s;
}
.scroll-line {
    width: 44px; height: 1px; background: rgba(255,255,255,.15);
    position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--red); animation: scanLine 1.6s ease infinite;
}
.scroll-hint span { font-size: 10px; letter-spacing: 3.5px; text-transform: uppercase; color: rgba(255,255,255,.3); }
.hero-deco {
    position: absolute; right: -160px; top: 50%; transform: translateY(-50%);
    width: 580px; height: 580px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.035); pointer-events: none;
}
.hero-deco::before {
    content: ''; position: absolute; inset: 70px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.035);
}
.hero-deco::after {
    content: ''; position: absolute; inset: 140px; border-radius: 50%;
    border: 1px solid rgba(227,7,29,.07);
}

/* ============ MARQUEE ============ */
.marquee-wrap { background: var(--red); padding: 16px 0; overflow: hidden; }
.marquee-track {
    display: flex; width: max-content;
    animation: marquee 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.m-item { display: flex; align-items: center; gap: 28px; padding-right: 28px; }
.m-text {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 12px; letter-spacing: 3.5px; text-transform: uppercase;
    white-space: nowrap; color: var(--white);
}
.m-dot { width: 5px; height: 5px; background: var(--cream); border-radius: 50%; flex-shrink: 0; }

/* ============ SECTION SHARED ============ */
.section-label { font-size: 10px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--cream); margin-bottom: 14px; }
.section-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 5vw;
    text-transform: uppercase; line-height: .92; letter-spacing: -0.02em;
    color: var(--white);
}
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; }
.view-all {
    color: rgba(255,255,255,.4); text-decoration: none;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 3px;
    transition: color .3s, border-color .3s; white-space: nowrap; margin-bottom: 6px;
}
.view-all:hover { color: var(--cream); border-color: var(--cream); }

/* ============ SERVICES ============ */
.services { padding: 120px 64px; }
.svc-item {
    display: grid; grid-template-columns: 72px 1fr 56px;
    align-items: center; padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    cursor: pointer; position: relative; overflow: hidden;
    transition: padding-left .3s;
}
.svc-item:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
.svc-item::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--red);
    transition: width .45s ease;
}
.svc-item:hover::after { width: 100%; }
.svc-item:hover { padding-left: 12px; }
.svc-num { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--red); }
.svc-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: clamp(22px, 3vw, 38px); transition: color .3s; color: var(--white); }
.svc-item:hover .svc-name { color: var(--cream); }
.svc-sub {
    font-size: 13px; color: rgba(255,255,255,.38); font-weight: 300; margin-top: 6px;
    max-width: 480px; opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s;
}
.svc-item:hover .svc-sub { opacity: 1; transform: translateY(0); }
.svc-icon {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.13);
    display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.svc-item:hover .svc-icon { background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.svc-icon svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ============ WORK ============ */
.work { padding: 0 64px 120px; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.work-card { position: relative; border-radius: 4px; overflow: hidden; background: var(--card); cursor: pointer; }
.work-card:first-child { grid-row: 1 / 3; }
.work-card:first-child .card-inner { aspect-ratio: unset; min-height: 500px; }
.card-inner { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.card-bg { width: 100%; height: 100%; transition: transform .65s ease; }
.work-card:hover .card-bg { transform: scale(1.04); }
.card-bg.g1 { background: linear-gradient(145deg, #1c1c24 0%, #2E2E38 60%, rgba(227,7,29,.08) 100%); }
.card-bg.g2 { background: linear-gradient(145deg, #25252F 0%, rgba(255,232,184,.07) 100%); }
.card-bg.g3 { background: linear-gradient(145deg, #1c1c24 0%, rgba(227,7,29,.06) 100%); }
.card-label {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 24px;
    background: linear-gradient(to top, rgba(30,30,38,.97) 0%, transparent 100%);
}
.card-cat { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--cream); margin-bottom: 6px; }
.card-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; }
.card-hover {
    position: absolute; inset: 0; background: rgba(46,46,56,.88);
    display: flex; align-items: flex-start; justify-content: flex-end;
    padding: 24px; opacity: 0; transition: opacity .4s;
}
.work-card:hover .card-hover { opacity: 1; }
.card-arrow { width: 50px; height: 50px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.card-arrow svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 1.5; }
.card-mono {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(48px, 10vw, 90px); letter-spacing: -2px;
    color: rgba(255,255,255,.04); text-transform: uppercase; pointer-events: none; white-space: nowrap;
}

/* ============ ABOUT ============ */
.about { padding: 110px 64px; background: var(--card); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-headline { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(28px, 3.8vw, 52px); line-height: 1.18; letter-spacing: -.5px; }
.about-headline .hi { color: var(--cream); }
.about-body { margin-top: 28px; font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.45); font-weight: 300; }
.about-cta { margin-top: 40px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 32px; }
.stat-num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(40px, 5vw, 58px); color: var(--red); line-height: 1; }
.stat-lbl { font-size: 12px; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-top: 4px; }

/* ============ CTA ============ */
.cta { padding: 130px 64px; text-align: center; position: relative; overflow: hidden; }
.cta-bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(80px, 18vw, 220px); letter-spacing: -6px; text-transform: uppercase;
    color: rgba(255,255,255,.025); white-space: nowrap; pointer-events: none; user-select: none;
}
.cta-label { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--cream); margin-bottom: 24px; }
.cta-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 7.5vw;
    text-transform: uppercase; line-height: .9; letter-spacing: -0.025em; margin-bottom: 52px;
}
.cta-title .line2 { -webkit-text-stroke: 2px rgba(255,255,255,.55); color: transparent; }
.cta-title .line3 { color: var(--red); }

/* ============ FOOTER ============ */
footer {
    padding: 60px 64px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; align-items: start;
}
.f-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: 2px; text-transform: uppercase; }
.f-logo span { color: var(--red); }
.f-tag { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 8px; }
.f-nav { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.f-nav a { color: rgba(255,255,255,.35); text-decoration: none; font-size: 13px; letter-spacing: 1px; transition: color .3s; }
.f-nav a:hover { color: var(--white); }
.f-email { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; color: var(--white); text-decoration: none; display: block; margin-bottom: 24px; transition: color .3s; }
.f-email:hover { color: var(--cream); }
.f-social { display: flex; gap: 12px; }
.f-soc {
    width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: rgba(255,255,255,.4); font-size: 11px; font-weight: 600; transition: all .3s;
}
.f-soc:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.f-bottom {
    grid-column: 1/-1; padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.05);
    display: flex; justify-content: space-between; align-items: center;
}
.f-copy { font-size: 11px; color: rgba(255,255,255,.2); letter-spacing: 1px; }

/* ============ REVEAL ON SCROLL ============ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .85s ease, transform .85s ease; }
.reveal.in  { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ============ KEYFRAMES ============ */
@keyframes fadeUp  { to { opacity:1; transform:translateY(0); } }
@keyframes slideUp { to { opacity:1; transform:translateY(0); } }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes scanLine { 0%{left:-100%;} 100%{left:100%;} }

/* ============ RESPONSIVE ============ */
@media(max-width:900px){
    nav,nav.scrolled{ padding-left:32px; padding-right:32px; }
    .hero,.services,.work,.cta,footer{ padding-left:32px; padding-right:32px; }
    .about{ padding-left:32px; padding-right:32px; grid-template-columns:1fr; gap:52px; }
    .hero-bottom{ flex-direction:column; align-items:flex-start; }
    .work-grid{ grid-template-columns:1fr; }
    .work-card:first-child{ grid-row:auto; }
    .work-card:first-child .card-inner{ min-height:unset; aspect-ratio:4/3; }
}
@media(max-width:680px){
    .nav-links{ display:none; }
    .hero{ padding-top:140px; padding-left:24px; padding-right:24px; }
    .outline{ -webkit-text-stroke:1.5px var(--white); }
    .cta-title .line2{ -webkit-text-stroke:1.5px rgba(255,255,255,.55); }
    footer{ grid-template-columns:1fr; }
    .svc-item{ grid-template-columns:56px 1fr 44px; }
}

/* ============ HERO ORBS & NOISE ============ */
.hero-label,
.hero-headline,
.hero-bottom { position: relative; z-index: 2; }
.scroll-hint { z-index: 2; }
.hero-deco   { z-index: 1; }

.hero-orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; z-index: 1;
    filter: blur(90px);
}
.hero-orb-1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(227,7,29,.2) 0%, transparent 65%);
    top: -120px; right: -100px;
    animation: orbDrift 14s ease-in-out infinite;
}
.hero-orb-2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(255,232,184,.11) 0%, transparent 65%);
    bottom: 60px; left: -80px;
    animation: orbDrift 18s ease-in-out infinite reverse;
}
.hero-noise {
    position: absolute; inset: 0; z-index: 1; 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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 200px; opacity: .035;
}
@keyframes orbDrift {
    0%,100% { transform: translate(0,0); }
    25%     { transform: translate(40px,-30px); }
    50%     { transform: translate(-20px,50px); }
    75%     { transform: translate(30px,10px); }
}

/* ============ PROCESS ============ */
.process { padding: 120px 64px; }
.process-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    border: 1px solid rgba(255,255,255,.07);
}
.process-step {
    padding: 52px 36px 48px;
    border-right: 1px solid rgba(255,255,255,.07);
    position: relative; overflow: hidden;
    transition: background .4s ease;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(255,255,255,.025); }
.step-top { display: flex; align-items: center; gap: 20px; margin-bottom: 36px; }
.step-num {
    font-family: 'Syne', sans-serif; font-size: 11px;
    font-weight: 600; letter-spacing: 3px; color: var(--red); flex-shrink: 0;
}
.step-line {
    flex: 1; height: 1px; background: rgba(255,255,255,.07);
    position: relative; overflow: hidden;
}
.step-line::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; background: var(--red);
    transition: left .55s ease;
}
.process-step:hover .step-line::after { left: 0; }
.step-title {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 16px;
    color: var(--white); transition: color .3s;
}
.process-step:hover .step-title { color: var(--cream); }
.step-desc { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,.35); font-weight: 300; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 0 64px 120px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.testi-card {
    background: var(--card); padding: 44px 36px;
    border-radius: 4px; border: 1px solid rgba(255,255,255,.04);
    position: relative; transition: border-color .35s, transform .35s;
}
.testi-card:hover { border-color: rgba(227,7,29,.22); transform: translateY(-5px); }
.testi-card::before {
    content: '\201C';
    font-family: 'Syne', sans-serif; font-size: 72px; line-height: 1;
    color: var(--red); opacity: .25;
    position: absolute; top: 20px; left: 28px;
}
.testi-quote {
    font-size: 14px; line-height: 1.85;
    color: rgba(255,255,255,.6); font-weight: 300;
    margin-bottom: 32px; padding-top: 36px;
}
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--red); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 1px; color: var(--white);
}
.testi-name { font-size: 13px; font-weight: 600; letter-spacing: .5px; }
.testi-role { font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: 1px; margin-top: 3px; }

/* ============ CLIENTS ============ */
.clients { padding: 0 64px 120px; }
.clients-grid { display: flex; flex-direction: column; }
.client-card {
    display: grid; grid-template-columns: 72px 1fr 56px;
    align-items: center; padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    text-decoration: none; position: relative; overflow: hidden;
    transition: padding-left .3s;
}
.client-card:last-child { border-bottom: 1px solid rgba(255,255,255,.07); }
.client-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--red);
    transition: width .45s ease;
}
.client-card:hover::after { width: 100%; }
.client-card:hover { padding-left: 12px; }
.client-mono {
    font-family: 'Syne', sans-serif; font-weight: 800;
    font-size: 13px; letter-spacing: 2px; color: var(--red);
}
.client-name {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: clamp(18px, 2.4vw, 28px); color: var(--white); transition: color .3s;
}
.client-card:hover .client-name { color: var(--cream); }
.client-type {
    font-size: 11px; color: rgba(255,255,255,.35);
    letter-spacing: 2px; text-transform: uppercase; margin-top: 5px;
}
.client-link {
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.13);
    display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.client-card:hover .client-link { background: var(--red); border-color: var(--red); transform: rotate(45deg); }
.client-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ============ RESPONSIVE (new sections) ============ */
@media(max-width:900px){
    .process { padding-left:32px; padding-right:32px; }
    .process-grid { grid-template-columns:1fr 1fr; }
    .process-step { border-bottom:1px solid rgba(255,255,255,.07); }
    .process-step:nth-child(2n) { border-right:none; }
    .testimonials { padding-left:32px; padding-right:32px; }
    .testi-grid { grid-template-columns:1fr; }
    .clients { padding-left:32px; padding-right:32px; }
}
@media(max-width:680px){
    .process-grid { grid-template-columns:1fr; }
    .process-step { border-right:none; }
    .hero-orb-1 { width:300px; height:300px; }
    .hero-orb-2 { width:220px; height:220px; }
}

/* ============ CONTACT FORM SECTION ============ */
.contact-section {
    padding: 120px 64px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
.contact-sub {
    font-size: 15px;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    margin-top: 20px;
    max-width: 340px;
}
.contact-email {
    display: inline-block;
    margin-top: 32px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--red);
    text-decoration: none;
    letter-spacing: .5px;
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
}
.contact-email:hover { border-color: var(--red); }

/* WPForms overrides — keep brand look */
.contact-form-wrap .wpforms-container { width: 100%; }
.contact-form-wrap .wpforms-field-label {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,.4) !important;
    margin-bottom: 8px !important;
}
.contact-form-wrap input,
.contact-form-wrap textarea,
.contact-form-wrap select {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 4px !important;
    color: var(--white) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 15px !important;
    padding: 14px 18px !important;
    width: 100% !important;
    transition: border-color .25s !important;
    outline: none !important;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    border-color: var(--red) !important;
}
.contact-form-wrap textarea { min-height: 140px !important; resize: vertical !important; }
.contact-form-wrap .wpforms-submit {
    background: var(--red) !important;
    color: var(--white) !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: opacity .25s !important;
    margin-top: 8px !important;
}
.contact-form-wrap .wpforms-submit:hover { opacity: .85 !important; }
.contact-form-wrap .wpforms-field { margin-bottom: 20px !important; }

@media(max-width:900px){
    .contact-section { padding: 80px 32px; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .contact-sub { max-width: 100%; }
}
