/* ============================================
   LIFEWCAO — UGC Coach × Agency
   Cream + Black + Coral palette
   ============================================ */

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

:root {
    --bg: #faf7f2;            /* warm cream */
    --bg-2: #f3eee5;          /* slightly darker cream */
    --bg-3: #1a1612;          /* deep warm black */
    --surface: #ffffff;
    --surface-2: #f5f0e8;
    --line: rgba(26, 22, 18, 0.08);
    --line-2: rgba(26, 22, 18, 0.18);
    --text: #1a1612;
    --text-2: #5a544a;
    --text-3: #8a8378;
    --accent: #ff5b35;        /* electric coral */
    --accent-2: #ff7e5a;
    --warm: #d97a3a;
    --green: #2d8659;
    --sans: 'Inter', -apple-system, sans-serif;
    --serif: 'Noto Serif TC', serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--accent); font-weight: 500; }

/* ============================================
   LOADER
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

.loader.hidden { opacity: 0; visibility: hidden; }

.loader-inner { text-align: center; }

.loader-text {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--bg-2);
    margin-bottom: 16px;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.loader-bar span {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    animation: loadBar 1.4s var(--ease) forwards;
}

@keyframes loadBar { to { width: 100%; } }

/* ============================================
   NAV
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 32px;
    transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}

.nav.scrolled {
    padding: 14px 32px;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 15px;
}

.nav-logo em { font-style: normal; color: var(--accent); margin: 0 4px; }

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--text);
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 13px;
    color: var(--text-2);
}

.nav-links a {
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.nav-links a::before {
    content: attr(data-num);
    font-family: var(--mono);
    font-size: 9px;
    color: var(--text-3);
    margin-right: 6px;
    vertical-align: 1px;
}

.nav-links a:hover { color: var(--accent); }

.nav-cta {
    padding: 10px 18px;
    background: var(--text);
    color: var(--bg);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line-2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-toggle span {
    width: 16px;
    height: 1px;
    background: var(--text);
}

@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 32px 80px;
    overflow: hidden;
    background: var(--bg-3);
    color: var(--bg);
}

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

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.7;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 22, 18, 0.4) 0%, rgba(26, 22, 18, 0.7) 50%, rgba(26, 22, 18, 0.95) 100%),
        linear-gradient(90deg, rgba(26, 22, 18, 0.5) 0%, transparent 50%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(48px, 9vw, 130px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 40px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
    animation: slideUp 0.8s var(--ease-out) both;
}

.hero-title .line-1 { animation-delay: 0.1s; color: var(--bg); }
.hero-title .line-2 { animation-delay: 0.25s; color: var(--bg); }
.hero-title .line-3 { animation-delay: 0.4s; }
.hero-title .line-3 em { color: var(--accent-2); }

@keyframes slideUp {
    from { transform: translateY(110%); }
    to { transform: translateY(0); }
}

.hero-sub {
    max-width: 580px;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    animation: fadeIn 0.8s 0.55s var(--ease-out) both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-sub em { color: var(--accent-2); }

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeIn 0.8s 0.7s var(--ease-out) both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg);
    color: var(--bg-3);
    border-color: var(--bg);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--bg);
    border-color: var(--bg);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--bg);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--bg);
    background: rgba(255, 255, 255, 0.08);
}

.btn-large {
    padding: 18px 32px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 800px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeIn 0.8s 0.85s var(--ease-out) both;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.meta-num {
    font-family: var(--mono);
    font-size: 26px;
    font-weight: 500;
    color: var(--bg);
    letter-spacing: -0.02em;
}

.meta-num span { font-size: 14px; color: var(--text-3); margin-left: 2px; }

.meta-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    z-index: 2;
    animation: fadeIn 0.8s 1s var(--ease-out) both;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-corner {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
    animation: fadeIn 0.8s 1.2s var(--ease-out) both;
}

@media (max-width: 768px) {
    .hero { padding: 120px 20px 60px; }
    .hero-corner, .hero-scroll { display: none; }
    .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero-cta { flex-direction: column; align-items: flex-start; width: 100%; }
    .btn { width: 100%; justify-content: center; }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 32px;
}

.section-head {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-num {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-num::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--accent);
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.section-sub {
    font-size: 17px;
    color: var(--text-2);
    max-width: 540px;
}

@media (max-width: 768px) {
    .section { padding: 80px 20px; }
    .section-head { margin-bottom: 50px; }
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
}

.about-main p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-2);
    margin-bottom: 24px;
}

.about-lead {
    font-family: var(--serif) !important;
    font-size: 30px !important;
    line-height: 1.4 !important;
    color: var(--text) !important;
    font-weight: 700;
    margin-bottom: 40px !important;
}

.about-main p strong { color: var(--text); font-weight: 600; }

.about-quote {
    margin: 40px 0;
    padding: 32px;
    background: var(--surface-2);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    position: relative;
}

.quote-mark {
    font-family: var(--serif);
    font-size: 60px;
    color: var(--accent);
    line-height: 0.5;
    position: absolute;
    top: 24px;
    left: 20px;
    opacity: 0.5;
}

.about-quote p {
    font-family: var(--serif) !important;
    font-size: 18px !important;
    font-style: italic;
    color: var(--text) !important;
    margin: 0 !important;
    padding-left: 32px;
}

.about-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
}

.about-card-accent {
    background: var(--bg-3);
    color: var(--bg);
    border-color: var(--bg-3);
}

.card-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-card-accent .card-label { color: var(--accent-2); }

.stat-list, .check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.stat-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
}

.stat-num {
    font-family: var(--mono);
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
    min-width: 70px;
}

.stat-num span { font-size: 14px; color: var(--accent); }

.stat-text { font-size: 13px; }

.check-list li {
    font-size: 14px;
    color: var(--text-2);
}

.check-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

.card-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-2);
    font-family: var(--mono);
    font-size: 14px;
    margin-bottom: 8px;
    transition: gap 0.3s var(--ease);
}

.card-email:hover { gap: 14px; }

.card-hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-lead { font-size: 22px !important; }
}

/* ============================================
   BRANDS (marquee)
   ============================================ */
