/* ── Home Page v3 (Mobile First) ─────────────────────────── */

/* ═══ HERO — dark, gold glow, cursor-reactive ═══════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--clr-bg);
}
@media (min-width: 768px)  { .hero { padding-top: 150px; } }

.hero__bg { position: absolute; inset: -15% -10% auto -10%; height: 130%; pointer-events: none; z-index: 0; }
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero__glow--1 {
    top: -10%; right: -8%;
    width: clamp(320px, 55vw, 760px); height: clamp(320px, 55vw, 760px);
    background: radial-gradient(circle, rgba(201,168,108,0.14) 0%, transparent 70%);
}
.hero__glow--2 {
    bottom: 5%; left: -12%;
    width: clamp(220px, 38vw, 520px); height: clamp(220px, 38vw, 520px);
    background: radial-gradient(circle, rgba(201,168,108,0.07) 0%, transparent 70%);
}
.hero__cursor-glow { position: absolute; inset: 0; z-index: 1; pointer-events: none; transition: background 0.25s ease-out; }
.hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(243,240,231,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(243,240,231,0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, black 10%, transparent 100%);
}

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

.hero__headline {
    font-family: var(--font-heading);
    font-variation-settings: 'opsz' 144;
    font-size: clamp(36px, 6.2vw, 72px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--clr-text);
    margin: 16px 0 26px;
}

.hero__sub {
    font-size: clamp(15.5px, 1.3vw, 18px);
    color: var(--clr-text-light);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 38px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ═══ PERCEPTION TOGGLE ══════════════════════════════════════ */
.toggle-block { margin-top: 64px; }
.toggle-switch {
    display: inline-flex; align-items: center; padding: 5px;
    border: 1px solid var(--clr-border-strong); border-radius: var(--radius-pill);
    background: var(--clr-card); margin-bottom: 28px;
}
.toggle-switch__pill { position: relative; display: flex; }
.toggle-thumb {
    position: absolute; top: 0; left: 0; height: 100%; border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #E3C688, #C9A86C);
    transition: transform 0.5s var(--ease-spring), width 0.5s var(--ease-spring);
    z-index: 0;
}
.toggle-switch button {
    position: relative; z-index: 1;
    padding: 10px 20px; border-radius: var(--radius-pill); font-size: 12.5px; font-weight: 600;
    color: var(--clr-text-muted); transition: color 0.35s var(--ease-out);
    background: none; border: none; cursor: pointer; font-family: inherit;
}
.toggle-switch button.is-active { color: var(--clr-bg); }

.compare { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--clr-border-strong); max-width: 640px; background: var(--clr-card); }
.compare__frame { aspect-ratio: 16/10; position: relative; }
.compare__state {
    position: absolute; inset: 0; padding: clamp(20px, 3vw, 32px); display: flex; flex-direction: column;
    opacity: 0; transform: scale(0.98); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); pointer-events: none;
}
.compare__state.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }

.mock-a { background: linear-gradient(160deg, #1a1610, #0e0b07); }
.mock-a__bar { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.mock-a__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clr-text-muted); opacity: 0.5; }
.mock-a__handle { font-size: 11px; color: var(--clr-text-muted); margin-left: 4px; }
.mock-a__bio { font-family: var(--font-heading); font-style: italic; font-weight: 500; font-size: clamp(16px, 2vw, 20px); color: var(--clr-text-light); margin-bottom: 14px; }
.mock-a__links { display: flex; flex-direction: column; gap: 8px; max-width: 280px; }
.mock-a__links span { font-size: 11.5px; padding: 9px 14px; border: 1px dashed var(--clr-border-strong); border-radius: var(--radius-pill); color: var(--clr-text-muted); opacity: 0.85; }
.mock-a__note { margin-top: auto; font-size: 11px; color: var(--clr-text-muted); display: flex; align-items: center; gap: 8px; }
.mock-a__note::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #D9534F; }

.mock-b { background: linear-gradient(160deg, #1c1710, #100d09); }
.mock-b__nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mock-b__brand { font-family: var(--font-heading); font-weight: 600; font-size: 13px; }
.mock-b__cta { font-size: 10px; padding: 6px 14px; border-radius: var(--radius-pill); background: var(--clr-accent); color: var(--clr-bg); font-weight: 700; }
.mock-b__media { aspect-ratio: 16/8; border-radius: 10px; overflow: hidden; margin-bottom: 16px; border: 1px solid var(--clr-border); }
.mock-b__media img { width: 100%; height: 100%; object-fit: cover; }
.mock-b__h { font-family: var(--font-heading); font-weight: 600; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.15; letter-spacing: -0.01em; max-width: 14ch; margin-bottom: 12px; }
.mock-b__price { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--clr-accent); margin-bottom: auto; }
.mock-b__badge { margin-top: auto; display: flex; align-items: center; gap: 10px; }
.mock-b__stars { color: var(--clr-accent); font-size: 12px; letter-spacing: 2px; }
.mock-b__quote { font-size: 11px; color: var(--clr-text-muted); }

.toggle-caption { margin-top: 20px; font-size: 13px; color: var(--clr-text-muted); max-width: 560px; }
.toggle-caption strong { color: var(--clr-text-light); font-weight: 600; }

/* ═══ OUTCOME TICKER ══════════════════════════════════════════ */
.outcome-band { padding-block: 26px; border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border); overflow: hidden; position: relative; }
.outcome-band::before, .outcome-band::after { content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none; }
.outcome-band::before { left: 0; background: linear-gradient(90deg, var(--clr-bg), transparent); }
.outcome-band::after  { right: 0; background: linear-gradient(-90deg, var(--clr-bg), transparent); }
.outcome-track { display: flex; gap: 14px; width: max-content; animation: brajola-outcome-scroll 32s linear infinite; }
.outcome-band:hover .outcome-track { animation-play-state: paused; }
@keyframes brajola-outcome-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.outcome-tag {
    padding: 11px 22px; border: 1px solid var(--clr-border-strong); border-radius: var(--radius-pill);
    font-size: 13px; color: var(--clr-text-light);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    white-space: nowrap;
}

/* ═══ TWO PATHS ═══════════════════════════════════════════════ */
.paths-head { max-width: 600px; margin-bottom: 48px; }
.paths-grid { display: grid; gap: 1px; background: var(--clr-border); border: 1px solid var(--clr-border); border-radius: var(--radius); overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 800px) { .paths-grid { grid-template-columns: 1fr 1fr; } }
.path-card { background: var(--clr-card); padding: clamp(32px, 4vw, 48px); display: flex; flex-direction: column; gap: 16px; transition: background 0.4s var(--ease-out); }
.path-card:hover { background: var(--clr-card-hover); }
.path-card__q {
    font-family: var(--font-heading); font-style: italic; font-weight: 500; font-size: 15.5px; line-height: 1.55;
    color: var(--clr-text-light); padding-left: 16px; border-left: 2px solid var(--clr-accent-mid);
}
.path-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: clamp(21px, 2.4vw, 26px); letter-spacing: -0.01em; margin-top: 4px; }
.path-card p { font-size: 14px; color: var(--clr-text-light); line-height: 1.75; }
.path-card .btn { align-self: flex-start; margin-top: 6px; padding: 12px 22px; font-size: 13px; }

