/* Liminal Spaces Design - Architectural Naming Scheme */
/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e5e0 100%);
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.span-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.vault-navigation {
    background: rgba(245, 243, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 229, 224, 0.5);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.vault-navigation .span-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.arch-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #8b7355;
}

.arch-brand i {
    color: #a0956b;
}

.arch-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.arch-menu li a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.arch-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b7355, #a0956b);
    transition: width 0.3s ease;
}

.arch-menu li a:hover::after {
    width: 100%;
}

.column-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #8b7355;
    cursor: pointer;
}

/* Cookie Banner */
.vault-foundation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: all 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    border-top: 2px solid #8b7355;
}

.vault-foundation.show {
    transform: translateY(0);
    animation: slideUpBounce 0.6s ease-out;
}

@keyframes slideUpBounce {
    0% { transform: translateY(100%); }
    60% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.vault-foundation .span-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.vault-foundation p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.arch-buttons {
    display: flex;
    gap: 15px;
}

.column-finish, .column-frame {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.column-finish {
    background: linear-gradient(135deg, #8b7355, #a0956b);
    color: white;
}

.column-finish:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.column-frame {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.column-frame:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.vault-foundation-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f3f0 0%, #ede9e2 50%, #e8e5e0 100%);
    position: relative;
    overflow: hidden;
}

.vault-foundation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 100px,
        rgba(139, 115, 85, 0.05) 100px,
        rgba(139, 115, 85, 0.05) 102px
    );
    animation: liminalShift 20s linear infinite;
}

@keyframes liminalShift {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

.arch-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.arch-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c2c2c;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.foundation-walls {
    font-size: 1.4rem;
    color: #5a5a5a;
    margin-bottom: 40px;
    line-height: 1.7;
}

.span-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.2);
    transition: transform 0.3s ease;
}

.span-hero-image:hover {
    transform: translateY(-10px);
}

.vault-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #8b7355, #a0956b);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

.vault-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 115, 85, 0.4);
}

/* Services Section */
.span-frame {
    padding: 100px 0;
    background: linear-gradient(180deg, #ede9e2 0%, #f5f3f0 100%);
    position: relative;
}

.arch-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 60px;
}

.vault-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.column-service-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 115, 85, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.column-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.1), transparent);
    transition: left 0.5s ease;
}

.column-service-card:hover::before {
    left: 100%;
}

.column-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 115, 85, 0.15);
}

.span-service-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 15px;
}

.column-service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.column-service-card p {
    color: #5a5a5a;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Benefits Section */
.arch-walls {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8e5e0 0%, #f5f3f0 100%);
}

.foundation-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 60px;
}

.vault-benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.column-benefits-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    margin-top: 40px;
}

.column-benefits-text h3:first-child {
    margin-top: 0;
}

.column-benefits-text p {
    color: #5a5a5a;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.span-benefits-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.2);
}

/* Process Section */
.column-roof {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f3f0 0%, #ede9e2 100%);
}

.vault-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 60px;
}

.foundation-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.arch-process-step {
    text-align: center;
    position: relative;
}

.span-process-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.arch-process-step:hover .span-process-image {
    transform: scale(1.05);
}

.arch-process-step h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.arch-process-step p {
    color: #5a5a5a;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Contact Section */
.foundation-finish {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8e5e0 0%, #ddd9d2 100%);
}

.arch-contact-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 60px;
}

.vault-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.span-contact-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 15px;
}

.column-contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 25px;
}

.column-contact-info p {
    color: #5a5a5a;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.arch-contact-benefits {
    margin-top: 40px;
}

.column-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 500;
}

.column-benefit-item i {
    color: #8b7355;
    font-size: 1.2rem;
}

/* Form Styles */
.vault-contact-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 115, 85, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.vault-contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-align: center;
}

.arch-form-group {
    margin-bottom: 25px;
}

.arch-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

.arch-form-group input,
.arch-form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(139, 115, 85, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.arch-form-group input:focus,
.arch-form-group select:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.vault-submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #8b7355, #a0956b);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.vault-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.3);
}

/* Footer */
.vault-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #3c3c3c 100%);
    color: white;
    padding: 60px 0 30px;
}

.arch-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.column-footer-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #a0956b;
}

.column-footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.span-footer-image {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

.arch-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cccccc;
}

.arch-contact-item i {
    color: #a0956b;
    width: 20px;
}

.foundation-footer-links {
    list-style: none;
}

.foundation-footer-links li {
    margin-bottom: 10px;
}

.foundation-footer-links li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.foundation-footer-links li a:hover {
    color: #a0956b;
}

.arch-footer-bottom {
    border-top: 1px solid rgba(160, 149, 107, 0.3);
    padding-top: 30px;
    text-align: center;
    color: #cccccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .column-mobile-toggle {
        display: block;
    }

    .arch-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(245, 243, 240, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .arch-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .arch-hero-content h1 {
        font-size: 2.5rem;
    }

    .vault-benefits-content,
    .vault-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vault-foundation .span-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .vault-foundation p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .arch-buttons {
        width: 100%;
        justify-content: center;
        flex-direction: row;
        gap: 10px;
    }

    .column-finish, .column-frame {
        flex: 1;
        min-width: 120px;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .arch-hero-content h1 {
        font-size: 2rem;
    }

    .arch-section-title,
    .foundation-section-title,
    .vault-section-title,
    .arch-contact-title {
        font-size: 2rem;
    }

    .vault-services-grid,
    .foundation-process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Legal Pages Styles */
.vault-legal-page {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e5e0 100%);
    min-height: 100vh;
}

.arch-legal-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: center;
}

.arch-legal-update {
    text-align: center;
    color: #8b7355;
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-style: italic;
}

.foundation-legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(139, 115, 85, 0.1);
}

.column-legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}

.column-legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.column-legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 20px;
    border-left: 4px solid #8b7355;
    padding-left: 20px;
}

.column-legal-section p {
    color: #5a5a5a;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
    text-align: justify;
}

.column-legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.column-legal-section li {
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 10px;
}

.column-legal-section strong {
    color: #2c2c2c;
    font-weight: 600;
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .foundation-legal-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .arch-legal-title {
        font-size: 2.2rem;
    }
    
    .column-legal-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .arch-legal-title {
        font-size: 1.8rem;
    }
    
    .foundation-legal-content {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .column-legal-section h2 {
        font-size: 1.3rem;
        padding-left: 15px;
    }
} 