/*
Theme Name: Alp Web Studio
Theme URI: https://alpwebstudio.com
Author: Alp Web Studio
Author URI: https://alpwebstudio.com
Description: A dark, modern landing page theme for a design & development studio. Features mountain-themed hero with star animations, bento grid services, pricing tables, testimonials, and contact form.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alp-web-studio
Tags: one-page, dark, portfolio, custom-menu
*/

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

:root {
    --bg: #09090b;
    --bg-elevated: #111113;
    --bg-card: #161618;
    --bg-card-hover: #1c1c1f;
    --border: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.1);
    --text: #f0ece4;
    --text-dim: rgba(240,236,228,0.55);
    --text-faint: rgba(240,236,228,0.25);
    --accent: #f0ece4;
    --warm: #c49a5c;
    --warm-glow: rgba(196,154,92,0.15);
    --warm-dim: rgba(196,154,92,0.08);
    --font: 'Inter', -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font); background: var(--bg); color: var(--text);
    overflow-x: hidden; -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection { background: rgba(240,236,228,0.2); color: #fff; }

/* ═══ NAVBAR ═══ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 32px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
@media (min-width: 768px) { .nav { padding: 20px 48px; } }
.nav.scrolled {
    background: rgba(9,9,11,0.85); backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: var(--font); font-weight: 700; font-size: 16px;
    color: var(--text); text-decoration: none;
    display: flex; align-items: center; gap: 10px; z-index: 101;
    letter-spacing: -0.01em;
}
.logo-icon {
    width: 20px; height: 20px; opacity: 0.9;
}

.nav-links { display: none; list-style: none; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
    font-size: 14px; font-weight: 400;
    color: var(--text-dim); text-decoration: none;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
    display: none; padding: 9px 22px;
    font-size: 14px; font-weight: 500;
    background: transparent; color: var(--text);
    border: 1px solid var(--border-light);
    border-radius: 100px; text-decoration: none; cursor: pointer;
    transition: all 0.3s ease;
}
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }
.nav-cta:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }

.hamburger {
    display: flex; flex-direction: column; gap: 5px; width: 24px;
    cursor: pointer; z-index: 101; background: none; border: none; padding: 4px 0;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
    display: block; height: 1.5px; background: var(--text);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1); transform-origin: center;
}
.hamburger span:nth-child(2) { width: 60%; }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(9,9,11,0.97); backdrop-filter: blur(40px);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: opacity 0.5s, visibility 0.5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mob-link {
    font-size: clamp(2rem,7vw,3.2rem);
    font-weight: 300; color: rgba(255,255,255,0.2); text-decoration: none;
    line-height: 1.5; transform: translateY(30px); opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.6s, color 0.3s;
}
.mobile-menu.open .mob-link { transform: translateY(0); opacity: 1; }
.mobile-menu.open .mob-link:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .mob-link:nth-child(2) { transition-delay: .14s; }
.mobile-menu.open .mob-link:nth-child(3) { transition-delay: .20s; }
.mobile-menu.open .mob-link:nth-child(4) { transition-delay: .26s; }
.mobile-menu.open .mob-link:nth-child(5) { transition-delay: .32s; }
.mob-link:hover { color: #fff; }
body.menu-open { overflow: hidden; }

/* ═══ HERO ═══ */
.hero {
    position: relative; min-height: 85vh; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start;
    padding: 160px 24px 0; text-align: center;
}
@media (min-width: 768px) { .hero { padding-top: 180px; } }

.hero-glow {
    position: absolute; width: 1000px; height: 600px;
    border-radius: 50%; filter: blur(120px); opacity: 0.14; pointer-events: none;
    background: radial-gradient(ellipse, var(--warm) 0%, rgba(196,154,92,0.3) 40%, transparent 70%);
    bottom: 18%; left: 50%; transform: translateX(-50%);
    z-index: 1;
}
.hero-glow-2 {
    position: absolute; width: 500px; height: 400px;
    border-radius: 50%; filter: blur(100px); opacity: 0.08; pointer-events: none;
    background: radial-gradient(circle, #e8a855 0%, transparent 70%);
    bottom: 25%; right: 12%; z-index: 1;
}
.hero-glow-3 {
    position: absolute; width: 400px; height: 350px;
    border-radius: 50%; filter: blur(100px); opacity: 0.05; pointer-events: none;
    background: radial-gradient(circle, #d4a46a 0%, transparent 70%);
    bottom: 28%; left: 10%; z-index: 1;
}
.hero-sky {
    position: absolute; top: 0; left: 0; right: 0; height: 60%;
    background: linear-gradient(180deg, rgba(15,12,20,0.6) 0%, transparent 100%);
    pointer-events: none; z-index: 0;
}

.hero-mountains {
    position: absolute; bottom: 0; left: 0; right: 0;
    width: 100%; height: 60%; min-height: 340px;
    pointer-events: none; z-index: 1;
}
@media (min-width: 768px) { .hero-mountains { height: 55%; } }
.hero-mountains svg {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
}

#starCanvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

.hero-content {
    position: relative; z-index: 3; max-width: 900px; width: 100%;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; margin-bottom: 40px;
    font-size: 13px; font-weight: 400; color: var(--text-dim);
    border: 1px solid var(--border-light); border-radius: 100px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.hero-badge:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }
.hero-badge a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
.hero-badge .badge-arrow { font-size: 14px; opacity: 0.5; }

.hero-h1 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800; font-size: clamp(3.5rem, 6vw, 4.5rem);
    line-height: 1.0; letter-spacing: -0.04em;
    margin-bottom: 28px; color: var(--text);
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 18px); font-weight: 300;
    line-height: 1.7; color: var(--text-dim);
    max-width: 560px; margin: 0 auto 44px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero-fade {
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    z-index: 2; pointer-events: none;
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; font-size: 14px; font-weight: 500;
    color: var(--bg); background: var(--text);
    border: 1px solid var(--text);
    border-radius: 100px; cursor: pointer; text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px; font-size: 14px; font-weight: 500;
    color: var(--text); background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 100px; cursor: pointer; text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); transform: translateY(-1px); }

/* ═══ TABS ═══ */
.tabs-section {
    position: relative; z-index: 2;
    border-top: 1px solid var(--border);
}
.tabs-bar {
    display: flex; justify-content: center; flex-wrap: wrap;
    max-width: 1200px; margin: 0 auto;
}
.tab-item {
    display: flex; align-items: center; gap: 10px;
    padding: 20px 32px; font-size: 14px; font-weight: 400;
    color: var(--text-faint); cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s; background: none; border-top: none; border-left: none; border-right: none;
    white-space: nowrap;
}
@media (max-width: 768px) { .tab-item { padding: 16px 18px; font-size: 13px; } }
.tab-item:hover { color: var(--text-dim); }
.tab-item.active {
    color: var(--text); border-bottom-color: var(--text-dim);
}
.tab-item svg { width: 16px; height: 16px; opacity: 0.5; }
.tab-item.active svg { opacity: 0.8; }

/* ═══ SECTION PRIMITIVES ═══ */
.sec { position: relative; padding: 100px 24px; overflow: hidden; }
@media (min-width: 768px) { .sec { padding: 140px 48px; } }
.sec-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.sec::before {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.sec:nth-of-type(odd)::before {
    background: radial-gradient(ellipse 70% 50% at 10% 20%, rgba(196,154,92,0.03) 0%, transparent 70%);
}
.sec:nth-of-type(even)::before {
    background: radial-gradient(ellipse 60% 50% at 90% 80%, rgba(240,236,228,0.015) 0%, transparent 70%);
}
#services::before {
    background: radial-gradient(ellipse 50% 60% at 80% 10%, rgba(196,154,92,0.025) 0%, transparent 60%);
}
#pricing::before {
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(196,154,92,0.03) 0%, transparent 60%);
}
#contact::before {
    background: radial-gradient(ellipse 70% 60% at 20% 90%, rgba(240,236,228,0.02) 0%, transparent 60%);
}