.brands {
    background: var(--bg-3);
    color: var(--bg);
    padding: 120px 0;
    overflow: hidden;
}

.brands-head {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 32px;
}

.brands-head h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 16px 0;
    color: var(--bg);
}

.brands-head p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.brand-track-wrapper {
    margin: 40px 0;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.brand-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.brand-track.reverse { animation-direction: reverse; margin-top: 24px; }

.brand-row {
    display: flex;
    gap: 60px;
    padding: 0 30px;
}

.brand-logo {
    flex-shrink: 0;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--bg);
    white-space: nowrap;
    letter-spacing: -0.01em;
    padding: 12px 0;
    transition: color 0.3s var(--ease);
}

.brand-logo:hover { color: var(--accent); }

.brand-faded { color: rgba(255, 255, 255, 0.4); font-style: italic; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.brands-stats {
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.b-stat {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.b-stat-num {
    font-family: var(--serif);
    font-size: 56px;
    font-weight: 900;
    color: var(--bg);
    letter-spacing: -0.03em;
    line-height: 1;
}

.b-stat-num span { font-size: 24px; color: var(--accent); }

.b-stat-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--accent-2);
    margin: 8px 0;
    text-transform: uppercase;
}

.b-stat-list {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .brands-stats { grid-template-columns: 1fr; gap: 24px; }
    .b-stat-num { font-size: 40px; }
}

/* ============================================
   WORK
   ============================================ */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.work-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.work-card:hover {
    border-color: var(--text);
    transform: translateY(-4px);
}

.work-thumb {
    aspect-ratio: 9 / 16;
    position: relative;
    overflow: hidden;
}

.work-thumb-1 { background: linear-gradient(135deg, #2a1a4a 0%, #5a3a8a 50%, #ff5b35 100%); }
.work-thumb-2 { background: linear-gradient(135deg, #1a3a2a 0%, #2a5a3a 50%, #ff8a5a 100%); }
.work-thumb-3 { background: linear-gradient(135deg, #0a1a3a 0%, #1a2a4a 50%, #d97a3a 100%); }
.work-thumb-4 { background: linear-gradient(135deg, #3a1a4a 0%, #5a2a5a 50%, #ff5b35 100%); }
.work-thumb-5 { background: linear-gradient(135deg, #1a2a3a 0%, #2a4a5a 50%, #ffb86b 100%); }

.work-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--bg);
    letter-spacing: 0.1em;
}

.work-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work-info h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.work-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--text-3);
    margin-bottom: 4px;
}

.work-cat { color: var(--accent); }

.work-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-2);
}

.work-card-cta {
    background: var(--bg-3);
    color: var(--bg);
    display: flex;
    align-items: center;
    border: 1px solid var(--bg-3);
}

.work-card-cta h3 { color: var(--bg); }
.work-card-cta p { color: rgba(255, 255, 255, 0.7); margin: 16px 0 24px; }

@media (max-width: 900px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .work-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 36px 32px 32px;
    position: relative;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.service-card-accent {
    background: var(--bg-3);
    color: var(--bg);
    border-color: var(--bg-3);
}

.service-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 10px;
    background: rgba(255, 91, 53, 0.12);
    color: var(--accent);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.service-card-accent .service-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-2);
}

.service-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.2em;
}

.service-card h3 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.service-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-2);
}

.service-card-accent p { color: rgba(255, 255, 255, 0.7); }

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    margin-top: 8px;
}

