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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.floating-icons {
    position: fixed;
    top: 3.82rem;
    right: 6.18rem;
    z-index: 1000;
    display: flex;
    gap: 1.618rem;
}

.email-link,
.instagram-link {
    color: #333;
    font-size: 2.36rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.82rem;
    height: 2.36rem;
    padding: 0.618rem 1rem;
}

.email-link:hover,
.instagram-link:hover {
    color: #000;
    transform: scale(1.1);
}

.main {
    margin-top: 0;
    overflow-x: hidden;
}

.hero {
    text-align: center;
    height: 100vh;
    padding: 50% 0;
    background: #ffffff;
}

.hero-content {
    max-width: none;
    margin: 0;
}

.hero-image {
    margin-bottom: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: none;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
}

.coming-soon {
    padding: 9rem 2rem 10.8rem;
    background: white;
    text-align: center;
    min-height: 54vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-container {
    max-width: 61.8%;
    margin: 0 auto;
}

.coming-soon h2 {
    font-size: 3.236rem;
    color: #333;
    margin-bottom: 2.618rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
    cursor: pointer;
}

.coming-soon h2:hover {
    color: #dc3545;
}

.coming-soon p {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(15px) saturate(180%);
    padding: 2rem;
    overflow-y: auto;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.05) 0%, transparent 50%);
}

.modal-content {
    background: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: none;
    border: none;
    margin: 5% auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 10%);
}

.close {
    color: white;
    float: right;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    z-index: 2001;
}

.close:hover {
    color: #ccc;
}

.modal h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.contact-form {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 400;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    backdrop-filter: blur(20px) saturate(150%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 1rem;
    backdrop-filter: blur(20px) saturate(150%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.loading-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.envelope-icon {
    font-size: 4rem;
    color: #333;
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

.loading-text {
    font-size: 1.2rem;
    color: #333;
    font-weight: 300;
    letter-spacing: 0.05em;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.sending {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.sending::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.success-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fafafa;
    padding: 3rem 4rem;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    text-align: center;
    z-index: 4000;
    opacity: 0;
    animation: successFadeIn 0.5s ease-out forwards;
    border-left: 4px solid #1f2937;
}

.success-icon {
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    animation: successBounce 0.6s ease-out 0.2s both;
}

.success-text {
    font-size: 1.4rem;
    color: #1f2937;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.8rem;
}

.success-subtext {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.success-detail {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 400;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes successBounce {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    z-index: 3500;
    opacity: 0;
    animation: overlayFadeIn 0.3s ease-out forwards;
}

@keyframes overlayFadeIn {
    to {
        opacity: 1;
    }
}

.footer {
    background: white;
    color: #333;
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #666;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .floating-icons {
        top: 1rem;
        right: 1.618rem;
        gap: 0.618rem;
    }
    
    .email-link,
    .instagram-link {
        font-size: 1.618rem;
        width: 2.618rem;
        height: 1.618rem;
        padding: 0.382rem 0.618rem;
    }
    
    .hero-image {
        height: 100vw;
        overflow: hidden;
    }
    
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .coming-soon {
        padding: 4.003rem 0.618rem 5.366rem;
        min-height: 110vw;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
        margin-bottom: 1.236rem;
        letter-spacing: 0.123rem;
    }
    
    .footer {
        padding: 1.236rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.618rem;
    }
    
    .success-message {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        max-width: calc(100vw - 2rem);
        border-radius: 2px;
    }
    
    .success-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .success-text {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .success-subtext {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .success-detail {
        font-size: 0.8rem;
    }
    
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
        justify-content: center;
        min-height: 100vh;
    }
    
    .modal h2 {
        font-size: 1.472rem;
        margin-bottom: 1.118rem;
    }
    
    .form-group {
        margin-bottom: 1.118rem;
    }
    
    .form-group label {
        font-size: 0.854rem;
        margin-bottom: 0.382rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.618rem;
        font-size: 0.944rem;
    }
    
    .submit-btn {
        padding: 0.854rem;
        font-size: 0.944rem;
    }
    
    .envelope-icon {
        font-size: 2.472rem;
        margin-bottom: 0.618rem;
    }
    
    .loading-text {
        font-size: 0.944rem;
    }
}