/* ============================================================
   Sebastian Oczachowski — Forestis-Inspired Design
   Fonts  : Cormorant Garamond (serif) · Raleway (sans)
   Palette: Cream #f2f1eb · Stone #70716c · Charcoal #2b333f
            Border #d0d2c7 · Dark #1a1a17
   ============================================================ */

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

:root {
    --cream:    #f2f1eb;
    --cream-dk: #eae8e1;
    --stone:    #70716c;
    --stone-lt: #a8a89f;
    --border:   #d0d2c7;
    --dark:     #1a1a17;
    --charcoal: #2b333f;
    --ink:      #2a2a25;
    --white:    #ffffff;
    --accent:   #8a7d6a;    /* warm taupe – replaces gold */

    --ff-serif: 'Cormorant Garamond', 'Georgia', serif;
    --ff-sans:  'Raleway', system-ui, sans-serif;

    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --py: clamp(5rem, 10vw, 9rem);
    --max: 1200px;
    --px: clamp(1.5rem, 5vw, 4rem);
    --ls-label: 0.22em;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--ff-sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--px);
}

.section { padding: var(--py) 0; }
.section--off  { background: var(--cream-dk); }
.section--dark { background: var(--dark); color: var(--cream); }


/* ─── REVEAL ────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal:nth-child(4) { transition-delay: 0.36s; }
.reveal:nth-child(5) { transition-delay: 0.48s; }
.reveal:nth-child(6) { transition-delay: 0.60s; }


/* ─── LABEL ─────────────────────────────────────────────── */
.label {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 0.67rem;
    font-weight: 400;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--stone);
}
.label--light { color: var(--stone-lt); }


/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark);
    color: var(--cream);
    font-family: var(--ff-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border: 1px solid transparent;
    transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.25s var(--ease);
}
.btn-cta:hover {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--cream);
    font-family: var(--ff-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border: 1px solid rgba(242,241,235,0.35);
    transition: border-color 0.3s, transform 0.25s var(--ease);
}
.btn-outline:hover {
    border-color: rgba(242,241,235,0.8);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--stone-lt);
    font-family: var(--ff-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border: 1px solid rgba(242,241,235,0.15);
    transition: color 0.3s, border-color 0.3s, transform 0.25s var(--ease);
}
.btn-ghost:hover {
    color: var(--cream);
    border-color: rgba(242,241,235,0.35);
    transform: translateY(-2px);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Photo */
.hero__photo {
    position: absolute;
    inset: 0;
    background-color: var(--charcoal);
    background-image: url('../IMG_0231.png');
    background-size: cover;
    background-position: center top;
    will-change: transform;
}

/* Gradient shade: transparent top → dark bottom */
.hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0)  0%,
        rgba(0,0,0,0.1)  35%,
        rgba(0,0,0,0.65) 80%,
        rgba(0,0,0,0.82) 100%
    );
    pointer-events: none;
}

/* ── Header bar ── */
.hero__header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem var(--px);
}

.hero__logo {
    font-family: var(--ff-sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242,241,235,0.9);
}

.hero__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero__nav a {
    font-family: var(--ff-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(242,241,235,0.65);
    transition: color 0.25s;
}
.hero__nav a:hover { color: rgba(242,241,235,1); }
.hero__nav svg { display: block; }

.hero__nav-cta {
    color: rgba(242,241,235,0.65) !important;
    border: 1px solid rgba(242,241,235,0.25) !important;
    padding: 0.45rem 1.1rem;
    transition: color 0.25s, border-color 0.25s !important;
}
.hero__nav-cta:hover {
    color: rgba(242,241,235,1) !important;
    border-color: rgba(242,241,235,0.6) !important;
}

/* ── Language switcher ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--cream);
    font-family: var(--ff-sans);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    cursor: pointer;
    opacity: 0.4;
    padding: 0.2rem 0.15rem;
    transition: opacity 0.2s;
    line-height: 1;
}

.lang-btn:hover,
.lang-btn.is-active {
    opacity: 1;
}

.lang-btn.is-active {
    font-weight: 500;
}

.lang-sep {
    color: var(--cream);
    opacity: 0.18;
    font-size: 0.55rem;
    line-height: 1;
    pointer-events: none;
}

/* ── Bottom content ── */
.hero__bottom {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 0 var(--px) clamp(2.5rem, 5vw, 5rem);
    gap: 4rem;
}

.hero__h1 {
    font-family: var(--ff-serif);
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.hero__h1 em {
    font-style: italic;
    font-weight: 300;
    color: rgba(242,241,235,0.7);
}

.hero__aside {
    padding-bottom: 0.5rem;
}

.hero__aside p {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(242,241,235,0.6);
    margin-bottom: 2rem;
    max-width: 360px;
    line-height: 1.8;
}

.hero__aside-actions {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
}

.hero__scroll-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-sans);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(242,241,235,0.4);
    transition: color 0.25s;
}
.hero__scroll-hint:hover { color: rgba(242,241,235,0.8); }

