:root {
    --background: #0C0B0A;
    --surface: #171614;
    --text: #F4F1EA;
    --muted: #A69F94;
    --accent: #D6BFA1;
    --accent-light: #E8DBC2;
    --border: rgba(214, 191, 161, 0.18);
    --container: 1400px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
.hero-title,
.projects-header h2,
.project-info h3 {
    font-family: "Cormorant Garamond", serif;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    padding: 32px 5vw;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 100;

    opacity: 0;

    animation:
        navReveal 1s cubic-bezier(0.22, 1, 0.36, 1)
        0.05s forwards;

    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;

    transition:
        top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        left 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}
.navbar.is-scrolled {
    top: 18px;
    left: 50%;

    width: min(760px, calc(100% - 12vw));

    padding: 13px 22px;

    transform: translateX(-50%);

    background: rgba(23, 22, 20, 0.62);

    border-color: rgba(214, 191, 161, 0.20);

    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(18px) saturate(115%);
    -webkit-backdrop-filter: blur(18px) saturate(115%);
}
.logo {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    transition: color 0.3s ease;
}
.nav-links {
    display: flex;
    gap: 32px;
    transition: gap 0.4s ease;
}

.navbar.is-scrolled .nav-links {
    gap: 24px;
}
.nav-links a {
    position: relative;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(244, 241, 234, 0.65);
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.35s ease;
}
.nav-links a:hover {
    color: var(--text);
}
.nav-links a:hover::after {
    width: 100%;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--text);
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.menu-toggle.is-open span:first-child {
    transform: translateY(10px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-open span:last-child {
    transform: translateY(-10px) rotate(-45deg);
}
/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 5vw 80px;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    inset: 0;

    background-image: url("../assets/images/hero/hero.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

    /* The image itself disappears on the left. */
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 24%,
        rgba(0, 0, 0, 0.15) 38%,
        rgba(0, 0, 0, 0.65) 52%,
        #000 68%,
        #000 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 24%,
        rgba(0, 0, 0, 0.15) 38%,
        rgba(0, 0, 0, 0.65) 52%,
        #000 68%,
        #000 100%
    );

    transform: scale(1.04);

    z-index: 0;
    will-change: transform;
}
@media (max-width: 900px) {

    .hero-background {
        inset: 0;

        background-image: url("../assets/images/hero/hero.png");
        background-size: cover;
        background-position: 74% center;

        transform: scale(1.03);
    }

    .hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #0C0B0A 0%,
            #0C0B0A 28%,
            rgba(12, 11, 10, 0.72) 46%,
            rgba(12, 11, 10, 0.18) 72%,
            rgba(12, 11, 10, 0) 100%
        ),
        linear-gradient(
            0deg,
            rgba(12, 11, 10, 0.78) 0%,
            rgba(12, 11, 10, 0.05) 52%,
            rgba(12, 11, 10, 0.12) 100%
        );

    z-index: 1;
}

}
.hero-overlay {
    position: absolute;
    inset: 0;

    /* Links bewusst ruhig halten – das Motiv beginnt optisch erst rechts. */
    background:
        linear-gradient(
            90deg,
            #0C0B0A 0%,
            rgba(12, 11, 10, 0.99) 22%,
            rgba(12, 11, 10, 0.94) 34%,
            rgba(12, 11, 10, 0.72) 46%,
            rgba(12, 11, 10, 0.36) 59%,
            rgba(12, 11, 10, 0.10) 75%,
            rgba(12, 11, 10, 0) 100%
        ),
        linear-gradient(
            0deg,
            rgba(12, 11, 10, 0.82) 0%,
            rgba(12, 11, 10, 0.08) 48%,
            rgba(12, 11, 10, 0.14) 100%
        );

    z-index: 1;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(transparent, var(--background));
    z-index: 2;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
}
.hero-signature {
    margin-bottom: 24px;
    font-family: "Allura", cursive;
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;

    background: linear-gradient(
        90deg,
        #F1E6D7 0%,
        #E8DBC2 35%,
        #D6BFA1 70%,
        #B89F7C 100%
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    transform: rotate(-3deg);
    transform-origin: left center;
    white-space: nowrap;
}
.hero-eyebrow {
    margin-bottom: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-title {
    font-size: clamp(4.5rem, 8vw, 8rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.045em;
}
.hero-title span {
    color: var(--accent);
    font-style: italic;
}
.hero-description {
    max-width: 620px;
    margin-top: 42px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 22px;
}
.description-line {
    flex-shrink: 0;
    width: 40px;
    height: 1px;
    margin-top: 10px;
    background: var(--accent);
}
.hero-description p {
    max-width: 540px;
}
/* Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 42px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 16px 24px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.button:hover {
    transform: translateY(-3px);
}
.button-primary {
    background: var(--text);
    color: var(--background);
}
.button-primary:hover {
    background: var(--accent);
    color: var(--background);
}
.button-primary span {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.35s ease;
}
.button-primary:hover span {
    transform: translate(4px, -4px);
}
.button-secondary {
    border: 1px solid var(--border);
    color: var(--text);
}
.button-secondary:hover {
    background: rgba(214, 191, 161, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}
/* Hero Footer */
.hero-footer {
    position: absolute;
    left: 5vw;
    right: 5vw;
    bottom: 42px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-socials {
    display: flex;
    gap: 24px;
}
.hero-socials a {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
}
.hero-socials a:hover {
    color: var(--text);
}
/* =========================================================
FIXED SECTION NAVIGATION
========================================================= */
.section-indicator {
    position: fixed;
    top: 50%;
    right: 5vw;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: translateY(-50%);
}
.section-indicator a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 20px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(244, 241, 234, 0.42);
    transition:
        color 0.35s ease,
        transform 0.35s ease;
}
.section-indicator a:hover {
    color: var(--text);
    transform: translateX(-2px);
}
.section-indicator a.is-active {
    color: var(--accent);
}
.section-indicator a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 22px;
    height: 1px;
    background: var(--accent);
    transform:
        translateX(-50%)
        scaleX(0);
    transform-origin: center;
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-indicator a.is-active::after {
    transform:
        translateX(-50%)
        scaleX(1);
}
/* Mobile */
@media (max-width: 900px) {
    .section-indicator {
        display: none;
    }
}
/* Projects */
.projects {
    padding: 110px 5vw;
    background: var(--background);
}
.projects-header {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}
.section-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    margin-left: calc(6vw - max(5vw, (100vw - 1400px) / 2));
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--muted);
}
.section-eyebrow span {
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--accent);
}
.projects-header h2 {
    margin-top: 18px;
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.035em;
}
.projects-header h2 span {
    color: var(--accent);
    font-style: italic;
}
.projects-all {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.projects-all span {
    font-size: 18px;
    transition: transform 0.3s ease;
}
.projects-all:hover {
    color: var(--accent);
}
.projects-all:hover span {
    transform: translateX(5px);
}
.project-grid {
    max-width: var(--container);
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.project-card {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.project-card:nth-child(n+4) {
    display: none;
}
.project-image {
    position: relative;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
}
.project-image-link {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 1;
}
.project-number {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    line-height: 1;
    text-align: center;
    color: var(--text);
    background: rgba(12, 11, 10, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
    padding-bottom: 2px;
}
.project-card:hover .project-number {
    color: var(--accent);
    background: rgba(12, 11, 10, 0.8);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}
.project-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-card:hover .project-image img {
    transform: scale(1.04);
}
.project-type {
    position: absolute;
    top: 48px;
    left: 18px;
    z-index: 2;
    padding: 7px 13px;
    border-radius: 20px;
    background: rgba(23, 22, 20, 0.75);
    backdrop-filter: blur(8px);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
}
.project-link {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(12, 11, 10, 0.35);
    backdrop-filter: blur(8px);
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.project-link:hover {
    background: var(--accent);
    color: var(--background);
    transform: translate(2px, -2px);
}
.project-info {
    padding: 18px 4px 0;
}
.project-info h3 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    transition: color 0.35s ease;
}
.project-card:hover .project-info h3 {
    color: var(--accent);
}
.project-info p {
    max-width: 320px;
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}
.project-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--text);
}
.project-more span {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.project-more:hover {
    color: var(--accent);
}
.project-more:hover span {
    transform: translateX(5px);
}
/* Hero Animation */
.hero-eyebrow,
.hero-title,
.hero-description,
.hero-actions,
.hero-footer {
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-eyebrow {
    animation-delay: 0.1s;
}
.hero-title {
    animation-delay: 0.25s;
}
.hero-description {
    animation-delay: 0.4s;
}
.hero-actions {
    animation-delay: 0.55s;
}
.hero-footer {
    animation-delay: 0.7s;
}
@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes navReveal {
    to {
        opacity: 1;
    }
}
/* Responsive */
@media (max-width: 1000px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .navbar {
        width: calc(100% - 12vw);
        padding: 25px 0;
    }

    .navbar.is-scrolled {
        top: 14px;
        width: calc(100% - 10vw);
        padding: 12px 18px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 80vw);
        height: 100vh;
        padding: 120px 40px 40px;
        display: flex;
        flex-direction: column;
        gap: 28px;
        background: rgba(12, 11, 10, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .nav-links.is-open {
        transform: translateX(0);
    }
    .nav-links a {
        font-size: 14px;
        color: var(--text);
    }
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 20;
    }
    .hero-title {
        font-size: clamp(3.5rem, 13vw, 6rem);
    }
    .hero-socials {
        display: none;
    }
    .hero-footer {
        justify-content: flex-end;
    }
}
@media (max-width: 700px) {
    .section-eyebrow {
        margin-left: 0;
    }
    .projects {
        padding: 90px 6vw;
    }
    .projects-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }
    .project-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
}
@media (max-width: 600px) {
    .hero-signature {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }
    .navbar {
        padding: 25px 6vw;
    }
    .hero {
        padding: 120px 6vw 80px;
    }
    .hero-title {
        font-size: clamp(3rem, 16vw, 5rem);
    }
    .hero-description {
        font-size: 15px;
        gap: 14px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .button {
        width: 100%;
    }
    .hero-footer {
        left: 6vw;
        right: 6vw;
    }
    .hero-content {
        max-width: 100%;
    }
}
/* =========================================================
03 — ÜBER MICH
========================================================= */
.about {
    position: relative;
    min-height: 100vh;
    padding: 150px 6vw 90px;
    background: var(--surface);
    overflow: hidden;
}
.about-inner {
    width: 100%;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 2;
}
/* =========================================================
HEADER
========================================================= */
.about-heading {
    position: relative;
    z-index: 5;
}
.about-eyebrow {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 55px;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--muted);
}
.about-eyebrow span {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 0.05em;
}
.about-heading h2 {
    margin: 0;
    max-width: 600px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(
    5rem,
    7.5vw,
    9rem
    );
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -0.045em;
    color: var(--text);
}
.about-heading h2 span {
    display: block;
    color: var(--accent);
    font-style: italic;
}
/* =========================================================
MAIN CONTENT
========================================================= */
.about-main {
    position: relative;
    display: grid;
    grid-template-columns:
        1fr
        minmax(500px, 1fr)
        0.75fr;
    column-gap: 90px;
    align-items: center;
    min-height: 560px;
    padding-bottom: 50px;
}
/* =========================================================
TEXT LINKS
========================================================= */
.about-copy {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 540px;
    align-self: center;
}
.about-line {
    width: 45px;
    height: 1px;
    margin-bottom: 28px;
    background: var(--accent);
}
.about-copy p {
    margin: 0;
    max-width: 520px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
}
.about-copy p + p {
    margin-top: 28px;
}
/* =========================================================
FOTO
========================================================= */
.about-portrait {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: visible;
    background: transparent;
}
.about-portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    filter:
        brightness(0.58)
        contrast(1.05)
        saturate(0.85);
    -webkit-mask-image:
        linear-gradient(
        to right,
        transparent 0%,
        #000 15%,
        #000 85%,
        transparent 100%
        );
    mask-image:
        linear-gradient(
        to right,
        transparent 0%,
        #000 15%,
        #000 85%,
        transparent 100%
        );
}
/* zusätzlicher dunkler Verlauf */
.about-portrait::after {
    content: "";
    position: absolute;
    inset: -10px;
    pointer-events: none;
    background:
        linear-gradient(
        90deg,
        var(--surface) 0%,
        transparent 18%,
        transparent 82%,
        var(--surface) 100%
        ),
        linear-gradient(
        180deg,
        var(--surface) 0%,
        transparent 15%,
        transparent 82%,
        var(--surface) 100%
        );
}
/* =========================================================
PROFIL RECHTS
========================================================= */
.about-profile {
    position: relative;
    z-index: 5;
    align-self: center;
    padding-bottom: 5px;
}
.about-profile h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.08em;
    color: var(--accent);
    padding-top: 18px;
}
.about-profile-line {
    width: 45px;
    height: 1px;
    margin: 24px 0;
    background: var(--accent);
}
.about-role {
    margin: 0 0 35px;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.12em;
    color: var(--text);
}
/* =========================================================
01 / 02 / 03
========================================================= */
.about-focus {
    border-top: 1px solid
    rgba(244, 241, 234, 0.16);
}
.about-focus-item {
    display: flex;
    align-items: center;
    gap: 22px;
    min-height: 68px;
    border-bottom: 1px solid
    rgba(244, 241, 234, 0.16);
}
.about-focus-item span {
    width: 22px;
    font-size: 14px;
    color: var(--accent);
}
.about-focus-item strong {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text);
}
/* =========================================================
BOTTOM — DESIGN / CODE / DETAIL
========================================================= */
.about-values {
    position: relative;
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    margin-top: 55px;
    border-top: 1px solid
    rgba(244, 241, 234, 0.16);
    z-index: 5;
}
.about-value {
    min-height: 175px;
    padding: 35px 45px 20px;
    text-align: center;
}
.about-value + .about-value {
    border-left: 1px solid
    rgba(244, 241, 234, 0.16);
}
.about-value-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 34px;
    line-height: 1;
    color: var(--accent);
}
.about-value-icon svg {
    width: 42px;
    height: 42px;
    display: block;
    color: var(--accent);
}
.about-value h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text);
}
.about-value > span {
    display: block;
    width: 30px;
    height: 1px;
    margin: 11px auto 12px;
    background: var(--accent);
}
.about-value p {
    max-width: 260px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}
