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

body {
    background: #fff;
    color: #141414;
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* ── Header ── */

.ac-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
}

.ac-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.ac-brand-logo {
    height: 44px;
    width: auto;
    display: block;
    margin-left: 0;
}

.ac-avatar {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: #e50914;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.ac-avatar:hover { opacity: 0.8; }

/* ── Layout ── */

.ac-layout {
    display: flex;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 4%;
    min-height: calc(100vh - 60px);
}

/* ── Sidebar ── */

.ac-sidebar {
    width: 220px;
    flex-shrink: 0;
    padding: 2.25rem 1rem 2.25rem 0;
    border-right: 1px solid #e6e6e6;
}

.sidebar-back {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: rgba(0,0,0,0.4);
    text-decoration: none;
    margin-bottom: 2rem;
    padding: 0 0.75rem;
    transition: color 0.15s;
}

.sidebar-back:hover { color: #141414; }

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
    color: rgba(0,0,0,0.4);
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.15s;
}

.sidebar-link:hover { color: rgba(0,0,0,0.75); }

.sidebar-link.active {
    color: #141414;
    font-weight: 600;
}

.sidebar-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ── Main ── */

.ac-main {
    flex: 1;
    padding: 2.5rem 0 3rem 3rem;
    max-width: 640px;
}

.ac-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #141414;
    margin-bottom: 0.2rem;
}

.ac-subtitle {
    font-size: 0.9rem;
    color: #737373;
    margin-bottom: 1.5rem;
}

.ac-badge {
    display: inline-block;
    background: linear-gradient(90deg, #6366f1 0%, #e11d48 100%);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.38rem 1rem;
    border-radius: 20px;
    margin-bottom: 2.25rem;
    letter-spacing: 0.02em;
}

/* ── Blocks ── */

.ac-block {
    margin-bottom: 2.5rem;
}

.ac-section-label {
    font-size: 0.68rem;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.25rem;
    padding-bottom: 0.5rem;
}

/* ── Info Block ── */

.info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.1rem 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 0;
}

.info-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #141414;
    margin-bottom: 0.3rem;
}

.info-detail {
    font-size: 0.8125rem;
    color: #737373;
    margin-top: 0.2rem;
}

.ac-action-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.9rem 0;
    font-size: 0.875rem;
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    border-bottom: 1px solid #e6e6e6;
    transition: color 0.15s;
}

.ac-action-link:hover { color: #141414; }

/* ── Form ── */

.ac-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-input {
    width: 100%;
    border: 1.5px solid #e6e6e6;
    border-radius: 6px;
    outline: none;
    font-size: 0.9375rem;
    color: #141414;
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    padding: 0.7rem 0.875rem;
    transition: border-color 0.2s, background 0.2s;
}

.form-input:focus {
    border-color: #999;
    background: #fafafa;
}

.form-input::placeholder { color: #aaa; }

.form-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.form-footer {
    padding-top: 0.5rem;
}

.submit-btn {
    width: 100%;
    background: #e50914;
    color: #fff;
    border: none;
    padding: 0.8rem 1.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.submit-btn:hover { opacity: 0.85; }

/* ── Quick Links ── */

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e6e6e6;
    text-decoration: none;
    color: rgba(0,0,0,0.5);
    transition: color 0.15s;
}

.quick-link:first-of-type {
    border-top: 1px solid #e6e6e6;
}

.quick-link:hover { color: #141414; }

.ql-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #737373;
}

.ql-body { flex: 1; }

.ql-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #141414;
}

.ql-sub {
    font-size: 0.78rem;
    color: #737373;
    margin-top: 0.15rem;
}

.ql-chevron {
    width: 16px;
    height: 16px;
    color: #ccc;
    flex-shrink: 0;
}

/* ── Headshot split ── */

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 2.5rem;
}

.about-headshot {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: 1px solid #e6e6e6;
}

.about-split-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-split-bio {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.8;
    margin-top: 0.25rem;
}

/* ── About Page ── */

.about-bio p {
    font-size: 0.9375rem;
    color: #333;
    line-height: 1.85;
    border-top: 1px solid #e6e6e6;
    padding: 0.9rem 0;
}

.about-stack {
    border-top: 1px solid #e6e6e6;
}

.stack-row {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e6e6e6;
    font-size: 0.875rem;
}

.stack-label {
    width: 110px;
    flex-shrink: 0;
    font-weight: 600;
    color: #141414;
}

.stack-value {
    color: #737373;
}

.about-services {
    border-top: 1px solid #e6e6e6;
}

.service-item {
    padding: 0.875rem 0;
    border-bottom: 1px solid #e6e6e6;
}

.service-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #141414;
    margin-bottom: 0.2rem;
}

.service-desc {
    font-size: 0.8125rem;
    color: #737373;
}

.about-status {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.status-text {
    font-size: 0.875rem;
    color: #141414;
    font-weight: 500;
}

/* ── Footer ── */

.ac-footer {
    border-top: 1px solid #e6e6e6;
    padding: 1.5rem 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ac-footer-copy {
    font-size: 0.8rem;
    color: #737373;
}

.ac-footer-links {
    display: flex;
    gap: 1.5rem;
}

.ac-footer-links a {
    font-size: 0.8rem;
    color: #737373;
    text-decoration: none;
    transition: color 0.15s;
}

.ac-footer-links a:hover { color: #141414; }

/* ── Scroll animations ── */

.fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hamburger ── */

.ac-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.ac-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #141414;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ac-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ac-hamburger.open span:nth-child(2) { opacity: 0; }
.ac-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav overlay ── */

.ac-mobile-nav {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.ac-mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.ac-mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.ac-mobile-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #141414;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.ac-mobile-nav a:hover,
.ac-mobile-nav a.active { color: #e50914; }

.ac-mobile-close {
    position: absolute;
    top: 1.1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #141414;
    line-height: 1;
    padding: 0.4rem;
}

/* ── Responsive ── */

@media (max-width: 700px) {
    body { overflow-x: hidden; }
    .ac-sidebar { display: none; }
    .ac-main { padding: 2rem 0; }
    .ac-layout { padding: 0 1.5rem; }
    .ac-header { padding: 0 1rem; }
    .ac-avatar { display: none; }
    .ac-hamburger { display: flex; }
    .ac-brand-logo { height: 36px; }

    /* Stack headshot below bio on mobile */
    .about-split {
        grid-template-columns: 1fr;
    }
    .about-headshot { min-height: 220px; }

    /* Footer wrap */
    .ac-footer { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .ac-footer-links { flex-wrap: wrap; gap: 0.75rem 1rem; }
}
