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

body {
    font-family: 'Geist', sans-serif;
    font-weight: 200;
    color: white;
    overflow-x: hidden;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('background.jpg') center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

/* Hamburger Menu */
.hamburger-menu {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-menu svg {
    width: 100%;
    height: 100%;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hamburger-menu .close-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.hamburger-menu.active .hamburger-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.hamburger-menu.active .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.nav-menu ul li {
    margin: 2rem 0;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 200;
    transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
    color: #D4AF37;
}

/* Main Content */
.main-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 1rem;
}

.logo-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-svg {
    width: 100%;
    height: auto;
    max-width: 320px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.info-section {
    margin-bottom: 1.2rem;
}

.address {
    font-size: 0.95rem;
    font-weight: 200;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.phone-button {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background-color: transparent;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 200;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.phone-button:hover {
    background-color: white;
    color: #000;
    transform: translateY(-2px);
}

.hours {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.hours-column {
    text-align: left;
}

.hours-column p {
    font-size: 0.85rem;
    font-weight: 200;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.menu-button {
    padding: 0.9rem 2.5rem;
    background-color: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Geist', sans-serif;
    margin-top: 1rem;
}

.menu-button:hover {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

.menu-button:active {
    transform: translateY(0);
}

.hero-tag {
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    font-size: 0.85rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

/* Desktop Background - используем background.jpg для десктопа */
@media screen and (min-width: 1025px) {
    .container {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                    url('background.jpg') center/cover no-repeat;
        background-size: cover;
        background-position: center 30%;
        background-attachment: fixed;
    }
}

/* Tablet Styles */
@media screen and (max-width: 1024px) and (min-width: 768px) {
    .logo-container {
        max-width: 350px;
        margin-bottom: 2rem;
    }
    
    .hours {
        gap: 2rem;
    }
    
    .container {
        padding: 1.5rem;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                    url('background.jpg') center/cover no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
    .container {
        padding: 0.5rem;
        background-attachment: scroll;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                    url('background.jpg') center/cover no-repeat;
        background-size: cover;
        background-position: center;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }
    
    .hamburger-menu {
        top: 1rem;
        right: 1rem;
        width: 25px;
        height: 25px;
    }
    
    .main-content {
        padding: 0.5rem;
        padding-top: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
    }
    
    .logo-container {
        max-width: 100%;
        margin-bottom: 0.8rem;
        flex-shrink: 0;
    }
    
    .logo-svg {
        max-width: 100%;
        max-height: 130px;
        width: auto;
    }
    
    .info-section {
        margin-bottom: 0.6rem;
        flex-shrink: 0;
    }
    
    .address {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .phone-button {
        padding: 0.65rem 1.4rem;
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .hours {
        flex-direction: column;
        gap: 0;
        align-items: center;
        margin-top: 0.4rem;
        flex-shrink: 0;
    }
    
    .hours-column {
        text-align: center;
        margin-bottom: 0.25rem;
    }
    
    .hours-column p {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
        line-height: 1.3;
    }
    
    .menu-button {
        padding: 0.75rem 2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
        margin-top: 0.6rem;
        flex-shrink: 0;
    }
    
    .nav-menu {
        width: 100%;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .logo-container {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .address {
        font-size: 0.9rem;
    }
    
    .phone-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hours-column p {
        font-size: 0.85rem;
    }
    
    .menu-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* Menu Page Styles */
.menu-container {
    background: white;
    color: #000;
    min-height: 100vh;
    padding: 2rem;
    padding-top: 5rem;
}

.menu-container .hamburger-menu svg path {
    stroke: #000;
}

.menu-content {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-section {
    margin-bottom: 4rem;
}

.menu-title {
    font-size: 2.5rem;
    font-weight: 200;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    color: #000;
}

.menu-subtitle {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    color: #000;
    text-transform: uppercase;
}

.menu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
    margin-top: 1rem;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-title:first-child {
    margin-top: 0;
}

.category-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brunch-time {
    font-size: 0.9rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    gap: 1rem;
}

.item-name {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    flex: 1;
    line-height: 1.4;
}

.item-price {
    font-size: 1rem;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}

.item-description {
    font-size: 0.85rem;
    font-weight: 200;
    color: #666;
    line-height: 1.5;
    margin-top: 0.3rem;
}

/* Mobile Menu Styles */
@media screen and (max-width: 767px) {
    .menu-container {
        padding: 1rem;
        padding-top: 4rem;
    }
    
    .menu-title {
        font-size: 2rem;
    }
    
    .menu-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .menu-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 0 2rem;
    }
    
    .category-title {
        font-size: 1.1rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .menu-item {
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .item-name {
        font-size: 0.95rem;
    }
    
    .item-price {
        font-size: 0.95rem;
    }
    
    .item-description {
        font-size: 0.8rem;
    }
    
    .brunch-time {
        font-size: 0.8rem;
        display: block;
        margin-top: 0.3rem;
    }
}

/* Contacts Page */
body.contacts-body {
    background: linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.9)),
                url('background.jpg') center/cover no-repeat fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    font-family: 'Geist', sans-serif;
}

.contacts-root {
    min-height: 100vh;
    padding: 3rem 4rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-layout {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 3rem;
    backdrop-filter: blur(8px);
}

.contacts-card,
.map-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.contacts-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacts-tag {
    font-size: 0.85rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: #D4AF37;
}

.contacts-title {
    font-size: 2.5rem;
    font-weight: 200;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.contacts-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-detail .detail-label {
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
}

.contact-detail .detail-value {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #fff;
}

.contact-inline-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-inline-link:hover {
    color: #D4AF37;
    border-color: #D4AF37;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
}

.map-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-title {
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.map-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.route-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.route-note strong {
    color: #fff;
    font-weight: 400;
}

@media screen and (min-width: 1025px) {
    body.contacts-body {
        background-position: center 30%;
    }
}

@media screen and (max-width: 1024px) {
    .contacts-root {
        padding: 2rem;
    }
    
    .contacts-layout {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    body.contacts-body {
        background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)),
                    url('background.jpg') center/cover no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
    
    .contacts-root {
        padding: 1.5rem;
    }
    
    .contacts-card,
    .map-card {
        padding: 1.8rem;
        border-radius: 18px;
    }
    
    .contacts-title {
        font-size: 2rem;
    }
    
    .map-wrapper {
        padding-top: 75%;
    }
    
    .contact-links {
        flex-direction: column;
    }
    
    .contact-link {
        justify-content: center;
    }
}

/* Vacancies Page */
body.vacancies-body {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.95)),
                url('background.jpg') center/cover no-repeat fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.vacancies-root {
    min-height: 100vh;
    padding: 3rem 4rem 4rem;
    display: flex;
    justify-content: center;
}

.vacancies-layout {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.vacancies-hero {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.vacancies-hero .hero-tag {
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    font-size: 0.85rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.vacancies-hero h1 {
    font-size: 2.8rem;
    font-weight: 200;
    margin-bottom: 1rem;
}

.vacancies-hero p {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.vacancy-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.vacancy-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.vacancy-role {
    font-size: 1.6rem;
    font-weight: 300;
}

.vacancy-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vacancy-badge {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.vacancy-badge.badge-gold {
    border-color: #D4AF37;
    color: #D4AF37;
}

.vacancy-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.vacancy-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.vacancy-list li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.vacancy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4AF37;
}

.vacancy-meta {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.vacancies-footer {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media screen and (min-width: 1025px) {
    body.vacancies-body {
        background-position: center 30%;
    }
}

@media screen and (max-width: 1024px) {
    .vacancies-root {
        padding: 2rem;
    }
    
    .vacancies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Events Page */
body.events-body {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.92)),
                url('background.jpg') center/cover no-repeat fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.events-root {
    min-height: 100vh;
    padding: 3rem 4rem 4rem;
    display: flex;
    justify-content: center;
}

.events-layout {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.events-hero {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.events-hero .hero-tag {
    text-transform: uppercase;
    letter-spacing: 0.35rem;
    font-size: 0.85rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.events-hero h1 {
    font-size: 2.8rem;
    font-weight: 200;
    margin-bottom: 1rem;
}

.events-hero p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 780px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 1.5rem;
}

.event-date {
    width: 70px;
    min-width: 70px;
    height: 90px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    text-transform: uppercase;
}

.event-day {
    font-size: 2rem;
    font-weight: 300;
}

.event-month {
    letter-spacing: 0.15rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.event-type {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.6rem;
}

.event-content h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.event-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
}

.events-tiled {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.events-photo-card {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 260px;
}

.events-photo-card .photo-title {
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-size: 0.85rem;
    color: #D4AF37;
}

.events-photo-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.events-footer {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media screen and (min-width: 1025px) {
    body.events-body {
        background-position: center 30%;
    }
}

@media screen and (min-width: 1025px) {
    body.events-body {
        background-position: center 30%;
    }
}

@media screen and (max-width: 1024px) {
    .events-root {
        padding: 2rem;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .events-tiled {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    body.events-body {
        background: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.97)),
                    url('background.jpg') center/cover no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
    
    .events-root {
        padding: 1.5rem;
    }
    
    .events-hero {
        padding: 2rem;
    }
    
    .events-hero h1 {
        font-size: 2.2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .event-date {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: flex-start;
        gap: 0.6rem;
        padding: 0.8rem 1rem;
    }
}

@media screen and (max-width: 767px) {
    body.vacancies-body {
        background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95)),
                    url('background.jpg') center/cover no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }
    
    .vacancies-root {
        padding: 1.5rem;
    }
    
    .vacancies-hero {
        padding: 2rem;
    }
    
    .vacancies-hero h1 {
        font-size: 2.2rem;
    }
    
    .vacancies-grid {
        grid-template-columns: 1fr;
    }
    
    .vacancy-card {
        padding: 1.8rem;
    }
    
    .vacancy-header {
        flex-direction: column;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

/* About Page */
body.about-body {
    background: radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.25), transparent 45%),
                radial-gradient(circle at 75% 0%, rgba(255, 255, 255, 0.08), transparent 40%),
                linear-gradient(120deg, rgba(12, 12, 12, 0.85), rgba(12, 12, 12, 0.96)),
                url('background.jpg') center/cover no-repeat fixed;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: #fff;
    font-family: 'Geist', sans-serif;
}

.about-root {
    position: relative;
    min-height: 100vh;
    padding: 3rem 4rem 4rem;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: 0;
}

.glow-one {
    top: -150px;
    left: -60px;
    background: #d4af37;
}

.glow-two {
    bottom: 10%;
    right: -120px;
    background: #f46b45;
}

.glow-three {
    bottom: -140px;
    left: 20%;
    background: #5f2c82;
}

.about-layout {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-hero,
.about-vibe-grid,
.about-story,
.about-team,
.about-playlist,
.about-cta {
    width: 100%;
}

.about-hero {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-lede {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 880px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.highlight-label {
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.highlight-value {
    font-size: 1.4rem;
    font-weight: 300;
}

.highlight-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-vibe-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.vibe-card {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.vibe-card--glow::after,
.vibe-card--lined::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    pointer-events: none;
}

.vibe-card--glow::after {
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.4), transparent 55%);
    opacity: 0.4;
}

.vibe-card--lined::after {
    border: 1px solid rgba(255, 255, 255, 0.15);
    mix-blend-mode: screen;
}

.vibe-tag {
    letter-spacing: 0.3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.vibe-card h2 {
    font-size: 1.6rem;
    font-weight: 300;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 1.5rem;
}

.story-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-tag {
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.6rem;
}

.story-card h2 {
    font-size: 2rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
}

.story-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-steps li {
    border-left: 2px solid rgba(212, 175, 55, 0.6);
    padding-left: 1.2rem;
}

.story-steps span {
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.story-steps p {
    margin-top: 0.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.story-side-card {
    background: rgba(0, 0, 0, 0.45);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-side-card span {
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-team {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.team-header h2 {
    font-size: 2.4rem;
    font-weight: 200;
}

.team-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.team-card {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.team-role {
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.team-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.about-playlist {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link--bright {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.contact-link--bright:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.about-cta {
    text-align: center;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.about-cta h2 {
    font-size: 2.2rem;
    font-weight: 200;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.about-cta a {
    color: #D4AF37;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.about-cta a:hover {
    border-color: #D4AF37;
}

@media screen and (max-width: 1200px) {
    .about-root {
        padding: 2.5rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 1025px) {
    body.about-body {
        background-position: center 30%;
    }
}

@media screen and (max-width: 1024px) {
    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .about-vibe-grid,
    .team-grid,
    .about-story {
        grid-template-columns: 1fr;
    }

    .about-playlist {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 767px) {
    body.about-body {
        background: linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.97)),
                    url('background.jpg') center/cover no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .about-root {
        padding: 1.8rem 1.2rem 2.5rem;
    }

    .about-hero,
    .about-team {
        padding: 2rem;
    }

    .about-hero h1 {
        font-size: 2.1rem;
    }

    .vibe-card,
    .story-card,
    .story-side-card,
    .about-playlist,
    .about-cta {
        padding: 1.5rem;
    }
}