/* Entrance */
.anim-hero {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease) forwards;
}
.hero__h1.anim-hero    { animation-delay: 0.25s; }
.hero__aside.anim-hero { animation-delay: 0.5s; }

@keyframes fadeUp {
    to { opacity: 1; transform: none; }
}

/* Scroll indicator line (right side) */
.hero__scroll-line {
    position: absolute;
    z-index: 10;
    right: var(--px);
    bottom: 0;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(242,241,235,0.4), transparent);
    animation: fadeUp 1.2s var(--ease) 1s forwards;
    opacity: 0;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about__inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
}

.about__label { padding-top: 0.4rem; }

.about__title {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 2rem;
}

.about__body p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--stone);
    margin-bottom: 1.1rem;
    letter-spacing: 0.02em;
}

.about__lead {
    font-size: 1rem !important;
    font-weight: 400 !important;
    color: var(--ink) !important;
}

.about__stats {
    display: flex;
    gap: 3.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.kpi { display: flex; flex-direction: column; }

.kpi__n {
    font-family: var(--ff-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--ink);
    line-height: 1;
}

.kpi__plus {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--stone);
    vertical-align: super;
}

.kpi__l {
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 0.5rem;
}


/* ============================================================
   SECTION HEADER
   ============================================================ */
.section__top { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__top .label { display: block; margin-bottom: 0.75rem; }

.section__title {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.section--dark .section__title { color: var(--cream); }


/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
    display: flex;
    flex-direction: column;
}

.tl-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 0 0.5rem;
    opacity: 0.45;
}

.tl-more__line {
    width: 1px;
    height: 2.5rem;
    background: var(--border);
    margin-bottom: 0.9rem;
}

.tl-more__dots {
    font-family: var(--ff-sans);
    font-size: 1rem;
    letter-spacing: 0.35em;
    color: var(--stone);
    margin-bottom: 0.75rem;
}

.tl-more__hint {
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stone-lt);
}

.tl-item {
    display: grid;
    grid-template-columns: 200px 1px 1fr;
    gap: 0 3rem;
    padding-bottom: 3.5rem;
}
.tl-item:last-child { padding-bottom: 0; }

.tl-item__time {
    text-align: right;
    padding-top: 0.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tl-item__time span {
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--stone);
}

.tl-item__city {
    font-size: 0.68rem !important;
    color: var(--stone-lt) !important;
    letter-spacing: 0.08em !important;
}

/* Vertical line column */
.tl-item__dot {
    position: relative;
    display: flex;
    justify-content: center;
}

.tl-item__dot::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    z-index: 1;
    transition: transform 0.3s var(--ease), background 0.3s;
}

.tl-item__dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--border);
}

.tl-item:last-child .tl-item__dot::after { height: 1rem; }
.tl-item:hover .tl-item__dot::before { transform: translateX(-50%) scale(1.8); }

.tl-item__body { padding-bottom: 0.5rem; }

.tl-item__role {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.tl-item__co {
    font-family: var(--ff-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.tl-logo {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.tl-item__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--stone);
    margin-bottom: 1.1rem;
    line-height: 1.75;
    letter-spacing: 0.02em;
}

.tl-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tl-item__tags span {
    font-family: var(--ff-sans);
    font-size: 0.63rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-lt);
    border: 1px solid var(--border);
    padding: 0.22rem 0.7rem;
    transition: color 0.2s, border-color 0.2s;
}

.tl-item:hover .tl-item__tags span {
    color: var(--accent);
    border-color: var(--accent);
}


/* ============================================================
   TESTIMONIAL CAROUSEL
   ============================================================ */
.testimonial { background: var(--cream-dk); }

/* Wrapper */
.tc {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    user-select: none;
}

/* Track: CSS-grid trick so all slides share the same cell */
.tc__track {
    display: grid;
    min-height: 280px;
}

/* Slides */
.tc__slide {
    grid-area: 1 / 1;
    text-align: center;
    padding: 1rem 0 3rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.tc__slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.tc__slide.is-leaving {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.55s ease,
                transform 0.55s ease;
}

/* Decorative quote mark */
.tc__mark {
    font-family: var(--ff-serif);
    font-size: 7rem;
    line-height: 0.6;
    color: var(--stone-lt);
    opacity: 0.3;
    user-select: none;
    margin-bottom: -0.5rem;
}

/* Quote text */
.tc__slide blockquote {
    font-family: var(--ff-serif);
    font-size: clamp(1.05rem, 2.5vw, 1.45rem);
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}

/* Attribution */
.tc__slide figcaption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.tc__slide figcaption::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--border);
    margin-bottom: 0.75rem;
}

