/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #000000;
    --primary-red: #d22744;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-light: #e0e0e0;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-color: rgba(210, 39, 68, 0.2);
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-white);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
    position: relative;
    overscroll-behavior-y: none;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Age Verification Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
}

.modal.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 60px 50px;
    border-radius: 24px;
    text-align: center;
    max-width: 520px;
    width: 90%;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(210, 39, 68, 0.2);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 30px rgba(210, 39, 68, 0.4);
}

.modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.modal-content p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(210, 39, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(210, 39, 68, 0.4);
    background: #e02d4d;
}

.btn-secondary {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    color: var(--text-white);
    border-color: var(--primary-red);
    background: rgba(210, 39, 68, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 45px;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(210, 39, 68, 0.3));
    transition: filter 0.3s ease;
}

.nav-logo img:hover {
    filter: drop-shadow(0 0 15px rgba(210, 39, 68, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: -0.3px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(210, 39, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(210, 39, 68, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(210, 39, 68, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(210, 39, 68, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(210, 39, 68, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-red);
    position: relative;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
    font-weight: 400;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-red);
    background: rgba(210, 39, 68, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 18px 40px;
    background: var(--primary-red);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(210, 39, 68, 0.3);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(210, 39, 68, 0.4);
    background: #e02d4d;
}

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
    display: inline-block;
}

.btn-secondary:hover {
    color: var(--text-white);
    border-color: var(--primary-red);
    background: rgba(210, 39, 68, 0.1);
    transform: translateY(-3px);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.4s ease 0.1s both;
}

@media (max-width: 768px) {
    .hero-right {
        display: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    box-shadow: 0 0 60px rgba(210, 39, 68, 0.4);
    position: relative;
    z-index: 2;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(210, 39, 68, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@media (max-width: 768px) {
    .scroll-hint {
        display: none;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    border-radius: 2px;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(210, 39, 68, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    line-height: 1.8;
    margin-top: 24px;
}

/* About Section */
.about {
    background: var(--bg-dark);
    position: relative;
}

.about-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

.about-header-left {
    position: sticky;
    top: 140px;
}

.about-header-right {
    padding-top: 40px;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 500px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.about-item {
    background: var(--bg-card);
    padding: 48px;
    display: flex;
    gap: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.about-item:hover::before {
    transform: scaleY(1);
}

.about-item:hover {
    background: rgba(17, 17, 17, 0.8);
    transform: translateX(8px);
}

.about-item-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    min-width: 40px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.about-item:hover .about-item-number {
    opacity: 1;
}

.about-item-content {
    flex: 1;
}

.about-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.about-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Locations Section */
.locations {
    background: var(--primary-black);
}

.locations-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: start;
}

.locations-header-left {
    position: sticky;
    top: 140px;
}

.locations-header-right {
    padding-top: 40px;
}

.locations-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 500px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(210, 39, 68, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.location-card:hover::before {
    opacity: 1;
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(210, 39, 68, 0.2);
}

.location-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.location-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(210, 39, 68, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon-wrapper {
    background: rgba(210, 39, 68, 0.2);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

.location-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(210, 39, 68, 0.3));
    transition: transform 0.3s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
}

.location-badge {
    padding: 6px 16px;
    background: rgba(210, 39, 68, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.location-card:hover .location-badge {
    background: rgba(210, 39, 68, 0.2);
    border-color: var(--primary-red);
}

.location-card-content {
    flex: 1;
}

.location-card-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.location-card-content p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--bg-dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-left {
    position: sticky;
    top: 140px;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-top: 24px;
    max-width: 500px;
}

.contact-right {
    padding-top: 40px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.social-btn {
    background: var(--bg-card);
    padding: 28px 32px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.social-btn:hover::before {
    transform: scaleY(1);
}

.social-btn:hover {
    background: rgba(17, 17, 17, 0.9);
    transform: translateX(8px);
}

.social-btn-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(210, 39, 68, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-btn:hover .social-btn-icon {
    background: rgba(210, 39, 68, 0.2);
    transform: scale(1.1);
}

.social-btn-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.social-btn-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.social-btn:hover .social-btn-label {
    color: var(--primary-red);
}

.social-btn-handle {
    font-size: 0.9rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.social-btn:hover .social-btn-handle {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--primary-black);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-logo {
    height: 40px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(210, 39, 68, 0.3));
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: -0.3px;
}

.footer-nav a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-text {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-disclaimer {
    color: var(--text-gray);
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }
    
    .hero-image-wrapper {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 30px;
    }
    
    .hero-right {
        order: -1;
        justify-content: center;
    }
    
    .hero-image-wrapper {
        width: 280px;
        height: 280px;
    }
    
    .about-header,
    .locations-header,
    .contact-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-header-left,
    .locations-header-left,
    .contact-header-left {
        position: static;
    }
    
    .about-header-right,
    .locations-header-right,
    .contact-header-right {
        padding-top: 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-left {
        position: static;
    }
    
    .contact-right {
        padding-top: 0;
    }
    
    .social-btn {
        padding: 24px 28px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html, body {
        overscroll-behavior-y: none;
        -webkit-overflow-scrolling: touch;
        position: relative;
        height: auto;
        min-height: 100vh;
    }
    
    body {
        overflow-y: auto;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        border-top: 1px solid var(--border-color);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-image-wrapper {
        width: 240px;
        height: 240px;
    }

    section {
        padding: 80px 0;
    }
    
    .about-item {
        padding: 32px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 28px;
    }

    .modal-content {
        padding: 40px 30px;
    }

    .modal-content h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-title {
        letter-spacing: -0.01em;
    }

    .section-title {
        letter-spacing: -0.01em;
    }

    .modal-content {
        padding: 30px 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}
