@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Permanent+Marker&display=swap');

:root {
    --yellow: #ffff00;
    --black: #080808;
    --dark: #111111;
    --white: #f5f5f5;
    --gray: #bcbcbc;
    --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: 'Oswald', Arial, sans-serif;
    line-height: 1.5;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(8,8,8,.96);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.brand { display: block; margin-right: auto; }

.logo {
    width: 92px;
    max-height: 115px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    font-weight: 600;
    letter-spacing: .6px;
    padding: 31px 0 27px;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    font-size: 24px;
    padding: 6px 10px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    background:
        radial-gradient(circle at 82% 45%, rgba(255,212,0,.18), transparent 28%),
        linear-gradient(115deg, #050505 0%, #111 65%, #080808 100%);
}

.hero-splash {
    position: absolute;
    width: 65%;
    height: 18px;
    right: -5%;
    bottom: 50px;
    background: var(--yellow);
    transform: rotate(-4deg);
    box-shadow: 0 20px 0 rgba(255,212,0,.25), -80px -35px 0 rgba(255,212,0,.12);
}

.hero-content {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 30px;
}



.eyebrow, .section-label {
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: clamp(54px, 7vw, 92px);
    line-height: .94;
    margin: 12px 0 20px;
    letter-spacing: 1px;
}

.hero h1 span, .section-title span { color: var(--yellow); }

.values {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
}

.values b { color: var(--yellow); }

.intro {
    color: #ddd;
    max-width: 520px;
    font-size: 19px;
}

.btn {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .2s ease;
}

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

.btn-yellow { background: var(--yellow); color: #000; }
.btn-outline { border: 1px solid var(--yellow); color: var(--yellow); }
.btn-dark { background: #000; color: var(--yellow); }

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    aspect-ratio: 16 / 9;
    border: 2px solid var(--yellow);
    background:
        linear-gradient(135deg, transparent 48%, rgba(255,212,0,.14) 49%, transparent 52%),
        radial-gradient(circle at 55% 35%, #555, #151515 50%, #050505 75%);
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(2deg);
    box-shadow: 22px 22px 0 rgba(255,212,0,.14);
}

.values-strip {
    background: var(--yellow);
    color: #000;
    padding: 24px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.values-grid article {
    padding: 10px 20px;
    border-right: 1px solid rgba(0,0,0,.3);
}

.values-grid article:last-child { border-right: 0; }

.values-grid strong { font-size: 30px; }
.values-grid h2 { margin: 2px 0; font-size: 22px; }
.values-grid p { margin: 0; }

.content-section, .appointments { padding: 90px 0; }

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.section-title {
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1;
    margin: 10px 0 25px;
}

.news-card, .appointment {
    background: #121212;
    border: 1px solid var(--line);
    padding: 30px;
}

.news-card { border-left: 5px solid var(--yellow); }
.news-date { color: var(--yellow); letter-spacing: 2px; }
.news-card h3 { font-size: 28px; margin: 12px 0; }

.appointment-grid { display: grid; gap: 14px; }

.appointment {
    display: flex;
    gap: 25px;
    align-items: center;
}

.date {
    min-width: 100px;
    text-align: center;
    border: 1px solid var(--yellow);
    padding: 10px;
}

.date strong { display: block; color: var(--yellow); font-size: 34px; }
.date small { letter-spacing: 1px; }

.appointment h3 { margin: 0; color: var(--yellow); font-size: 24px; }
.appointment p { margin: 5px 0 0; color: var(--gray); }

.cta {
    background: var(--yellow);
    color: #000;
    padding: 42px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta p { margin: 0; font-family: 'Permanent Marker', cursive; font-size: 30px; }
.cta h2 { margin: 0; font-size: 48px; line-height: 1; }

.site-footer {
    background: #050505;
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 45px;
}

.footer-logo { width: 80px; }
.footer-grid h3 { color: var(--yellow); letter-spacing: 1px; }
.footer-grid a, .footer-grid p { display: block; color: #ccc; margin: 8px 0; }

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 18px 20px;
    text-align: center;
    color: #777;
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 86px;
        background: #080808;
        padding: 15px 20px 25px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 0; }

    .menu-toggle { display: block; }

    .hero-content, .two-columns { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 60px 0 80px; }
    .hero-content { min-height: auto; }
    .hero-visual { margin-top: 25px; }

    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid article:nth-child(2) { border-right: 0; }

    .cta-inner { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}





@media (max-width: 600px) {
    .container { width: min(100% - 28px, 1180px); }
    .logo { width: 72px; }
    .nav-wrap { min-height: 72px; }
    .main-nav { top: 72px; }

    .hero h1 { font-size: 52px; }
    .values { font-size: 18px; }
    .values-grid { grid-template-columns: 1fr; }
    .values-grid article { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.25); }
    .values-grid article:last-child { border-bottom: 0; }

    .content-section, .appointments { padding: 60px 0; }
    .appointment { align-items: flex-start; }
    .date { min-width: 82px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta h2 { font-size: 38px; }

    .hero-visual {
        width: 100%;
        margin-top: 25px;
    }
    
    .visual-placeholder {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        transform: rotate(0);
        box-shadow: 12px 12px 0 rgba(255,212,0,.14);
    }
    
    .visual-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


}
