/* =========================================================
1. DESIGN SYSTEM
Hier kannst du Farben, Schrift und Abstände zentral ändern
========================================================= */

:root {
/* Schwarztöne für edles Layering */
--bg-primary: #000000;
--bg-secondary: #070707;
--bg-tertiary: #0f0f0f;
--bg-elevated: rgba(255, 255, 255, 0.035);
--bg-elevated-hover: rgba(255, 255, 255, 0.065);


/* Textfarben */
--text-primary: #ffffff;
--text-secondary: #d3d3d3;
--text-muted: #8c8c8c;


/* Akzentfarbe */
--gold: #c9b06a;
--gold-light: #d9c98d;
--gold-dark: #9c8446;


/* Linien und Schatten */
--border-soft: rgba(255, 255, 255, 0.07);
--border-gold: rgba(201, 176, 106, 0.28);
--shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.42);
--shadow-gold: 0 28px 90px rgba(201, 176, 106, 0.12);


/* Cursor Glow */
--cursor-x: 50%;
--cursor-y: 50%;


/* Layout */
--radius-large: 28px;
--radius-medium: 20px;
--max-width: 1180px;


/* Schrift */
--font-main: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
}

/* =========================================================
2. RESET UND BASIS
Grundlayout der Seite
==================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    font-feature-settings: "kern", "liga", "calt";
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    position: relative;
    padding: 120px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-kicker {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

h1, h2, h3 {
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(3.25rem, 8.3vw, 7.2rem);
    max-width: 1040px;
    margin: 0 auto 30px;
    font-weight: 780;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 28px;
    font-weight: 740;
}

h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    font-weight: 700;
}

p {
    color: var(--text-secondary);
    font-size: 1.06rem;
}

.lead {
    font-size: clamp(1.08rem, 1.65vw, 1.32rem);
    max-width: 760px;
    color: var(--text-secondary);
    line-height: 1.72;
    letter-spacing: -0.012em;
    text-wrap: pretty;
}

.hero-lead,
.contact-lead {
    display: block;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.center {
    text-align: center;
}

.center .lead {
    margin-left: auto;
    margin-right: auto;
}

.gold-text {
    color: var(--gold);
}

.muted {
    color: var(--text-muted);
}

/* =========================================================
SUBTILE CURSOR INTERACTION
Der goldene Lichtpunkt folgt der Maus sehr dezent
================================================================= */

.cursor-glow {
    position: fixed;
    width: 520px;
    height: 520px;
    left: var(--cursor-x);
    top: var(--cursor-y);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, rgba(201, 176, 106, 0.075), transparent 68%);
    filter: blur(6px);
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

/* =========================================================
3. NAVIGATION
Obere Navigation mit Call to Action
=================================================================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    padding: 0 34px;
    z-index: 50;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: var(--max-width);
    height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.nav-logo img {
    display: block;
    height: 118px;
    width: auto;
    object-fit: contain;
}

.logo {
    font-weight: 740;
    letter-spacing: -0.025em;
    font-size: 1.14rem;
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.28s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.button-primary {
    background: var(--gold);
    color: #050505;
    box-shadow: 0 12px 34px rgba(201, 176, 106, 0.18);
}

.button-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 18px 44px rgba(201, 176, 106, 0.25);
}

.button-secondary {
    border-color: var(--border-gold);
    color: var(--gold);
    background: rgba(201, 176, 106, 0.04);
}

.button-secondary:hover {
    background: rgba(201, 176, 106, 0.1);
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.mobile-toggle {
    display: none;
    background: transparent;
    color: white;
    border: 0;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 18px;
}

.mobile-menu a {
    display: block;
    color: var(--text-secondary);
    padding: 12px 0;
}

.mobile-menu.active {
    display: block;
}


/* =========================================================
4. HERO
Erste Bildschirmsektion
=================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 132px;
    padding-bottom: 110px;
    background:
        radial-gradient(circle at 50% 40%, rgba(201, 176, 106, 0.105), transparent 34%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.035), transparent 26%),
        var(--bg-primary);
    overflow: hidden;
    isolation: isolate;
}

/* Animierter Hintergrund im Titelbereich */
.hero::before {
    content: "";
    position: absolute;
    inset: -35%;
    z-index: 0;
    background:
        radial-gradient(circle at 22% 28%, rgba(201, 176, 106, 0.16), transparent 24%),
        radial-gradient(circle at 78% 35%, rgba(255, 255, 255, 0.07), transparent 22%),
        radial-gradient(circle at 50% 78%, rgba(201, 176, 106, 0.08), transparent 28%);
    filter: blur(18px);
    opacity: 0.72;
    animation: heroDrift 22s ease-in-out infinite alternate;
}