.sec-header {
    text-align: center; margin-bottom: 72px;
    max-width: 640px; margin-left: auto; margin-right: auto;
}

.sec-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-faint);
    margin-bottom: 20px;
}
.sec-label::before,
.sec-label::after {
    content: ''; width: 24px; height: 1px;
    background: var(--border-light);
}

.sec-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700; line-height: 1.08; letter-spacing: -0.03em;
    margin-bottom: 18px;
}
.sec-desc {
    font-size: 16px; font-weight: 300; line-height: 1.7;
    color: var(--text-dim); max-width: 480px;
    margin-left: auto; margin-right: auto;
}

/* ═══ SERVICES — BENTO ═══ */
.bento {
    display: grid; gap: 1px; background: var(--border);
    grid-template-columns: 1fr; border-radius: 16px; overflow: hidden;
}
@media (min-width: 768px) {
    .bento {
        grid-template-columns: repeat(12, 1fr);
    }
    .bento .b-wide { grid-column: span 7; }
    .bento .b-narrow { grid-column: span 5; }
    .bento .b-third { grid-column: span 4; }
}

.bento-card {
    background: var(--bg-card); padding: 36px; position: relative;
    overflow: hidden; transition: background 0.4s;
}
.bento-card:hover { background: var(--bg-card-hover); }
.bento-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 0; height: 1px; background: var(--text-dim);
    transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
}
.bento-card:hover::before { width: 60px; }

