/* ================================================================
   Magyar Bence – Személyes portfólió
   v4 — Refined Warm Dark (szétbontott verzió)
   Palette: warm slate base · champagne gold accent · soft ivory text
   Typography: Cormorant Garamond (display) + Outfit (body)
   ================================================================ */

/* ═══════ CUSTOM PROPERTIES ═══════ */

:root {
    --bg-deep:       #1a1d23;
    --bg-base:       #1f232b;
    --bg-elevated:   #262b34;
    --bg-card:       #2c3240;
    --bg-glass:      rgba(44, 50, 64, 0.5);
    --border:        rgba(255, 255, 255, 0.06);
    --border-hover:  rgba(255, 255, 255, 0.13);

    --text-primary:  #e8e4df;
    --text-secondary:#9da3ae;
    --text-muted:    #626a78;

    --accent:        #c9a96e;
    --accent-light:  #dfc08a;
    --accent-soft:   rgba(201, 169, 110, 0.09);
    --accent-glow:   rgba(201, 169, 110, 0.18);
    --success:       #6bcf7f;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Outfit', system-ui, sans-serif;

    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
}

/* ═══════ RESET ═══════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-deep);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* page load fade */
body.is-loading { opacity: 0; }
body.is-ready { opacity: 1; transition: opacity 0.6s ease; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--bg-deep); }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ═══════ GRAIN OVERLAY ═══════ */

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.022'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 10000;
}

/* ═══════ SCROLL PROGRESS BAR ═══════ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    z-index: 110;
    transition: width 0.1s linear;
    will-change: width;
}

/* ═══════ SCROLLBAR ═══════ */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ═══════ NAVIGATION ═══════ */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}

.nav.is-scrolled {
    padding: 0.7rem 2rem;
    background: rgba(26, 29, 35, 0.9);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    box-shadow: 0 1px 0 var(--border);
}

@supports not (backdrop-filter: blur(1px)) {
    .nav.is-scrolled { background: rgba(26, 29, 35, 0.97); }
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent);
    transition: opacity 0.3s;
}

.nav__logo:hover { opacity: 0.8; }

.nav__links { display: flex; gap: 2.25rem; list-style: none; }

.nav__link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
    padding: 0.25rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s var(--ease-out), left 0.4s var(--ease-out);
}

.nav__link:hover,
.nav__link.is-active { color: var(--text-primary); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; left: 0; }

/* burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 102;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav__burger span {
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 101;
    background: rgba(26, 29, 35, 0.97);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}

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

.mobile-overlay a {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-overlay a:hover { color: var(--accent); }

/* ═══════ HERO ═══════ */

.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 5rem;
}

.hero__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

.hero__blob--gold {
    top: -12%;
    right: -3%;
    width: 55vw;
    height: 55vw;
    max-width: 650px;
    max-height: 650px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
    opacity: 0.35;
    animation: drift-a 14s ease-in-out infinite alternate;
}

.hero__blob--green {
    bottom: -8%;
    left: -6%;
    width: 38vw;
    height: 38vw;
    max-width: 450px;
    max-height: 450px;
    background: radial-gradient(circle, rgba(107,207,127,0.06) 0%, transparent 65%);
    animation: drift-b 18s ease-in-out 2s infinite alternate;
}

@keyframes drift-a {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(12px, -18px) scale(1.06); }
}

@keyframes drift-b {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(-10px, 14px) scale(1.08); }
}

.hero__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}

.hero__deco::before {
    content: '';
    position: absolute;
    top: 18%;
    right: 12%;
    width: 1px;
    height: 280px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.hero__deco::after {
    content: '';
    position: absolute;
    top: calc(18% + 280px);
    right: 12%;
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.hero__inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 5rem;
    align-items: center;
}

.hero__content { animation: reveal-up 0.9s var(--ease-out) 0.3s both; }

@keyframes reveal-up {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: var(--accent-soft);
    border: 1px solid rgba(201,169,110,0.16);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(0.8); }
}