/* Feine Linien und Tiefe im Hintergrund */
.hero-background-lines {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,0.72), transparent 70%);
    opacity: 0.22;
    animation: gridFloat 18s linear infinite;
}


.hero::after {
    content: "";
    position: absolute;
    inset: auto 12% 4% 12%;
    height: 1px;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(201, 176, 106, 0.45), transparent);
}

@keyframes heroDrift {
    0% {
        transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1);
    }
    50% {
        transform: translate3d(2%, 1.5%, 0) rotate(7deg) scale(1.04);
    }
    100% {
        transform: translate3d(1%, -2%, 0) rotate(-5deg) scale(1.02);
    }
}

@keyframes gridFloat {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 72px 72px, 72px 72px;
    }
}

/* Glass und Blur Layer hinter dem Hero Inhalt */
.hero-panel {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    margin: 0 auto;
    padding: clamp(30px, 5vw, 58px);
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.58),
        inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 35px;
    pointer-events: none;
    background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(201,176,106,0.12), transparent 28%);
    opacity: 0.38;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 28px;
    font-size: 0.88rem;
    font-weight: 650;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 38px;
}


/* =========================================================
5. PROBLEM UND POSITIONIERUNG
Beschreibt die Ausgangslage beim Kunden
================================================================= */

.positioning {
    background: var(--bg-secondary);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 68px;
    align-items: start;
}