.bento-icon {
    width: 40px; height: 40px; margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text); opacity: 0.5; transition: opacity 0.3s;
}
.bento-card:hover .bento-icon { opacity: 0.8; }
.bento-icon svg { width: 22px; height: 22px; }
.bento-title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.bento-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text-dim); }

.bento-card.featured-card { padding: 44px; }
.bento-card.featured-card .bento-desc { max-width: 360px; }
.bento-card .big-num {
    position: absolute; bottom: -20px; right: 16px;
    font-size: 140px; font-weight: 900;
    color: rgba(255,255,255,0.015); line-height: 1;
    pointer-events: none; user-select: none;
}

/* ═══ PORTFOLIO ═══ */
.port-card {
    border: 1px solid var(--border); border-radius: 16px;
    overflow: hidden; background: var(--bg-card);
    transition: border-color 0.4s;
}
.port-card:hover { border-color: rgba(255,255,255,0.1); }

.port-layout { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .port-layout { grid-template-columns: 55% 45%; } }

.port-img {
    min-height: 280px; background-size: cover; background-position: center;
    position: relative;
}
@media (min-width: 1024px) { .port-img { min-height: 440px; } }
.port-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(196,154,92,0.04), rgba(0,0,0,0.2));
}
.port-live {
    position: absolute; top: 20px; left: 20px;
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
    color: #4ade80; background: rgba(9,9,11,0.8);
    backdrop-filter: blur(10px); padding: 6px 14px; border-radius: 100px;
}
.port-live .dot {
    width: 6px; height: 6px; border-radius: 50%; background: #4ade80;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity: .5; box-shadow: 0 0 0 0 rgba(74,222,128,0.3); }
    50% { opacity: 1; box-shadow: 0 0 0 8px transparent; }
}
.port-info {
    padding: 40px; display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 768px) { .port-info { padding: 52px; } }
.port-tag {
    font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--text-faint); margin-bottom: 20px;
}
.port-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.port-desc {
    font-size: 15px; font-weight: 300; line-height: 1.7;
    color: var(--text-dim); margin-bottom: 36px; max-width: 380px;
}
.port-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 500;
    color: var(--text-dim); text-decoration: none; transition: color 0.3s;
}
.port-link:hover { color: var(--text); }
.port-link svg { transition: transform 0.3s; }
.port-link:hover svg { transform: translateX(4px); }

/* ═══ PROCESS ═══ */
.process-row {
    display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border);
    border-radius: 16px; overflow: hidden;
}
@media (min-width: 768px) { .process-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-row { grid-template-columns: repeat(4, 1fr); } }

.proc-step {
    background: var(--bg-card); padding: 40px;
    position: relative; transition: background 0.4s;
}
.proc-step:hover { background: var(--bg-card-hover); }
.proc-num {
    font-size: 56px; font-weight: 800;
    line-height: 1; color: var(--text); opacity: 0.04;
    margin-bottom: 24px; transition: opacity 0.4s;
}
.proc-step:hover .proc-num { opacity: 0.08; }
.proc-title { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.proc-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--text-dim); }

/* ═══ TESTIMONIALS ═══ */
.test-grid {
    display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border);
    border-radius: 16px; overflow: hidden;
}
@media (min-width: 768px) { .test-grid { grid-template-columns: 1.2fr 0.8fr; } }
@media (min-width: 1024px) { .test-grid { grid-template-columns: 1fr 1fr 1fr; } }

.test-card {
    background: var(--bg-card); padding: 36px;
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    transition: background 0.4s;
}
.test-card:hover { background: var(--bg-card-hover); }

@media (min-width: 768px) and (max-width: 1023px) {
    .test-card:first-child { grid-row: span 2; }
    .test-card:first-child .test-text { font-size: 17px; }
}