/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
    .about-main {
        grid-template-columns:
            0.9fr
            1fr;
        gap: 45px;
    }
    .about-portrait {
        grid-column: 2;
        grid-row: 1 / span 2;
    }
    .about-copy {
        grid-column: 1;
    }
    .about-profile {
        grid-column: 1;
    }
}
@media (max-width: 700px) {
    .about {
        padding:
            100px 7vw 60px;
    }
    .about-heading h2 {
        font-size: clamp(
        4rem,
        17vw,
        6rem
        );
    }
    .about-main {
        display: flex;
        flex-direction: column;
        gap: 35px;
        margin-top: 50px;
        min-height: auto;
    }
    .about-copy {
        width: 100%;
        max-width: 430px;
    }
    .about-portrait {
        width: 100%;
        height: 500px;
        order: 2;
    }
    .about-profile {
        width: 100%;
        order: 3;
    }
    .about-values {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }
    .about-value {
        min-height: auto;
        padding:
            30px 20px;
    }
    .about-value + .about-value {
        border-left: 0;
        border-top: 1px solid
        rgba(
        241,
        240,
        236,
        0.16
        );
    }
}
/* =========================================================
04 — SKILLS
========================================================= */
.skills {
    position: relative;
    min-height: 100vh;
    padding: 150px 5vw 100px;
    background: var(--surface);
    border-top: 1px solid rgba(244, 241, 234, 0.16);
    overflow: hidden;
}
.skills-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
.skills::before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    left: 4vw;
    right: 4vw;
    height: 1px;
    background: rgba(244, 241, 234, 0.16);
}
/* =========================================================
HEADER
========================================================= */
.skills-heading {
    text-align: left;
    margin-bottom: 90px;
}
.skills-eyebrow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 55px;
    margin-left: calc(6vw - max(5vw, (100vw - 1400px) / 2));
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--muted);
}
.skills-eyebrow span {
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--accent);
}
.skills-heading h2 {
    margin: 0;
    font-family:
        "Cormorant Garamond",
        serif;
    font-size: clamp(
    4rem,
    6vw,
    7rem
    );
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--text);
    text-align: center;
}
.skills-heading h2 span {
    color: var(--accent);
    font-style: italic;
}
/* =========================================================
SKILLS GRID
========================================================= */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(244, 241, 234, 0.18);
    border-bottom: 1px solid rgba(244, 241, 234, 0.18);
}
.skill-column {
    position: relative;
    min-height: 300px;
    padding: 45px 55px 35px;
    text-align: center;
    overflow: hidden;

    transition:
        background 0.5s ease,
        transform 0.5s ease;
}