.quote-box {
    padding: 34px;
    border-radius: var(--radius-large);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.quote-box p {
    font-size: 1.34rem;
    color: var(--text-primary);
    line-height: 1.35;
}

.text-stack {
    display: grid;
    gap: 18px;
}


/* =========================================================
6. LEISTUNGEN
Karten für die vier Hauptleistungen
================================================================= */

.services {
    background: var(--bg-primary);
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}


.card {
    position: relative;
    padding: 34px;
    border-radius: var(--radius-large);
    background: var(--bg-elevated);
    border: 1px solid var(--border-soft);
    min-height: 260px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.card:hover {
    transform: translateY(-10px) scale(1.01);
    background: var(--bg-elevated-hover);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-soft), var(--shadow-gold);
}

.card:hover::before {
    opacity: 1;
}

.card-number {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 26px;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
}

.card ul {
    margin-top: 20px;
    display: grid;
    gap: 10px;
    list-style: none;
}

.card li {
    color: var(--text-secondary);
    font-size: 0.97rem;
}

.card li::before {
    content: "•";
    color: var(--gold);
    margin-right: 9px;
}


/* =========================================================
7. VORGEHEN
Schrittweises Vorgehen
================================================================= */

.approach {
    background: var(--bg-tertiary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.step {
    padding: 28px;
    border-radius: var(--radius-medium);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--border-soft);
}

.step-number {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #050505;
    background: var(--gold);
    font-weight: 800;
    margin-bottom: 22px;
}


/* =========================================================
8. REFERENZEN
Platzhalter für ein bis zwei Kunden oder Projekte
================================================================= */

.references {
    background: var(--bg-secondary);
}

.reference-card {
    min-height: 230px;
}

.reference-meta {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 0.96rem;
}

.placeholder-note {
    margin-top: 28px;
    color: var(--text-muted);
    font-size: 0.92rem;
}


/* =========================================================
8B. REFERENZEN CAROUSEL
Projektkarten mit Blätterfunktion und Punkten
========================================================= */

.references .center .lead {
    margin-bottom: 10px;
}

.references-carousel {
    position: relative;
    margin-top: 0;
    padding: 0 62px 48px;
}

.reference-viewport {
    overflow: hidden;
    border-radius: var(--radius-large);
}

.reference-track {
    display: flex;
    width: 100%;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.reference-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 420px;
    padding: clamp(30px, 4vw, 42px);
}

.project-header {
    display: grid;
    gap: 18px;
    align-items: start;
    margin-bottom: 28px;
}

.project-header-stacked .project-logo {
    margin-top: 2px;
}

.project-logo {
    width: 160px;
    min-height: 92px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(201, 176, 106, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 44px rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.project-logo-link {
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.project-logo-link:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 176, 106, 0.42);
    background:
        linear-gradient(145deg, rgba(201, 176, 106, 0.12), rgba(255, 255, 255, 0.035));
}

.project-logo img {
    display: block;
    width: 82%;
    max-height: 64px;
    object-fit: contain;
    filter: brightness(1.04) contrast(1.02);
}

.project-logo-placeholder {
    border-style: dashed;
    color: rgba(201, 176, 106, 0.72);
}

.project-logo-placeholder span {
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
}

.project-heading-text h3 {
    margin-bottom: 0;
}

.reference-slide ul {
    margin: 16px 0 24px;
    display: grid;
    gap: 12px;
    list-style: none;
}

.reference-slide li {
    color: var(--text-secondary);
    font-size: 1rem;
}

.reference-slide li::before {
    content: "•";
    color: var(--gold);
    margin-right: 12px;
}

.reference-slide p strong {
    color: var(--text-primary);
}

.carousel-arrow {
    position: absolute;
    top: calc(50% - 28px);
    z-index: 4;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(201, 176, 106, 0.28);
    background: rgba(255, 255, 255, 0.045);
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.carousel-arrow:hover {
    transform: translateY(-2px);
    background: rgba(201, 176, 106, 0.10);
    border-color: rgba(201, 176, 106, 0.45);
}

.carousel-arrow-prev {
    left: 0;
}

.carousel-arrow-next {
    right: 0;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.carousel-dot.is-active {
    width: 28px;
    background: var(--gold);
}

@media (max-width: 760px) {
    .references-carousel {
        padding: 0 0 42px;
    }

    .carousel-arrow {
        display: none;
    }

    .reference-slide {
        min-height: auto;
        padding: 28px;
    }

    .project-header {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .project-logo {
        width: 100%;
        max-width: 220px;
        min-height: 82px;
    }
}


/* =========================================================
9. ÜBER MICH
Founder und Beratungsansatz
=================================================================== */

.about {
    background: var(--bg-primary);
}

.founder-panel {
    padding: 42px;
    border-radius: var(--radius-large);
    background:
        linear-gradient(145deg, rgba(201, 176, 106, 0.08), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--border-soft);
}


/* =========================================================
10. NUTZEN
Klare Nutzenargumente für Kunden
======================================================================= */

.value {
    background: var(--bg-tertiary);
}

.value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.value-item {
    padding: 24px;
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--border-soft);
    color: var(--text-secondary);
}

        .value-item strong {
            color: var(--text-primary);
        }

        /* =========================================================
        14. ÜBER MICH
        Founder Photo Area
        ========================================================= */

        .founder-photo {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 420px;
            max-width: 420px;
            margin: 0 auto 24px;
        }

        .founder-photo img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-medium);
        }


/* =========================================================
11. KONTAKT
Abschluss und Kontaktbereich
=================================================================== */

.contact {
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 176, 106, 0.1), transparent 32%),
        var(--bg-primary);
    text-align: center;
}

.contact .lead {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.contact-card {
    max-width: 820px;
    margin: 42px auto 0;
    padding: 44px;
    border-radius: var(--radius-large);
    border: 1px solid var(--border-gold);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: var(--shadow-soft);
}

.contact-email {
    display: inline-block;
    color: var(--gold);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 760;
    margin: 28px 0;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* =========================================================
12. FOOTER
Rechtliches und kurze Markenlinie
================================================================= */

footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 42px 32px;
    color: var(--text-muted);
    text-align: center;
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.footer-links a:hover {
    color: var(--gold);
}


/* =========================================================
13. RESPONSIVE DESIGN
Anpassung für Tablet und Mobile
=================================================================== */

@media (max-width: 1050px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }


    .steps {
        grid-template-columns: repeat(2, 1fr);
    }


    .split {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 760px) {
    nav {
        height: 78px;
        padding: 0 22px;
    }

    .nav-inner {
        height: 78px;
    }

    .nav-logo img {
        height: 96px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }


    .mobile-toggle {
        display: block;
    }


    section {
        padding: 86px 22px;
    }


    .hero {
        min-height: auto;
        padding-top: 118px;
        padding-bottom: 86px;
    }


    .hero-panel {
        padding: 28px 20px;
        border-radius: 28px;
    }


    .hero-panel::before {
        border-radius: 27px;
    }


    .grid-4,
    .grid-3,
    .steps,
    .value-list {
        grid-template-columns: 1fr;
    }


    .card,
    .quote-box,
    .founder-panel,
    .contact-card {
        padding: 28px;
    }
}

/* =========================================================
15. FINAL RESPONSIVE FIXES
Mobile Menü, grosses Logo und neuer Über mich Bereich
========================================================= */

nav {
    height: 112px;
    padding: 0 28px;
    background: rgba(0, 0, 0, 0.94);
    backdrop-filter: blur(24px) saturate(135%);
    -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.nav-inner {
    height: 112px;
    gap: 22px;
}

.nav-logo {
    height: 104px;
    padding: 2px 0;
    overflow: hidden;
}

.nav-logo img {
    width: 200px;
    height: auto;
    max-height: 170px;
    object-fit: contain;
}

.hero {
    padding-top: 154px;
}

.mobile-menu {
    position: fixed;
    top: 112px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 18px;
    margin-top: 0;
    border: 1px solid rgba(201, 176, 106, 0.24);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(5, 5, 5, 0.985), rgba(15, 13, 8, 0.985));
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.72), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(28px) saturate(140%);
    -webkit-backdrop-filter: blur(28px) saturate(140%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu a {
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.055);
    font-size: 1.05rem;
    font-weight: 650;
}

.mobile-menu a:hover {
    color: var(--gold);
    background: rgba(201, 176, 106, 0.08);
    border-color: rgba(201, 176, 106, 0.22);
}

.about-heading {
    max-width: 860px;
    margin-bottom: 44px;
}

.about-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 420px);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
    padding: clamp(30px, 5vw, 54px);
    overflow: hidden;
}

.about-copy {
    display: grid;
    gap: 20px;
}

.about-copy p {
    font-size: clamp(1.02rem, 1.25vw, 1.12rem);
    line-height: 1.76;
}

.founder-photo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 0;
    max-width: 420px;
    margin: 0;
    padding: 14px;
    border-radius: 28px;
    background: radial-gradient(circle at 50% 20%, rgba(201, 176, 106, 0.18), rgba(255, 255, 255, 0.035) 52%, rgba(0, 0, 0, 0.1));
    border: 1px solid rgba(201, 176, 106, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.founder-photo::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.founder-photo img {
    width: 100%;
    max-height: 460px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
}

@media (max-width: 1050px) {
    .about-card {
        grid-template-columns: 1fr;
    }

    .founder-photo {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    nav {
        height: 92px;
        padding: 0 18px;
    }

    .nav-inner {
        height: 92px;
    }

    .nav-logo {
        height: 86px;
    }

    .nav-logo img {
        width: 200px;
        max-height: 140px;
    }

    .mobile-toggle {
        display: inline-flex;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.08);
        line-height: 1;
    }

    .mobile-menu {
        top: 92px;
        left: 14px;
        right: 14px;
    }

    .hero {
        padding-top: 128px;
    }

    .hero-badge {
        max-width: 100%;
        white-space: normal;
        justify-content: center;
        text-align: center;
    }

    .about-heading {
        margin-bottom: 30px;
    }

    .about-card {
        padding: 24px;
        gap: 28px;
    }

    .about-copy {
        order: 2;
    }

    .founder-photo {
        order: 1;
        padding: 10px;
        border-radius: 24px;
    }

    .founder-photo img {
        max-height: 360px;
        border-radius: 18px;
    }
}

@media (max-width: 430px) {
    .nav-logo img {
        width: 180px;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
    }
}