.tc__slide figcaption strong {
    font-family: var(--ff-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
}

.tc__slide figcaption span {
    font-family: var(--ff-sans);
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--stone);
}

/* Footer: arrows + dots */
.tc__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    padding-bottom: 0.5rem;
}

.tc__footer[data-single="true"] {
    display: none;
}

/* Arrow buttons */
.tc__arrow {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--stone);
    transition: color 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.tc__arrow:hover {
    color: var(--ink);
    border-color: var(--stone);
    transform: scale(1.08);
}

/* Dots */
.tc__dots {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.tc__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}

.tc__dot.is-active {
    background: var(--accent);
    transform: scale(1.35);
}

/* Progress bar */
.tc__progress {
    height: 1px;
    background: var(--border);
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 1px;
}

.tc__progress[data-single="true"] {
    display: none;
}

.tc__progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent);
    transition: width linear;
    opacity: 0.6;
}


/* ============================================================
   SKILLS
   ============================================================ */
.skills__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 0;
}

/* Row 1: 3 equal columns */
.skill-col:nth-child(1),
.skill-col:nth-child(2),
.skill-col:nth-child(3) { grid-column: span 2; }

/* Row 2: 2 wider columns */
.skill-col:nth-child(4),
.skill-col:nth-child(5) { grid-column: span 3; }

.skill-col {
    background: var(--cream);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
}
.section--off .skill-col { background: var(--cream-dk); }
.skill-col:hover { background: var(--cream); }

.skill-col__title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--ff-sans);
    font-size: 0.67rem;
    font-weight: 400;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.skill-col__title svg { color: var(--accent); flex-shrink: 0; }

.skill-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.skill-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-list span {
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--ink);
}

.skill-list em {
    font-style: normal;
    font-family: var(--ff-sans);
    font-size: 0.63rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone-lt);
}


/* ─── CERTIFICATES ─────────────────────────────────────── */
.certs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.cert {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: var(--cream-dk);
    padding: 2rem 1.75rem;
    transition: background 0.3s;
}
.cert:hover { background: var(--cream); }

.cert__badge {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.cert__badge img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.cert > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cert strong {
    font-family: var(--ff-serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ink);
}

.cert span {
    font-family: var(--ff-sans);
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--stone);
}

.cert__status {
    display: inline-block;
    margin-top: 0.4rem;
    font-family: var(--ff-sans) !important;
    font-size: 0.63rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone-lt) !important;
    width: fit-content;
}

.cert__status--active { color: var(--accent) !important; }


/* ============================================================
   QUOTE
   ============================================================ */
.quote-section { background: var(--cream-dk); }

.pull-quote {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.pull-quote blockquote {
    font-family: var(--ff-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.85rem);
    font-style: italic;
    font-weight: 300;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.pull-quote blockquote::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 2rem;
}

.pull-quote figcaption {
    font-family: var(--ff-sans);
    font-size: 0.67rem;
    font-weight: 400;
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--stone);
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(4rem, 8vw, 9rem);
    align-items: center;
}

.contact__text .label { margin-bottom: 1rem; }

.contact__title {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 1.25rem;
}

.contact__text p {
    font-family: var(--ff-sans);
    font-size: 0.83rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: rgba(208,210,199,0.55);
    line-height: 1.8;
}

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


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #111110;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--ff-sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(242,241,235,0.25);
}

.footer__inner a {
    color: rgba(242,241,235,0.25);
    transition: color 0.2s;
}
.footer__inner a:hover { color: rgba(242,241,235,0.6); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .about__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tl-item {
        grid-template-columns: 20px 1fr;
        gap: 0 1.5rem;
    }
    .tl-item__time { display: none; }
    .tl-item__dot::before { left: 50%; }
    .tl-item__dot::after  { left: 50%; }

    .skills__grid,
    .certs { grid-template-columns: 1fr 1fr; }

    .contact__inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .contact__actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
    .hero__bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero__h1 { font-size: clamp(2rem, 11vw, 3rem); }
    .hero__aside p { max-width: none; }
    .hero__nav-cta { display: none; }

    .about__stats { flex-direction: column; gap: 2rem; }

    .skills__grid,
    .certs { grid-template-columns: 1fr; }

    .footer__inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