.test-card::before {
    content: '\201C'; position: absolute; top: 16px; right: 20px;
    font-size: 72px; font-weight: 900;
    color: rgba(255,255,255,0.02); line-height: 1;
}
.test-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.test-stars svg { width: 13px; height: 13px; color: var(--warm); }
.test-badge {
    font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
    color: var(--warm); margin-bottom: 16px;
}
.test-text {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: var(--text-dim); flex-grow: 1; margin-bottom: 28px;
}
.test-text strong { color: var(--text); font-weight: 500; }
.test-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 18px; border-top: 1px solid var(--border);
}
.test-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600; color: var(--text-dim);
}
.test-name { font-size: 13px; font-weight: 500; }
.test-role { font-size: 11px; color: var(--text-faint); }

/* ═══ PRICING ═══ */
.price-grid {
    display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border);
    border-radius: 16px; overflow: visible;
}
.price-grid > .price-card:first-child { border-radius: 16px 0 0 16px; }
.price-grid > .price-card:last-child { border-radius: 0 16px 16px 0; }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
    background: var(--bg-card); padding: 40px;
    position: relative; transition: all 0.4s;
    display: flex; flex-direction: column;
}
.price-card:hover { background: var(--bg-card-hover); }

.price-card.feat {
    background: linear-gradient(180deg, rgba(196,154,92,0.04) 0%, var(--bg-card) 100%);
}
.price-card.feat::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 1px; background: var(--warm);
}
.price-pop {
    position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--bg); background: var(--text);
    padding: 5px 16px; border-radius: 100px; white-space: nowrap; z-index: 2;
}
.price-name { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.price-desc {
    font-size: 13px; font-weight: 300; color: var(--text-dim);
    margin-bottom: 24px; line-height: 1.6;
}
.price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.price-currency { font-family: var(--mono); font-size: 16px; color: var(--text-faint); }
.price-val { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; }
.price-card.feat .price-val { color: var(--text); }
.price-per {
    font-size: 12px; letter-spacing: 0.04em;
    color: var(--text-faint); margin-bottom: 0;
}
.price-btn {
    display: block; width: 100%; padding: 13px; text-align: center;
    font-size: 14px; font-weight: 500;
    border-radius: 100px; cursor: pointer; text-decoration: none;
    transition: all 0.3s; margin-top: auto;
}
.price-btn-outline {
    color: var(--text-dim); background: transparent; border: 1px solid var(--border-light);
}
.price-btn-outline:hover { color: var(--text); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }
.price-btn-fill {
    color: var(--bg); background: var(--text); border: 1px solid var(--text);
}
.price-btn-fill:hover { opacity: 0.9; }

.price-feats {
    list-style: none; margin-top: 24px; padding-top: 24px;
    border-top: 1px solid var(--border); margin-bottom: 28px;
}
.price-feat {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 300; color: var(--text-dim); padding: 6px 0;
}
.price-feat .ck { color: var(--text); font-size: 12px; width: 16px; }
.price-feat .na { color: var(--text-faint); width: 16px; text-align: center; }
.price-ent-spacer { flex: 1; }

/* add-on packages */
.addon-label {
    text-align: center; margin-top: 72px; margin-bottom: 28px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-faint);
    display: flex; align-items: center; justify-content: center; gap: 16px;
}
.addon-label::before, .addon-label::after {
    content: ''; width: 40px; height: 1px; background: var(--border);
}
.addon-grid {
    display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border);
    border-radius: 12px; overflow: hidden; max-width: 800px; margin: 0 auto;
}
@media (min-width: 768px) { .addon-grid { grid-template-columns: 1fr 1fr; } }
.addon-card {
    background: var(--bg-card); padding: 32px 36px;
    display: flex; flex-direction: column; transition: all 0.4s;
}
.addon-card:hover { background: var(--bg-card-hover); }
.addon-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.addon-name { font-size: 17px; font-weight: 600; }
.addon-price { display: flex; align-items: baseline; gap: 2px; }
.addon-price .price-currency { font-size: 13px; }
.addon-price .price-val { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; }
.addon-price .addon-period { font-size: 11px; color: var(--text-faint); margin-left: 2px; }
.addon-desc {
    font-size: 13px; font-weight: 300; color: var(--text-dim); line-height: 1.6; margin-bottom: 20px;
}
.addon-feats {
    list-style: none; margin-bottom: 24px; padding: 0;
}
.addon-feat {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 300; color: var(--text-dim); padding: 4px 0;
}
.addon-feat .ck { color: var(--warm); font-size: 11px; width: 14px; }
.addon-btn {
    display: block; width: 100%; padding: 11px; text-align: center;
    font-size: 13px; font-weight: 500;
    border-radius: 100px; cursor: pointer; text-decoration: none;
    transition: all 0.3s; margin-top: auto;
    color: var(--text-dim); background: transparent; border: 1px solid var(--border-light);
}
.addon-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }

