/* £20k Premium Architectural Blueprint Base Styles */

/* Lenis Recommended CSS */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}
.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* 3D Glassy Effects & Utility */
.glass-panel {
    background: rgba(251, 249, 244, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 30px 60px -10px rgba(30, 101, 104, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.perspective-1000 {
    perspective: 1000px;
}
.transform-3d {
    transform-style: preserve-3d;
}

/* Hide GSAP elements initially to prevent FOUC */
.gsap-reveal {
    opacity: 0;
    visibility: hidden;
}

/* Cookie Consent Banner */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #131413;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.3);
}
#cookie-consent.visible {
    transform: translateY(0);
}
#cookie-consent p {
    color: rgba(228, 226, 221, 0.7);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 200px;
}
#cookie-consent a {
    color: #1e6568;
    text-decoration: underline;
    text-underline-offset: 3px;
}
#cookie-consent .cookie-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}
#cookie-accept {
    background: #1e6568;
    color: #fff;
    border: none;
    padding: 10px 24px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}
#cookie-accept:hover {
    background: #3c7f81;
}
#cookie-decline {
    background: transparent;
    color: rgba(228, 226, 221, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
#cookie-decline:hover {
    border-color: rgba(255,255,255,0.3);
    color: rgba(228, 226, 221, 0.8);
}

/* Blueprint Line Grid Animation */
@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}
.blueprint-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 5s linear forwards;
}
