@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@200;300&display=swap');

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

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background-color: #0d0c0a;
    background-image: radial-gradient(ellipse 80% 80% at 50% 50%, #181510 0%, #0d0c0a 100%);
    color: #ece6d8;
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Marke ── */
.brand {
    text-align: center;
    margin-bottom: 5rem;
    animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.brand__sub {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    letter-spacing: 0.42em;
    color: #c9a84c;
    text-transform: lowercase;
    margin-bottom: 0.3rem;
    opacity: 0.85;
}

.brand__name {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    font-size: clamp(4rem, 14vw, 8.5rem);
    letter-spacing: 0.18em;
    line-height: 0.92;
    color: #c9a84c;
}

.brand__rule {
    display: block;
    width: 48px;
    height: 1px;
    background-color: #c9a84c;
    opacity: 0.4;
    margin: 1.6rem auto 0;
}

/* ── Karten ── */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 860px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 2.8rem 1.5rem 2.6rem;
    border: 1px solid rgba(201, 168, 76, 0.28);
    text-decoration: none;
    color: #ece6d8;
    background: transparent;
    transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.35s; }
.card:nth-child(3) { animation-delay: 0.50s; }

.card:hover {
    border-color: rgba(201, 168, 76, 0.70);
    background: rgba(201, 168, 76, 0.12);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.07);
}

.card__icon {
    width: 32px;
    height: 32px;
    color: #c9a84c;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

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

.card__icon svg {
    width: 100%;
    height: 100%;
}

.card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.1em;
    color: #ece6d8;
}

.card__desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5e5648;
    text-align: center;
}

/* ── Animation ── */
@keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Mobile ── */
@media (max-width: 560px) {
    .brand { margin-bottom: 3.5rem; }
    .cards {
        grid-template-columns: 1fr;
        max-width: 280px;
        gap: 1rem;
    }
    .card { padding: 2rem 1.5rem 1.8rem; }
}

/* ════════════════════════════════════════
   Welcome: 2x2 Grid
   ════════════════════════════════════════ */

.cards--2x2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
}

@media (max-width: 560px) {
    .cards--2x2 {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

/* ════════════════════════════════════════
   About: Shared Layout
   ════════════════════════════════════════ */

body.page-about {
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
}

.about-header {
    display: flex;
    align-items: center;
    padding: 1.6rem 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    position: sticky;
    top: 0;
    background-color: rgba(13, 12, 10, 0.92);
    backdrop-filter: blur(12px);
    z-index: 10;
}

.about-header__brand {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.about-header__brand:hover { opacity: 0.75; }

.about-header__sub {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: #c9a84c;
    opacity: 0.8;
}

.about-header__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 0.18em;
    color: #c9a84c;
}

/* ── Hero ── */
.about-hero {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 860px;
    margin: 0 auto;
    padding: 5rem 3rem 4rem;
    width: 100%;
}

.about-photo {
    flex-shrink: 0;
    width: 220px;
    height: 280px;
}

.about-photo__inner {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.03);
    position: relative;
    overflow: hidden;
}

.about-photo__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-photo__placeholder {
    width: 60px;
    height: 60px;
    color: rgba(201, 168, 76, 0.25);
}

.about-hero__text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.about-hero__name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.08em;
    color: #ece6d8;
    line-height: 1;
}

.about-hero__role {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 0.25em;
    color: #c9a84c;
    opacity: 0.85;
}

.about-hero__rule {
    width: 40px;
    height: 1px;
    background-color: #c9a84c;
    opacity: 0.4;
    margin-top: 1.2rem;
}

/* ── Content sections ── */
.about-rule {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    height: 1px;
    background: rgba(201, 168, 76, 0.1);
}

.about-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    width: 100%;
}

.about-section__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 1.5rem;
}

.about-section__text {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(236, 230, 216, 0.8);
    max-width: 60ch;
}

/* ── Tags ── */
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.about-tag {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.35);
    padding: 0.35rem 0.9rem;
}

/* ── Contact ── */
.about-contacts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: #ece6d8;
    text-decoration: none;
    transition: color 0.3s ease;
    width: fit-content;
}

.about-contact:hover { color: #c9a84c; }

.about-contact__icon {
    width: 20px;
    height: 20px;
    color: #c9a84c;
    opacity: 0.75;
    flex-shrink: 0;
}

.about-contact__icon svg {
    width: 100%;
    height: 100%;
}

/* ── Responsive About ── */
@media (max-width: 680px) {
    .about-header { padding: 1.2rem 1.5rem; }

    .about-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 3rem 1.5rem 2.5rem;
    }

    .about-photo {
        width: 160px;
        height: 200px;
    }

    .about-section { padding: 2.5rem 1.5rem; }
}
