/* v 260520.2001 */

:root {
    --bg-dark: #2f2b24;
    --bg-mid: #4b4337;
    --gold-soft: #c9a36a;
    --gold-light: #e0c28d;
    --mist: rgba(230, 224, 214, 0.78);
    --text-main: #f4f1eb;
    --text-muted: #d6c9b7;
    --card-bg: rgba(25, 25, 25, 0.58);
    --border-soft: rgba(201, 163, 106, 0.45);
    --shadow: rgba(0, 0, 0, 0.45);
    --focus: #ffd400;
    --radius-lg: 28px;
    --radius-md: 20px;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

img {
    max-width: 100%;
}

.site-topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem clamp(1rem, 4vw, 2rem);
    background: rgba(28, 26, 23, 0.86);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.site-brand,
.logo-gradient {
    background: linear-gradient(45deg, #ff004c, #ff7a00, #ffd400, #2cff00, #00c2ff, #7a00ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 7.5s ease infinite;
}

.site-brand {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.03em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0.7rem, 3vw, 1.5rem);
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.site-nav a:hover {
    color: var(--text-main);
}

.hero {
    min-height: 100svh;
    background: url('/assets/images/WS-Lockscreen.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: clamp(4rem, 10vw, 7rem) 1.2rem;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.85), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    animation: fadeIn 1.2s ease;
}

.logo {
    display: inline-block;
    margin: 0 0 1rem;
    font-size: clamp(3.2rem, 12vw, 8rem);
    font-weight: 750;
    letter-spacing: 2px;
    line-height: 1.15;
    padding-bottom: 0.15em;
    word-break: break-word;
}

.tagline {
    margin: 0 0 2.5rem;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--mist);
    line-height: 1.7;
}

.button-group,
.contact-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.95rem 1.8rem;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    color: var(--text-main);
    font: inherit;
    font-weight: 650;
    text-decoration: none;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: rgba(201, 163, 106, 0.18);
}

.btn-primary:hover {
    background: rgba(201, 163, 106, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

section {
    padding: clamp(3rem, 6vw, 6rem) 1.2rem;
}

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin-inline: auto;
}

.section-title {
    margin: 0 0 2.5rem;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    color: var(--gold-light);
    text-align: center;
    letter-spacing: 0.05em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 2rem;
}

.service-card {
    display: block;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 2rem;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 10px 25px var(--shadow);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-light);
}

.service-icon {
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.service-card h3 {
    margin: 0 0 1rem;
    color: var(--gold-light);
    font-size: 1.4rem;
}

.service-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.curiosities-teaser {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 22%, rgba(224, 194, 141, 0.16), transparent 28%),
        radial-gradient(circle at 80% 78%, rgba(0, 194, 255, 0.10), transparent 30%),
        linear-gradient(to bottom, rgba(35, 32, 27, 1), rgba(55, 50, 42, 0.92));
}

.curiosities-teaser::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/P1305295.jpg') center / cover no-repeat;
    opacity: 0.18;
    filter: saturate(0.9) contrast(0.9);
}

.curiosities-teaser-card {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1.4rem, 4vw, 3rem);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    background: rgba(20, 20, 20, 0.56);
    box-shadow: 0 16px 40px var(--shadow);
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 5vw, 3rem);
}

.curiosities-teaser-kicker {
    margin: 0 0 0.7rem;
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.curiosities-teaser h2 {
    margin: 0 0 1rem;
    color: var(--text-main);
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    line-height: 1.08;
}

.curiosities-teaser p:not(.curiosities-teaser-kicker) {
    max-width: 720px;
    margin: 0;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

.curiosities-teaser-button {
    white-space: nowrap;
}

.about {
    background: linear-gradient(to bottom, rgba(55, 50, 42, 0.95), rgba(35, 32, 27, 1));
}

.about-content {
    max-width: 900px;
    margin: auto;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.9;
    font-size: 1.1rem;
}

.about-content p {
    margin: 0 0 1.3rem;
}

.contact {
    text-align: center;
}

.contact-card {
    max-width: 700px;
    margin: auto;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
    box-shadow: 0 10px 30px var(--shadow);
    backdrop-filter: blur(10px);
}

.contact-card p {
    margin: 0 0 2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: min(500px, 100%);
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(201, 163, 106, 0.4);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    position: relative;
    padding: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1c1a17;
}

.site-version {
    position: absolute;
    left: 0.75rem;
    bottom: 0.5rem;
    opacity: 0;
    font-size: 0.75rem;
    transition: opacity 0.2s ease;
}

.site-footer:hover .site-version {
    opacity: 0.65;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 700px) {
    body {
        font-size: 15px;
    }

    .site-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
    }

    .button-group,
    .contact-links {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .services-grid {
        gap: 1.2rem;
    }

    .service-card,
    .contact-card {
        border-radius: var(--radius-md);
    }

    .curiosities-teaser-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .curiosities-teaser p:not(.curiosities-teaser-kicker) {
        margin-inline: auto;
    }

    .curiosities-teaser-button {
        width: 100%;
    }

    .about-content {
        font-size: 1rem;
        line-height: 1.8;
    }

    .site-footer {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
}