.skill-column::before {
    content: "";
    position: absolute;
    inset: 15% 10% 0;

    background: radial-gradient(
        ellipse at center,
        rgba(214, 191, 161, 0.12) 0%,
        rgba(214, 191, 161, 0.05) 35%,
        transparent 72%
    );

    filter: blur(35px);
    opacity: 0;
    transform: scale(0.85);

    transition:
        opacity 0.6s ease,
        transform 0.7s cubic-bezier(.16, 1, .3, 1);

    pointer-events: none;
}

.skill-column:hover::before {
    opacity: 1;
    transform: scale(1);
}

.skill-column > * {
    position: relative;
    z-index: 1;
}
.skill-column + .skill-column {
    border-left: 1px solid rgba(244, 241, 234, 0.18);
}
/* =========================================================
NUMBERS
========================================================= */
.skill-number {
    margin-bottom: 20px;
    font-family:
        "Cormorant Garamond",
        serif;
    font-size: 34px;
    line-height: 1;
    color: var(--accent);
}
/* =========================================================
TITLES
========================================================= */
.skill-column h3 {
    margin: 0;
    font-family:
        "Inter",
        sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--text);
}
.skill-line {
    width: 42px;
    height: 1px;
    margin: 22px auto 28px;
    background: var(--accent);
}
/* =========================================================
LIST
========================================================= */
.skill-column ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.skill-column li {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text);
}
/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 900px) {
    .skills-eyebrow {
        margin-left: 0;
    }
    .skills {
        padding:
            110px 6vw 80px;
    }
    .skills-heading {
        margin-bottom: 65px;
    }
    .skills-heading h2 {
        font-size: clamp(
        3.5rem,
        9vw,
        5.5rem
        );
    }
    .skill-column {
        padding:
            40px 25px;
    }
}
@media (max-width: 650px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .skill-column {
        min-height: auto;
        padding:
            45px 20px;
    }
    .skill-column + .skill-column {
        border-left: none;
        border-top: 1px solid
        rgba(
        241,
        240,
        236,
        0.18
        );
    }
}
/* =========================================================
05 — KONTAKT
========================================================= */
.contact {
    position: relative;
    min-height: 100vh;
    padding: 120px 5vw 70px;
    background: var(--surface);
    overflow: hidden;
    border-top: 1px solid rgba(244, 241, 234, 0.16);
}
.contact::before {
    display: none;
    content: "";
    position: absolute;
    top: 0;
    left: 4vw;
    right: 4vw;
    height: 1px;
    background: rgba(244, 241, 234, 0.16);
    pointer-events: none;
}
.contact-inner {
    position: relative;
    width: 100%;
    max-width: 1500px;
    min-height: calc(100vh - 190px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
/* =========================================================
SECTION LABEL
========================================================= */
.contact-eyebrow {
    position: absolute;
    top: 120px;
    left: calc(
    5vw - max(0px, (100vw - 1500px) / 2)
    );
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--muted);
}
.contact-eyebrow span {
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--accent);
}
.contact-eyebrow span {
    font-size: 18px;
    letter-spacing: 0.05em;
    color: var(--accent);
}
/* =========================================================
MAIN CONTENT
========================================================= */
.contact-content {
    display: grid;
    grid-template-columns:
        minmax(500px, 1fr)
        minmax(500px, 1fr);
    align-items: center;
    gap: 70px;
    flex: 1;
    padding:
        50px 4vw 40px;
}
/* =========================================================
LEFT — TEXT
========================================================= */
.contact-copy {
    padding-left: 8vw;
    max-width: 700px;
}
.contact-copy h2 {
    margin: 0;
    font-family:
        "Cormorant Garamond",
        serif;
    font-size: clamp(
    4.5rem,
    6.5vw,
    7.5rem
    );
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.045em;
    color: var(--text);
}
.contact-copy h2 span {
    color: var(--accent);
    font-style: italic;
}
.contact-line {
    width: 60px;
    height: 1px;
    margin:
        38px 0 28px;
    background: var(--accent);
}
.contact-copy > p {
    max-width: 520px;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
}
/* =========================================================
BUTTON
========================================================= */
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-width: 300px;
    margin-top: 38px;
    padding:
        18px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition:
        background 0.35s ease,
        color 0.35s ease;
}
.contact-button span {
    font-size: 20px;
    line-height: 1;
    transition:
        transform 0.35s ease;
}
.contact-button:hover {
    background: var(--accent);
    color: var(--surface);
}
.contact-button:hover span {
    transform:
        translate(4px, -4px);
}
/* =========================================================
RIGHT — CIRCLE
========================================================= */
.contact-circle {
    position: relative;
    width: min(
    520px,
    38vw
    );
    aspect-ratio: 1;
    margin: 0 auto;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-circle::before,
.contact-circle::after {
    content: "";
    position: absolute;
    inset: -35px;
    border: 1px solid
  rgba(214, 191, 161, 0.15);
    border-radius: 50%;
}
.contact-circle::after {
    inset: -70px;
    border-color:rgba(214, 191, 161, 0.08);
}
.contact-circle-inner {
    width: 65%;
    position: relative;
    z-index: 2;
}
/* =========================================================
CONTACT ITEMS
========================================================= */
.contact-item {
    display: grid;
    grid-template-columns:
        50px 1fr;
    align-items: center;
    gap: 22px;
    padding: 18px 0;
}
.contact-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.contact-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}
.contact-item h3 {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text);
}
.contact-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--text);
}
.contact-item-line {
    width: 100%;
    height: 1px;
    background: rgba(214, 191, 161, 0.35);
}
/* =========================================================
SOCIALS
========================================================= */
.contact-socials {
    display: grid;
    grid-template-columns:
        1fr
        repeat(3, auto);
    align-items: center;
    gap: 0;
    width: 100%;
    padding-top: 25px;
    border-top: 1px solid
    rgba(
    241,
    240,
    236,
    0.16
    );
}
.contact-social-label {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text);
}
.contact-social-label span {
    width: 45px;
    height: 1px;
    background: var(--accent);
}
.contact-social {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 190px;
    padding:
        0 35px;
    color: var(--text);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.18em;
    transition:
        color 0.3s ease;
}
.contact-social + .contact-social {
    border-left: 1px solid
    rgba(
    241,
    240,
    236,
    0.16
    );
}
.contact-social span {
    color: var(--accent);
    font-size: 20px;
    line-height: 1;
}
.contact-social:hover {
    color: var(--accent);
}
/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
    .contact-content {
        grid-template-columns:
            1fr 1fr;
        gap: 30px;
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .contact-copy {
        padding-left: 5vw;
    }
    .contact-circle {
        width: min(
        460px,
        42vw
        );
    }
    .contact-circle-inner {
        width: 70%;
    }
}
@media (max-width: 800px) {
    .contact {
        padding:
            100px 6vw 60px;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 80px;
        padding:
            100px 0 60px;
    }
    .contact-copy {
        padding-left: 0;
    }
    .contact-copy h2 {
        font-size:
            clamp(
            4rem,
            12vw,
            6rem
            );
    }
    .contact-circle {
        width: min(
        500px,
        80vw
        );
    }
    .contact-socials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-social {
        min-width: 0;
        padding:
            10px 0;
    }
    .contact-social + .contact-social {
        border-left: none;
    }
}
@media (max-width: 500px) {
    .contact-copy h2 {
        font-size: 3.6rem;
    }
    .contact-copy > p {
        font-size: 15px;
    }
    .contact-button {
        width: 100%;
        min-width: 0;
        gap: 20px;
    }
    .contact-circle {
        width: 82vw;
    }
    .contact-circle-inner {
        width: 72%;
    }
    .contact-item {
        grid-template-columns:
            35px 1fr;
        gap: 12px;
    }
    .contact-icon {
        width: 28px;
        height: 28px;
    }
    .contact-icon svg {
        width: 25px;
        height: 25px;
    }
    .contact-item p {
        font-size: 13px;
    }
}
/* =========================================================
PREMIUM MOTION — SCROLL REVEAL / PARALLAX
========================================================= */
html.js-enabled .scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
html.js-enabled .scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
html.js-enabled .scroll-reveal.delay-1 { transition-delay: 0.08s; }
html.js-enabled .scroll-reveal.delay-2 { transition-delay: 0.16s; }
html.js-enabled .scroll-reveal.delay-3 { transition-delay: 0.24s; }
/* About portrait: subtle movement, never exaggerated */
.about-portrait img {
    will-change: transform;
}
/* Project image hover — slightly more refined than a simple zoom */
.project-image-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 1px solid transparent;
    transition: border-color 0.45s ease, box-shadow 0.45s ease;
    pointer-events: none;
}
.project-card:hover .project-image-link::before {
    border-color: rgba(214, 191, 161, 0.42);
    box-shadow: inset 0 0 0 10px rgba(214, 191, 161, 0.035);
}
/* Subtle gold underline for text links */
.project-more,
.projects-all,
.hero-socials a,
.contact-social {
    position: relative;
}
.project-more::after,
.projects-all::after,
.hero-socials a::after,
.contact-social::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-more:hover::after,
.projects-all:hover::after,
.hero-socials a:hover::after,
.contact-social:hover::after {
    width: 100%;
}
@media (prefers-reduced-motion: reduce) {
    html.js-enabled .scroll-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .about-portrait img,
    .project-image img,
    .project-image-link::before {
        transition: none;
    }
}
/* =========================================================
RESPONSIVE REFINEMENTS
========================================================= */
@media (max-width: 900px) {
    .nav-links {
        height: 100dvh;
        visibility: hidden;
        pointer-events: none;
    }
    .nav-links.is-open {
        visibility: visible;
        pointer-events: auto;
    }
    .hero {
        min-height: 100svh;
    }
    .hero-content {
        max-width: min(100%, 720px);
    }
    .about {
        padding: 120px 6vw 80px;
    }
    .about-main {
        column-gap: 35px;
    }
    .about-portrait {
        height: 540px;
    }
    .about-value {
        padding-right: 25px;
        padding-left: 25px;
    }
    .contact-copy {
        padding-left: 0;
    }
}
@media (max-width: 700px) {
    .hero-description {
        max-width: 100%;
    }
    .project-info h3 {
        font-size: 24px;
    }
    .about-portrait {
        height: clamp(380px, 90vw, 500px);
    }
    .contact-eyebrow {
        position: static;
        margin-bottom: 20px;
    }
    .contact-content {
        padding-top: 40px;
    }
    .contact-circle::before {
        inset: -20px;
    }
    .contact-circle::after {
        inset: -40px;
    }
}
@media (max-width: 500px) {
    .nav-links {
        width: min(100%, 360px);
        padding: 110px 7vw 40px;
    }
    .hero {
        min-height: 100svh;
        padding-bottom: 64px;
    }
    .hero-description {
        flex-direction: column;
        gap: 12px;
    }
    .description-line {
        margin-top: 0;
    }
    .projects-all {
        white-space: normal;
    }
    .about {
        padding-right: 6vw;
        padding-left: 6vw;
    }
    .about-copy p,
    .about-value p {
        font-size: 15px;
    }
    .about-portrait {
        height: clamp(340px, 108vw, 430px);
    }
    .skills {
        padding-right: 6vw;
        padding-left: 6vw;
    }
    .skill-column h3 {
        letter-spacing: 0.16em;
    }
    .contact {
        padding-right: 6vw;
        padding-left: 6vw;
    }
    .contact-circle {
        width: 78vw;
    }
    .contact-circle::before {
        inset: -14px;
    }
    .contact-circle::after {
        display: none;
    }
    .contact-item {
        gap: 10px;
    }
}