/* ═══ CONTACT ═══ */
.contact-split {
    display: grid; grid-template-columns: 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
@media (min-width: 1024px) { .contact-split { grid-template-columns: 5fr 7fr; } }

.contact-left {
    background: var(--bg-card); padding: 48px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
}
.contact-left::after {
    content: ''; position: absolute; bottom: -60px; left: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: var(--warm); filter: blur(120px); opacity: 0.04;
}
.contact-right { padding: 48px; background: var(--bg-elevated); }
.contact-info {
    display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.contact-icon { color: var(--text-dim); width: 20px; text-align: center; }
.contact-icon svg { width: 16px; height: 16px; }
.contact-lbl {
    font-size: 10px; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--text-faint); margin-bottom: 2px;
}
.contact-val { font-size: 14px; font-weight: 300; color: var(--text-dim); }
.contact-val a { color: var(--text-dim); text-decoration: none; transition: color 0.3s; }
.contact-val a:hover { color: var(--text); }

.f-group { margin-bottom: 8px; padding: 8px 0; }
.f-label {
    display: block; font-size: 11px; font-weight: 500;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--text-faint); margin-bottom: 8px;
}
.f-input {
    width: 100%; padding: 12px 0; font-family: var(--font);
    font-size: 14px; font-weight: 300; color: var(--text);
    background: transparent; border: none;
    border-bottom: 1px solid var(--border); outline: none;
    transition: border-color 0.3s;
}
.f-input:focus { border-bottom-color: var(--text-dim); }
.f-input::placeholder { color: var(--text-faint); }
.f-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23555'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0 center;
}
.f-select option { background: var(--bg); color: var(--text); }
textarea.f-input { resize: none; }
.f-row { display: grid; grid-template-columns: 1fr; gap: 0 24px; }
@media (min-width: 640px) { .f-row { grid-template-columns: 1fr 1fr; } }

.f-submit {
    margin-top: 24px; padding: 14px 48px;
    font-size: 14px; font-weight: 500;
    color: var(--bg); background: var(--text);
    border: 1px solid var(--text);
    border-radius: 100px; cursor: pointer; width: 100%;
    transition: all 0.3s;
}
.f-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* ═══ FOOTER ═══ */
.footer {
    padding: 56px 24px 28px; border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .footer { padding: 56px 48px 28px; } }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand {
    font-size: 15px; font-weight: 700;
    color: var(--text); margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.footer-brand svg { width: 18px; height: 18px; opacity: 0.7; }
.footer-tagline {
    font-size: 13px; font-weight: 300; color: var(--text-faint);
    max-width: 280px; line-height: 1.6;
}
.footer-heading {
    font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px;
}
.footer-link {
    display: block; font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,0.25); text-decoration: none;
    padding: 5px 0; transition: color 0.3s;
}
.footer-link:hover { color: rgba(255,255,255,0.6); }
.footer-bottom {
    display: flex; flex-direction: column; gap: 8px;
    align-items: center; justify-content: space-between;
    padding-top: 20px; border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-copy {
    font-size: 12px; color: var(--text-faint); opacity: 0.5;
}

/* ═══ REVEAL ═══ */
.rv {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
                transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: .06s; }
.rv-d2 { transition-delay: .12s; }
.rv-d3 { transition-delay: .18s; }
.rv-d4 { transition-delay: .24s; }
.rv-d5 { transition-delay: .30s; }
.rv-d6 { transition-delay: .36s; }

/* ═══ MARQUEE ═══ */
.marquee {
    padding: 16px 0; overflow: hidden;
    border-bottom: 1px solid var(--border);
}
.marquee-track {
    display: flex; white-space: nowrap; width: max-content;
}
.marquee-set {
    display: flex; align-items: center; gap: 40px;
    padding-right: 40px;
    animation: marquee-scroll 25s linear infinite;
}
.marquee-item {
    font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--text-faint);
}
.marquee-dot { color: var(--text-faint); font-size: 8px; opacity: 0.4; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* WordPress admin bar fix */
body.admin-bar .nav {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .nav {
        top: 46px;
    }
}
