/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    background: #FFFFFF;
    color: #2B2A28;
    line-height: 1.6;
}

/* Main Container - Full Height, Centered */
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
    width: 100%;
}

/* Background Section with Blurred Logo */
.background-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Blurred Logo Background */
.logo-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    object-fit: contain;
    object-position: center center;
    filter: blur(2px);
    z-index: 0;
}

/* Semi-transparent Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Content Wrapper - sits on top of background and overlay */
.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 40px;
    max-width: 100%;
}

/* Headline - Montserrat */
.headline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 7vw, 48px);
    font-weight: 700;
    text-align: center;
    color: #2B2A28;
    margin-bottom: 16px;
    max-width: 700px;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

/* Subheadline - Montserrat */
.subheadline {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(15px, 2.5vw, 17px);
    font-weight: 400;
    text-align: center;
    color: #2B2A28;
    margin-bottom: 14px;
    max-width: 600px;
    line-height: 1.6;
}

/* Call-to-Action Text - Montserrat */
.cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(13px, 2vw, 15px);
    font-weight: 400;
    text-align: center;
    color: #2B2A28;
    margin-bottom: 24px;
    max-width: 600px;
}

/* Contact Methods Container */
.contact-methods {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

/* Phone Link - Prominent */
.phone-link {
    margin-bottom: 0;
}

.email-link {
    margin-bottom: 0;
}

.phone-link a,
.email-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 600;
    color: #B08D57;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.phone-link a:hover,
.email-link a:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.contact-icon {
    flex-shrink: 0;
    stroke: currentColor;
    color: #B08D57;
}

/* Email Form */
.email-form {
    width: 100%;
    max-width: 600px;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    color: #2B2A28;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.email-input:focus {
    outline: none;
    border-color: #999;
    box-shadow: 0 0 0 3px rgba(153, 153, 153, 0.1);
}

.email-input::placeholder {
    color: #999;
}

.submit-button {
    padding: 12px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    background: #B08D57;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.submit-button:hover {
    background: #8B6F47;
}

.submit-button:active {
    transform: scale(0.98);
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #2B2A28;
    max-width: 600px;
}

.thank-you-message p {
    margin: 0;
}

/* Honeypot Field (Hidden) */
.honeypot {
    display: none;
    position: absolute;
    left: -9999px;
}

/* ============================================
   ANIMATION: Fade In & Slide Up
   ============================================ */

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Staggered animation delays */
.headline {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0s;
}

.subheadline {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

.cta-text {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.contact-methods {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.email-form {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    animation-delay: 0.8s;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .headline,
    .subheadline,
    .cta-text,
    .contact-methods,
    .email-form {
        opacity: 1;
        transform: translateY(0);
        animation-delay: 0s !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet and below */
@media (max-width: 768px) {
    .container {
        padding: 16px;
    }

    .content-wrapper {
        padding: 50px 30px;
    }

    .headline {
        margin-bottom: 14px;
    }

    .subheadline {
        margin-bottom: 12px;
    }

    .cta-text {
        margin-bottom: 20px;
    }

    .contact-methods {
        margin-bottom: 24px;
        flex-direction: row;
        gap: 28px;
    }

    .phone-link,
    .email-link {
        margin-bottom: 0;
    }

    .form-group {
        flex-direction: column;
        gap: 10px;
    }

    .email-input {
        min-width: 100%;
    }

    .submit-button {
        width: 100%;
    }
}

/* Mobile - Small screens */
@media (max-width: 480px) {
    .container {
        padding: 12px;
    }

    .content-wrapper {
        padding: 40px 20px;
    }

    .headline {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .subheadline {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .cta-text {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 20px;
    }

    .phone-link a,
    .email-link a {
        font-size: 14px;
    }

    .email-input,
    .submit-button {
        font-size: 14px;
        padding: 11px 14px;
    }
}