.hero__name {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

.hero__name em {
    font-style: italic;
    color: var(--accent);
}

.hero__tagline {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── buttons ─── */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.8rem 1.7rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
    min-height: 44px;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

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

.btn--accent:hover {
    background: var(--accent-light);
    box-shadow: 0 8px 32px rgba(201,169,110,0.22);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-hover);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}

/* ─── portrait ─── */

.hero__portrait {
    animation: reveal-up 0.9s var(--ease-out) 0.55s both;
    display: flex;
    justify-content: center;
}

.portrait {
    width: 280px;
    height: 350px;
    border-radius: var(--radius-lg);
    position: relative;
}

.portrait::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-lg) + 2px);
    background: conic-gradient(
        from 0deg,
        var(--accent),
        transparent 25%,
        transparent 50%,
        rgba(107,207,127,0.4) 75%,
        var(--accent) 100%
    );
    z-index: 0;
    opacity: 0.5;
    animation: border-spin 8s linear infinite;
}

@keyframes border-spin {
    to { transform: rotate(360deg); }
}

.portrait::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-lg) + 1px);
    background: var(--bg-deep);
    z-index: 0;
}

.portrait__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-elevated);
}

.portrait__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    gap: 0.6rem;
    background: linear-gradient(145deg, var(--bg-elevated), var(--bg-card));
}

.portrait__placeholder svg { width: 44px; height: 44px; opacity: 0.3; }
.portrait__placeholder span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ═══════ SECTIONS — shared ═══════ */

.section {
    padding: 7rem 2rem;
    position: relative;
}

.section--alt { background: var(--bg-base); }

.section__inner {
    max-width: 1080px;
    margin: 0 auto;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.section__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.section__desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    max-width: 580px;
}

.section__divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-bottom: 2.5rem;
}

/* scroll reveal */
.sr {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.sr.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════ ABOUT ═══════ */

.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    margin-top: 2.5rem;
    align-items: start;
}

.about__prose p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.about__prose p:last-child { margin-bottom: 0; }
.about__prose strong { color: var(--text-primary); font-weight: 500; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.stat {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: border-color 0.35s, transform 0.4s var(--ease-spring);
}

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

.stat__number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat__label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ═══════ TIMELINE ═══════ */

.timeline {
    margin-top: 2.5rem;
    position: relative;
    padding-left: 2.75rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), var(--border) 70%, transparent);
}

.tl-item { position: relative; padding-bottom: 3rem; }
.tl-item:last-child { padding-bottom: 0; }

.tl-dot {
    position: absolute;
    left: -2.75rem;
    top: 6px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 2px solid var(--accent);
    z-index: 1;
    transition: box-shadow 0.3s;
}

.tl-item--now .tl-dot {
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft), 0 0 14px var(--accent-glow);
}

.tl-date {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}

.tl-role {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.15rem;
}

.tl-company {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.65rem;
}

.tl-desc {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.8;
    max-width: 620px;
    font-weight: 300;
}

/* ═══════ STRENGTHS ═══════ */

.strengths__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.strength {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.strength::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent 80%);
    opacity: 0;
    transition: opacity 0.4s;
}

.strength:hover {
    border-color: rgba(201,169,110,0.22);
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(0,0,0,0.22);
}

.strength:hover::after { opacity: 1; }

.strength__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.strength__icon svg { width: 22px; height: 22px; }

.strength h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
}

.strength p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
    font-weight: 300;
}

/* ═══════ QUALIFICATIONS ═══════ */

.quals__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.qual {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.35rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color 0.35s, transform 0.35s var(--ease-out);
}

.qual:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

.qual__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--accent);
}

.qual__icon svg { width: 18px; height: 18px; }
.qual h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.1rem; }
.qual__place { font-size: 0.8rem; color: var(--text-secondary); }
.qual__year { font-size: 0.75rem; color: var(--text-muted); }

/* ═══════ QUOTE ═══════ */

.quote-section {
    padding: 4rem 2rem;
    background: var(--bg-deep);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-base), var(--bg-deep) 30%, var(--bg-deep) 70%, var(--bg-deep));
}

.quote__inner {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
}

.quote__mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--accent);
    line-height: 1;
    opacity: 0.35;
    margin-bottom: -0.5rem;
}

.quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 500;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════ CONTACT CTA ═══════ */