/* ═══ BRIDGE (Strategy ∩ Presence = Perception) ══════════════ */
.bridge { display: flex; flex-direction: column; align-items: center; gap: 8px; margin: 56px 0 0; }
.bridge-visual { position: relative; width: min(420px, 90vw); height: 180px; display: flex; align-items: center; justify-content: center; }
.bridge-circle {
    position: absolute; width: 200px; height: 200px; border-radius: 50%; border: 1px solid var(--clr-border-strong);
    display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.015);
}
.bridge-circle--l { left: 0; }
.bridge-circle--r { right: 0; }
.bridge-circle span { font-family: var(--font-heading); font-style: italic; font-weight: 500; font-size: 15px; color: var(--clr-text-light); }
.bridge-center { position: relative; z-index: 2; text-align: center; }
.bridge-center span { font-family: var(--font-heading); font-style: italic; font-weight: 600; font-size: 18px; color: var(--clr-accent); }
.bridge__caption { max-width: 480px; text-align: center; font-size: 14px; color: var(--clr-text-light); line-height: 1.8; }

/* ═══ WORK SECTION HEADER ════════════════════════════════════ */
.home-work__header { display: flex; flex-direction: column; gap: 20px; margin-bottom: clamp(28px, 4vw, 52px); }
@media (min-width: 768px) { .home-work__header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }

/* ═══ WORK CARD — monogram thumb ═════════════════════════════ */
.work-card__thumb span.work-card__mono {
    font-family: var(--font-heading); font-style: italic; font-weight: 500;
    font-size: 44px; color: var(--clr-accent); opacity: 0.6;
}

/* ═══ FOUNDER STRIP ═══════════════════════════════════════════ */
.founder-strip {
    display: flex; align-items: center; gap: 20px; margin-top: 32px;
    padding: 28px clamp(24px, 4vw, 40px); border: 1px solid var(--clr-border); border-radius: var(--radius);
    background: var(--clr-card); flex-wrap: wrap;
}
.founder-strip__avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, #E3C688, #C9A86C);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 18px; color: var(--clr-bg); flex-shrink: 0;
}
.founder-strip__text { flex: 1; min-width: 200px; }
.founder-strip__text strong { font-size: 14.5px; font-weight: 600; }
.founder-strip__text span { display: block; font-size: 13px; color: var(--clr-text-light); margin-top: 2px; line-height: 1.6; }
.founder-strip .btn { flex-shrink: 0; }

/* ═══ TESTIMONIALS ════════════════════════════════════════════ */
.testi-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
.testi-card { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: clamp(28px, 3.5vw, 36px); display: flex; flex-direction: column; gap: 18px; }
.testi-card__quote { font-family: var(--font-heading); font-style: italic; font-weight: 500; font-size: clamp(16px, 1.8vw, 19px); line-height: 1.6; color: var(--clr-text); }
.testi-card__quote::before { content: '\201C'; color: var(--clr-accent); }
.testi-card__quote::after  { content: '\201D'; color: var(--clr-accent); }
.testi-card__author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--clr-border); }
.testi-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, #E3C688, #C9A86C);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 13px; color: var(--clr-bg); flex-shrink: 0;
    overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-card__author strong { display: block; font-size: 13.5px; font-weight: 600; }
.testi-card__author span { font-size: 12px; color: var(--clr-text-muted); }

/* ═══ EMPTY STATE ═════════════════════════════════════════════ */
.portfolio-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: clamp(60px, 8vw, 120px) 24px;
    color: var(--clr-text-muted);
    font-size: 16px;
    line-height: 1.7;
}