.service-card-accent .service-list { border-color: rgba(255, 255, 255, 0.1); }

.service-list li {
    font-size: 13px;
    color: var(--text-2);
}

.service-card-accent .service-list li { color: rgba(255, 255, 255, 0.7); }

.service-link {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    transition: gap 0.3s var(--ease);
    display: inline-flex;
    gap: 4px;
}

.service-link:hover { gap: 10px; }

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   AGENCY
   ============================================ */
.agency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.agency-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-2);
    margin: 32px 0 40px;
}

.agency-lead strong { color: var(--text); }

.agency-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.agency-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.agency-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.agency-list strong {
    display: block;
    font-size: 16px;
    color: var(--text);
    margin-bottom: 4px;
}

.agency-list p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-2);
}

.agency-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 32px;
    position: sticky;
    top: 100px;
}

.agency-form h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-sub {
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-row label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-3);
}

.form-row input,
.form-row select,
.form-row textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line-2);
    padding: 10px 0;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s var(--ease);
    resize: vertical;
}

.form-row select { cursor: pointer; }

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

.form-status {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    min-height: 18px;
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .agency-grid { grid-template-columns: 1fr; gap: 50px; }
    .agency-form { position: static; }
}

/* ============================================
   FOR BRANDS
   ============================================ */
.for-brands {
    background: var(--bg-3);
    color: var(--bg);
    max-width: none;
    padding: 140px 32px;
    text-align: center;
}

.brands-pitch-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.brands-pitch-inner .section-num { justify-content: center; }
.brands-pitch-inner .section-num::after { display: none; }

.brands-pitch-inner .section-title {
    margin: 24px 0 24px;
    color: var(--bg);
}

.brands-pitch-sub {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto 60px;
}

.brands-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
    text-align: left;
}

.process-step {
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.step-num {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent-2);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.process-step h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bg);
}

.process-step p {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
    .brands-process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .brands-process { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    position: relative;
    max-width: none;
    padding: 140px 32px;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 91, 53, 0.06) 0%, transparent 60%);
}

.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.contact-lead {
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.4;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--accent);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--accent);
    margin-bottom: 40px;
    transition: all 0.3s var(--ease);
}

.contact-email:hover { gap: 20px; }

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: all 0.3s var(--ease);
}

.contact-link:hover {
    border-color: var(--accent);
    background: rgba(255, 91, 53, 0.04);
}

.link-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.15em;
}

.link-handle {
    font-size: 15px;
    color: var(--text);
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 32px;
}

.contact-form h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--line);
    padding: 60px 32px;
    background: var(--bg);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-big {
    font-family: var(--serif);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--text);
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-x {
    color: var(--accent);
    font-size: 0.6em;
}

.footer-meta {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .footer-meta { flex-direction: column; gap: 8px; align-items: center; text-align: center; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu a {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
}