.cta {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    background: radial-gradient(ellipse, var(--accent-glow), transparent 70%);
    opacity: 0.2;
    pointer-events: none;
}

.cta > * { position: relative; }
.cta .section__desc { margin: 0 auto 2.5rem; }

.cta__links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta__link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-sm);
    background: var(--bg-deep);
    border: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.35s var(--ease-out);
    min-height: 44px;
}

.cta__link svg { width: 17px; height: 17px; flex-shrink: 0; }

.cta__link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

/* ═══════ BACK TO TOP ═══════ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--accent);
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s, visibility 0.35s, transform 0.35s var(--ease-out),
                background 0.3s, border-color 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--bg-deep);
    border-color: var(--accent);
}

.back-to-top svg { width: 18px; height: 18px; }

/* ═══════ FOOTER ═══════ */

.footer {
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

/* ═══════ TIMELINE TAGS ═══════ */

.tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
    list-style: none;
}

.tl-tags li {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(201, 169, 110, 0.12);
}

/* ═══════ SEEKING SECTION ═══════ */

.seeking__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    margin-top: 2.5rem;
    align-items: start;
}

.seeking__prose p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.seeking__prose strong { color: var(--text-primary); font-weight: 500; }

.seeking__list {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding: 0;
}

.seeking__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.seeking__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

.seeking__list li strong { color: var(--text-primary); font-weight: 500; }

.seeking__card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.seeking__card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent 80%);
}

.seeking__card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.seeking__card-icon svg { width: 22px; height: 22px; }

.seeking__card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.seeking__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.seeking__tags span {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-out);
}

.seeking__tags span:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ═══════ FAQ ═══════ */

.faq__list {
    margin-top: 2.5rem;
    max-width: 780px;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color 0.35s;
}

.faq__item[open] {
    border-color: rgba(201, 169, 110, 0.22);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    background: var(--bg-glass);
    transition: background 0.3s;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question:hover {
    background: var(--accent-soft);
}

.faq__question h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.faq__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent);
    transition: transform 0.35s var(--ease-out);
}

.faq__item[open] .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    padding: 0 1.5rem 1.5rem;
    background: var(--bg-glass);
}

.faq__answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

.faq__answer a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ═══════ FOOTER SEO LINE ═══════ */

.footer__seo {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.6;
    margin-top: 0.35rem;
}

/* ═══════ RESPONSIVE ═══════ */

@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .hero__portrait { order: -1; }
    .portrait { width: 230px; height: 290px; }
    .hero__tagline { margin-inline: auto; }
    .hero__actions { justify-content: center; }
    .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .seeking__grid { grid-template-columns: 1fr; gap: 2rem; }
    .strengths__grid { grid-template-columns: 1fr; }
    .nav__links { display: none; }
    .nav__burger { display: flex; }
}

@media (max-width: 600px) {
    .section { padding: 5rem 1.25rem; }
    .hero { padding: 6rem 1.25rem 3rem; }
    .hero__name { font-size: 2.4rem; }
    .stats { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .stat { padding: 1.15rem; }
    .stat__number { font-size: 1.75rem; }
    .quals__grid { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .cta__links { flex-direction: column; align-items: center; }
    .cta__link { width: 100%; max-width: 300px; justify-content: center; }
    .cta { padding: 2rem 1.25rem; border-radius: var(--radius-lg); }
    .back-to-top { bottom: 1.25rem; right: 1.25rem; }
    .quote-section { padding: 3rem 1.25rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .portrait::before { animation: none; opacity: 0.3; }
}

/* ── Print ── */
@media print {
    body::after, .nav, .mobile-overlay, .hero__ambient, .hero__deco,
    .scroll-progress, .back-to-top, .portrait::before { display: none !important; }
    body { background: #fff; color: #222; font-size: 11pt; opacity: 1 !important; }
    .section, .hero { padding: 1.5rem 0; }
    .hero { min-height: auto; }
    .sr { opacity: 1 !important; transform: none !important; }
    a[href^="tel:"]::after { content: " (" attr(href) ")"; }
    a[href^="mailto:"]::after { content: " (" attr(href) ")"; }
}
