/* ==========================================================================
   AMBERSTONE QUIET LUXURY EDITORIAL SPECIFICATION
   True Split-Screen Atmospheric Architecture - LIGHT THEME CONVERSION
   ========================================================================== */

/* Global Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --gold-accent: #000000;
    --yellow-accent: #222222;
    --dark-slate: #FFFFFF;
    
    /* 
       EXTRACTED LOGO COLOR VARIABLE: 
       Successfully synchronized to your brand accent tone.
    */
    --logo-extracted-color: #43a764; 
}
body {
    background: linear-gradient(
        to right, 
        #FFFFFF 0%, 
        #FFFFFF 45%, 
        #F9F6F2 75%, 
        #F4EFEA 100%
    );
    background-color: #FFFFFF;
    color: #1A1410;
    font-family: 'Inter', -apple-system, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   AMBERSTONE HERO V3 - REFINED LUXURY CENTER ENGINE (UPDATED)
   ========================================================================== */

.amberstone-hero-v3-center {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background-color: #0f1612;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-render-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    animation: luxuryPanZoom 10s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* --- LIGHT AMBIENT SHADOW OVERLAY --- */
.hero-scenographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.05) 40%, 
        rgba(0, 0, 0, 0.15) 70%, 
        rgba(0, 0, 0, 0.5) 100%
    );
}

/* --- HEADER / TOP BRAND LOGO GROUP --- */
.hero-top-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 5%; /* Shifted up: Reduced from 40px to 24px */
    box-sizing: border-box;
    z-index: 10;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.3) 45%, 
        rgba(0, 0, 0, 0) 100%
    );
}

/* Spans full width of the navbar to split elements apart */
.hero-brand-logo-group {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes pride logo left, amberstone right */
    width: 100%;
    opacity: 0;
    animation: luxuryFadeDown 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo-pride {
    height: 80px;       
    width: auto;
    display: block;
    
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.3)) 
            drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.2)); /* Double layer for sharp legibility */
}

.hero-secondary-logo {
    display: flex;
    align-items: center;
    border-left: none; /* Removed vertical border divider since logos are split */
    padding-left: 0;
    height: auto;
}

.amberstone-wordmark {
    height: 60px;
    width: auto;
    display: block;
    filter: none; 
}

/* --- CENTER CONTENT BLOCK --- */
.hero-content-center-pane {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 950px; /* Widened slightly to elegantly support the two-line format */
    padding: 0 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

/* --- TITLE HOOK --- */
.serif-editorial-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: #FFFFFF;     
    margin: 0 0 20px 0;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    
    opacity: 0;
    animation: luxuryFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
}

.editorial-divider {
    width: 80px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4); 
    margin-bottom: 24px;
    
    opacity: 0;
    transform-origin: center center;
    animation: luxuryScaleWidthCenter 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

/* --- CLEAN GEOLOCATION ROW --- */
.luxury-location-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    
    opacity: 0;
    animation: luxuryFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

.location-png-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.location-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* --- CTA BUTTON --- */
.hero-cta-btn {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--dark-slate);
    background-color: var(--logo-extracted-color); 
    padding: 16px 48px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid var(--logo-extracted-color);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    opacity: 0;
    animation: luxuryFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

.hero-cta-btn:hover {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-3px);
}

.artistic-impression-tag {
    position: absolute;
    bottom: 24px;
    right: 4%;                      
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6); 
    z-index: 4;                  
}

/* --- ANIMATION ENGINE KEYS --- */
@keyframes luxuryFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes luxuryFadeDown {
    0% { opacity: 0; transform: translateY(-15px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes luxuryScaleWidthCenter {
    0% { opacity: 0; transform: scaleX(0); }
    100% { opacity: 1; transform: scaleX(1); }
}

@keyframes luxuryPanZoom {
    0% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* --- MOBILE RESPONSIVE LAYOUT --- */
@media (max-width: 768px) {
    .hero-top-navigation {
        padding: 16px 20px; /* Kept tight and shifted upwards on mobile */
    }

    .hero-brand-logo-group {
        justify-content: space-between; /* Maintains distinct split layouts on mobile */
    }

    .logo-pride {
        height: 50px;
    }

    .amberstone-wordmark {
        height: 36px;
    }

    .serif-editorial-title {
        font-size: 1.85rem; /* Balanced out for crisp two-line reading breaks */
        line-height: 1.3;
    }

    .hero-content-center-pane {
        padding: 0 16px;
        margin-top: 40px;
    }

    .hero-cta-btn {
        width: 100%;
        max-width: 260px;
    }
}
/* ==========================================================================
   HERO SHINE ANIMATION ENGINE (DESKTOP: RIGHT TO LEFT)
   ========================================================================== */
.hero-shine-effect {
    position: absolute;
    top: 0;
    /* Start completely off-screen to the right */
    right: -30%; 
    width: 20%;  /* Width of the light beam */
    height: 100%;
    /* Soft white with a very subtle hint of logo luxury green sheen */
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(67, 167, 100, 0.12) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    /* Angle the beam for a premium glass-reflection look */
    transform: skewX(-25deg);
    z-index: 3;
    pointer-events: none;
    /* 6s total duration: Sweeps for ~2.5s, rests for ~3.5s */
    animation: sweepDesktop 3s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

@keyframes sweepDesktop {
    0% { right: -30%; }
    40%, 100% { right: 130%; } /* Move completely past the left edge and pause */
}

/* ==========================================================================
   HERO SHINE MOBILE OVERRIDE (MOBILE: TOP TO BOTTOM)
   ========================================================================== */
@media (max-width: 768px) {
    .hero-shine-effect {
        /* Change orientation to horizontal beam */
        left: 0;
        right: auto;
        width: 100%;
        height: 30%; /* Height of the horizontal beam */
        
        /* Start completely off-screen to the top */
        top: -40%; 
        
        /* Vertical gradient */
        background: linear-gradient(to bottom, 
            rgba(255, 255, 255, 0) 0%, 
            rgba(67, 167, 100, 0.12) 50%, 
            rgba(255, 255, 255, 0) 100%
        );
        
        /* Remove the angle so it lays flat horizontally */
        transform: skewX(0);
        
        animation: sweepMobile 3s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    }

    @keyframes sweepMobile {
        0% { top: -40%; }
        40%, 100% { top: 120%; } /* Sweep past the bottom edge and pause */
    }
}
/* ==========================================================================
   BRUTALIST EDITORIAL CONTENT LAYOUT
   ========================================================================== */
.amberstone-brutalist-about {
    width: 100%;
    padding: 100px 40px 0px 40px ;
    position: relative;
    overflow: hidden;
}

.brutalist-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.brutalist-sun-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 167, 100, 0.04) 0%, rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
    mix-blend-mode: multiply;
    animation: ambientMotes 10s ease-in-out infinite alternate;
}

.brutalist-meta-badge {
    color: var(--logo-extracted-color); 
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 36px;
    display: block;
    opacity: 0;
    animation: fadeInBlur 1.2s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
    animation-delay: 0.2s;
}

.brutalist-header {
    /*border-bottom: 1px solid rgba(0, 0, 0, 0.08);*/
    padding-bottom: 10px;
    margin-bottom: 0px;
}

.brutalist-header h2 {
    margin: 0 auto;     /* CRITICAL: Centers the block element because it has a max-width */
    text-align: center; /* Centers the text alignment inside the block */
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 300;
    line-height: 1.25;
    color: #222222; 
    letter-spacing: -0.5px;
    max-width: 1050px;
    opacity: 0;
    transform: translateY(25px);
    animation: slideUpReveal 1.4s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
    animation-delay: 0.4s;
}

.gold-sun-accent {
    color: var(--logo-extracted-color); 
    font-style: normal;
    display: block;
    margin-top: 12px;
    font-weight: 400;
}

/* ==========================================================================
   BRUTALIST SINGLE-COLUMN EDITORIAL LAYOUT
   ========================================================================== */
.brutalist-single-narrative {
    width: 100%;
    margin-bottom: 40px; /* Tightened gap to fluidly flow into the 3rd section */
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpReveal 1.4s cubic-bezier(0.215, 0.610, 0.355, 1) forwards;
    animation-delay: 0.7s;
}

.brutalist-single-narrative .centered-prose {
    max-width: 740px;  /* Optimal line length for sophisticated editorial typography */
    margin: 0 auto;    /* Centers the entire text block perfectly under the header */
}

.brutalist-single-narrative .centered-prose p {
    font-size: 16px;
    line-height: 1.9;   /* Elegant line separation */
    color: #444444; 
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: 0.2px;
}

.brutalist-single-narrative .centered-prose p:last-child {
    margin-bottom: 0; /* Prevents double stacking margins at the bottom */
}
@media (max-width: 768px) {
    #heading {
        font-size: clamp(22px, 6vw, 32px) !important; /* Scales cleanly down on small screens */
        line-height: 1.3;
        text-align: center;
        max-width: 100%;
    }
    
    .brutalist-header h2 .gold-sun-accent {
        display: block; /* Enforces the clean break to line 2 */
        margin-top: 8px;
        font-size: 0.95em; /* Slightly pulls down the accent scale to preserve the 2-line limit */
    }
}
/* --------------------------------------------------------------------------
   MOBILE & TABLET ADJUSTMENTS
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .brutalist-single-narrative {
        margin-bottom: 20px;
    }
    
    .brutalist-single-narrative .centered-prose {
        max-width: 100%; /* Spans full responsive content bounds on mobile */
        padding: 0 8px;
    }
    
    .brutalist-single-narrative .centered-prose p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 24px;
    }
}
/* ==========================================================================
   METRICS VAULT - ARCHITECTURAL REPRESENTATION ENGINE
   ========================================================================== */

.luxury-metrics-vault {
    /* Synced perfectly with the latest light landing page template baseline */
    padding: 100px 0;
    width: 100%;
}

.vault-container {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

.vault-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px; 
}

.vault-tile {
    background-color: #FFFFFF;
    /* Hard-coded crisp baseline border to keep sizing identical on hover */
    border: 1px solid rgba(0, 0, 0, 0.08); 
    border-radius: 4px; 
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01); 
    
    /* Hardware accelerated, buttery-smooth transition handling for the green shift */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    will-change: transform, border-color, box-shadow;
}

/* --- THE HOVER STATE UPGRADE --- */
.vault-tile:hover {
    transform: translateY(-6px);
    
    /* Elegant transition to your brand's signature emerald green */
    border-color: #2e7d32; 
    
    /* Multi-layered soft shadow to match the lift */
    box-shadow: 0 16px 36px rgba(46, 125, 50, 0.08), 
                0 4px 12px rgba(0, 0, 0, 0.02);
}

/* --- IMAGE CONTAINMENT WITH EMBEDDED LABELS --- */
.vault-image-wrapper {
    position: relative; 
    width: 100%;
    padding-top: 68%; 
    overflow: hidden;
    background-color: #F9F9F9;
}

.vault-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- EMBEDDED ARTISTIC IMPRESSION TAG SPECIFICATIONS --- */
.vault-artistic-tag {
    position: absolute;
    bottom: 10px;
    right: 12px;
    z-index: 5;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.45);
    padding: 3px 8px;
    border-radius: 2px;
    pointer-events: none; 
    user-select: none;
}

/* --- TYPOGRAPHY AND CONTENT CAPTION HOOK --- */
.vault-caption-zone {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #FFFFFF;
    flex-grow: 1;
}

.vault-meta-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888888;
}

.vault-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: #111111;
    margin: 0;
    letter-spacing: -0.01em;
}

.brand-green-text {
    color: #2e7d32; 
    font-weight: 600;
}

/* --- VAULT RESPONSIVE SCALING (MOBILE ADAPTATION) --- */
@media (max-width: 992px) {
    .vault-editorial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .luxury-metrics-vault {
        padding: 60px 0;
    }
    
    .vault-editorial-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .vault-caption-zone {
        padding: 20px;
    }
    
    .vault-title {
        font-size: 0.95rem;
    }
}
/* ==========================================================================
   REDEFINED NARRATIVE: UNIFIED EDITORIAL TRIPTYCH (UPDATED)
   ========================================================================== */
.cinematic-narrative-section {
    width: 100%;
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    background: transparent !important;
}

/* --- THE FRAMED DISPLAY CANVAS --- */
.narrative-hero-frame {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.narrative-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    filter: contrast(102%) brightness(98%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.narrative-hero-frame:hover .narrative-display-img {
    transform: scale(1.02);
}

/* --- THE HORIZONTAL NARRATIVE DECK --- */
.narrative-triptych-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.triptych-pillar {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    transition: border-color 0.4s ease;
    cursor: default;
}

.triptych-pillar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
    transition: color 0.4s ease; /* Smooth transition for heading color */
}

.triptych-pillar p {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.75;
    color: #555555;
    font-weight: 300;
    margin: 0;
}

/* --- SYSTEM HOVER ACTIONS --- */
/* When hovering over the pillar card container, change both the border and the heading color */
.triptych-pillar:hover {
    border-top-color: var(--logo-extracted-color);
}

.triptych-pillar:hover h3 {
    color: var(--logo-extracted-color);
}

/* --- RESPONSIVE ADAPTATION --- */
@media (max-width: 992px) {
    .cinematic-narrative-section {
        margin: 80px auto;
        gap: 40px;
    }
    
    .narrative-hero-frame {
        height: 320px;
    }
    
    .narrative-triptych-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .triptych-pillar {
        padding-top: 20px;
    }
}
/* ==========================================================================
   SECTION 4: TOP-ALIGNED INTEGRATION (EXACT BASELINE MATCH)
   ========================================================================== */

.luxury-register-section {
    width: 100%;
    /* Tightened top padding from 140px to 90px to reduce upward space */
    padding: 100px 40px 100px 100px; 
    background: transparent !important; 
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.register-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    /* Crucial: Forces both left and right columns to align from the exact same top baseline */
    align-items: start; 
    background: transparent !important;
}

/* --------------------------------------------------------------------------
   LEFT COLUMN: CONTEXT NARRATIVE (TOP ACCENT ADJUSTMENT)
   -------------------------------------------------------------------------- */
.register-narrative-column {
    display: flex;
    flex-direction: column;
    /* Subtle 4px top offset matches the natural line-height of the first form input label */
    padding-top: 4px; 
    background: transparent !important;
}

.register-meta {
    color: var(--logo-extracted-color);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.register-narrative-column h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: #000000;
    line-height: 1.2;
    margin: 0 0 24px 0;
}

.register-desc {
    font-size: 14.5px;
    line-height: 1.75;
    color: #444444;
    font-weight: 300;
    margin: 0;
    max-width: 340px;
}

/* --------------------------------------------------------------------------
   RIGHT COLUMN: FORM SPACING CONSTRAINTS
   -------------------------------------------------------------------------- */
.register-form-column {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    background: transparent !important;
}

.native-luxury-form {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
    max-width: 520px;
    background: transparent !important;
}

.form-input-group {
    position: relative;
    width: 100%;
    background: transparent !important;
}

/* Removed excessive top padding to let the first label sit cleanly on the grid start boundary */
.form-input-group input {
    width: 100%;
    padding: 10px 0 10px 0; 
    background: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    outline: none;
    box-shadow: none !important;
    transition: border-color 0.4s ease;
}

.form-input-group label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #666666;
    font-size: 15px;
    font-weight: 300;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease, font-size 0.3s ease;
}

/* Floating Label Mechanics Offset Adjustments */
.form-input-group input:focus ~ label,
.form-input-group input:not(:placeholder-shown) ~ label {
    transform: translateY(-20px);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--logo-extracted-color);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--logo-extracted-color);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.form-input-group input:focus ~ .input-underline {
    width: 100%;
}

.form-input-group input:focus {
    border-bottom-color: transparent;
}

/* Error States */
.error-message {
    display: block;
    color: #D93838;
    font-size: 11px;
    font-weight: 400;
    margin-top: 6px;
    opacity: 0;
    transform: translateY(-5px);
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease;
}

.form-input-group.has-error input {
    border-bottom-color: #D93838 !important;
}

.form-input-group.has-error label {
    color: #D93838 !important;
}

.form-input-group.has-error .error-message {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

/* Button Assembly Placement */
.form-action-wrapper {
    margin-top: 12px;
    display: flex;
    justify-content: flex-start;
    background: transparent !important;
}

/* ==========================================================================
   UPDATED: REGISTRATION BUTTON - SECONDARY HIERARCHY SOLID BLACK
   ========================================================================== */
.premium-submit-btn {
    background-color: #000000; /* Solid luxury brand block black */
    border: 1px solid #000000;
    color: #FFFFFF;            /* Pure white contrast text */
    padding: 13px 36px;        /* Matches height & alignment profiles */
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;                  /* Clean structural gap matching inventory rules */
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.premium-submit-btn .btn-arrow {
    transition: transform 0.2s ease;
}

@media (min-width: 993px) {
    .premium-submit-btn:hover {
        background-color: var(--logo-extracted-color); /* Elegant brand green crossover transition */
        border-color: var(--logo-extracted-color);
        color: #FFFFFF;
    }
    .premium-submit-btn:hover .btn-arrow {
        transform: translateX(3px); /* Snappy tracking animation match */
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN SYSTEM OVERRIDES
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .luxury-register-section {
        padding: 60px 24px 80px 24px;
    }

    .register-container {
        grid-template-columns: 100%;
        gap: 48px;
    }

    .register-narrative-column {
        padding-top: 0;
    }

    .register-narrative-column h2 {
        font-size: 38px;
        margin-bottom: 16px;
    }

    .register-desc {
        max-width: 100%;
    }

    .register-form-column {
        justify-content: flex-start;
    }

    .native-luxury-form {
        max-width: 100%;
        gap: 36px;
    }

    .premium-submit-btn {
        width: 100%;
        justify-content: center;
        background-color: #000000; 
        border-color: #000000;
        color: #FFFFFF;
    }
}
/* ==========================================================================
   BRAND FOOTER SIGN-OFF
   ========================================================================== */
.brutalist-brand-anchor {
    text-align: center;
    opacity: 0;
    animation: fadeInBlur 1.5s ease forwards;
    animation-delay: 1.3s;
    padding-bottom:0px;
}

.brutalist-brand-anchor .brand-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: #666666; 
    letter-spacing: 6px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.brutalist-brand-anchor .brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: #000000;
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* ==========================================================================
   MOBILE RESPONSIVE FIX FOR EXTENDING TEXT
   ========================================================================== */
@media (max-width: 576px) {
    .brutalist-brand-anchor {
        padding-bottom: 60px; /* Adjusted padding container height for mobile devices */
        padding-left: 12px;   /* Prevents touching the extreme edges of the screen */
        padding-right: 12px;
    }

    .brutalist-brand-anchor .brand-title {
        /* Force the title text to fluidly scale with the device viewport width */
        font-size: 7.2vw; 
        /* Drops from 8px down to 3px to drastically shorten the overall line length */
        letter-spacing: 3px; 
        display: block;
        white-space: nowrap;  /* Prevents awkward line-breaks in the middle of a string */
    }

    .brutalist-brand-anchor .brand-subtitle {
        font-size: 9px;
        letter-spacing: 3px;  /* Keeps tracking proportions completely uniform */
    }
}

/* ==========================================================================
   ANIMATION ENGINES
   ========================================================================== */
@keyframes ambientMotes {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0.9; transform: scale(1.02); }
}

@keyframes slideUpReveal {
    0% { opacity: 0; transform: translateY(30px); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeInBlur {
    0% { opacity: 0; filter: blur(6px); }
    100% { opacity: 1; filter: blur(0); }
}

/* ==========================================================================
   RESPONSIVE SCALING BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    body {
        background: linear-gradient(
            to bottom, 
            #FFFFFF 0%, 
            #FFFFFF 35%, 
            #F9F6F2 70%, 
            #F4EFEA 100__
        );
    }
    .amberstone-brutalist-about {
        padding: 60px 24px;
    }
    .brutalist-header {
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    .brutalist-grid-narrative {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    .brutalist-grid-narrative .left-statement h3 {
        padding-left: 20px;
    }
    .editorial-pillars-row {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 90px;
        padding-top: 48px;
    }
    .luxury-registry-portal {
        padding: 48px 24px;
        margin-bottom: 80px;
    }
    .registry-form-engine {
        flex-direction: column;
        width: 100%;
    }
    .form-group-field, .registry-submit-btn {
        width: 100%;
    }
}
/* ==========================================================================
   PREMIUM MARQUEE STRIP
   ========================================================================== */
.amberstone-marquee-strip {
    width: 100%;
    background-color: #F4EFEA;
    /* Hairline borders to match your editorial aesthetic */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); 
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee-track {
    display: flex;
    width: fit-content;
    /* Smooth, linear animation for luxury feel */
    animation: luxuryScroll 30s linear infinite;
}

/* Optional: Pauses the marquee if a user hovers over it to read */
.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #444444; /* Muted tone to keep it subtle */
}

/* Gold accent separator */
.marquee-content .marquee-separator {
    color: var(--logo-extracted-color); 
    margin: 0 40px;
    font-size: 12px;
}

@keyframes luxuryScroll {
    0% { transform: translateX(0); }
    /* Moves exactly half the track width (one full group) to loop seamlessly */
    100% { transform: translateX(-50%); } 
}

/* Mobile Adjustments for Marquee */
@media (max-width: 992px) {
    .amberstone-marquee-strip {
        padding: 12px 0;
    }
    .marquee-content span {
        font-size: 10px;
        letter-spacing: 3px;
    }
    .marquee-content .marquee-separator {
        margin: 0 24px;
    }
}
/* ==========================================================================
   HYPER-COMPACT MODAL ENGINE WITH SOLID LOGO-GREEN CTA
   ========================================================================== */
.luxury-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-modal-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* Shrunken Dialog Footprint */
.modal-dialog-engine {
    width: 100%;
    max-width: 390px; /* Reduced box frame width */
    margin: 0 auto;
}

.modal-content-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translate3d(0, -20px, 0);
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-modal-backdrop.is-visible .modal-content-card {
    transform: translate3d(0, 0, 0);
}

/* Body Container with tight padding padding */
.modal-body-compact {
    padding: 44px 28px 28px 28px;
}

/* Absolute Floating Close Trigger */
.modal-close-floating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 15;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.modal-close-floating:hover {
    opacity: 1;
}

.close-icon-cross {
    position: relative;
    width: 12px;
    height: 12px;
}

.close-icon-cross::before, .close-icon-cross::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 12px;
    height: 1px;
    background-color: #333333;
}

.close-icon-cross::before { transform: rotate(45deg); }
.close-icon-cross::after { transform: rotate(-45deg); }

/* PREMIUM SOLID BRAND GREEN CTA BUTTON - ALIGNS WITH HERO CTA TIER */
.premium-submit-btn-yellow {
    width: 100%;
    background-color: var(--logo-extracted-color); /* Solid luxury brand green color alignment */
    color: #FFFFFF;                                /* High contrast text */
    border: 1px solid var(--logo-extracted-color);
    padding: 15px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.premium-submit-btn-yellow:hover {
    background-color: #000000; /* Sophisticated pitch transition overlay on hover */
    border-color: #000000;
}

.premium-submit-btn-yellow:active {
    transform: scale(0.99);
}

.premium-submit-btn-yellow .btn-arrow {
    transition: transform 0.2s ease;
}

.premium-submit-btn-yellow:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   MOBILE VIEW RESIZING
   ========================================================================== */
@media (max-width: 480px) {
    .modal-dialog-engine {
        max-width: 100%;
    }
    .modal-body-compact {
        padding: 40px 20px 20px 20px;
    }
}
.modal-compact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    text-align: center;
    margin-top: 0;
    margin-bottom: 28px; /* Clean breathing room before the first input field */
    letter-spacing: 0.5px;
    text-transform: none;
}
/* ==========================================================================
   PREMIUM INVENTORY CARDS GRID
   ========================================================================== */
.unit-showcase-section {
    width: 100%;
    max-width: 1100px;
    margin: 0px auto 100px auto;
    padding: 100px 20px 60px 20px;
}

.unit-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Clean 4-column visual symmetry */
    gap: 24px;
}

/* Individual Card Structural Card Frame */
.unit-inventory-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 36px 24px 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.unit-inventory-card:hover {
    transform: translateY(-6px);
    
    /* Elegant transition to your brand's signature emerald green */
    border-color: #2e7d32; 
    
    /* Multi-layered soft shadow to match the lift */
    box-shadow: 0 16px 36px rgba(46, 125, 50, 0.08), 
                0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Micro Hierarchy Elements */
.unit-tier-badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #666666;
    font-weight: 600;
    margin-bottom: 12px;
}

.unit-configuration {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: #000000;
    margin: 0 0 8px 0;
    
    /* CRITICAL TYPOGRAPHIC CORRECTION FOR SEAMLESS NUMBERS */
    font-variant-numeric: lining-nums tabular-nums;
    -moz-font-feature-settings: "lnum" 1, "tnum" 1;
    -webkit-font-feature-settings: "lnum" 1, "tnum" 1;
    font-feature-settings: "lnum" 1, "tnum" 1;
}

.unit-area-spec {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #444444;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0 0 32px 0;
}

.unit-metric {
    font-size: 11px;
    color: #666666;
    text-transform: uppercase;
    margin-left: 2px;
}

/* CTA Layout Wrapper Component */
.unit-action-box {
    width: 100%;
    margin-top: auto; /* Pushes the button perfectly to the baseline of every card */
}

/* HIGH-CONTRAST SOLID BRAND-BLACK CTA BUTTON - SECONDARY INTERACTION RULE */
.ask-price-trigger {
    width: 100%;
    background-color: #000000;
    border: 1px solid #000000;
    color: #FFFFFF;
    padding: 13px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ask-price-trigger:hover {
    background-color: var(--logo-extracted-color);
    border-color: var(--logo-extracted-color);
}

.ask-price-trigger .btn-nav-arrow {
    transition: transform 0.2s ease;
}

.ask-price-trigger:hover .btn-nav-arrow {
    transform: translateX(3px);
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {
    .unit-cards-container {
        grid-template-columns: repeat(2, 1fr); /* 2x2 Grid array on mid-tier viewports */
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .unit-showcase-section {
        margin: 0px auto 0px auto;
    }
    
    .unit-cards-container {
        grid-template-columns: 100%; /* Pure single column vertical stack on mobile layout */
        gap: 16px;
    }
    
    .unit-inventory-card {
        padding: 32px 20px 24px 20px;
    }
}
/* ==========================================================================
   OVERHAULED CONNECTIVITY SECTION: EDITORIAL ACCORDION
   ========================================================================== */
.proximity-matrix-section {
    width: 100%;
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
}

.brutalist-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-bottom: 48px;
    text-transform: capitalize;
}

/* --- SPLIT GRID ENGINE --- */
.proximity-split-engine {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

/* --- MAP FRAME --- */
.proximity-map-canvas {
    width: 100%;
    height: 520px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    background: #fcfcfc;
}

/* --- ACCORDION SYSTEM --- */
.proximity-accordion-engine {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: #111111;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Premium Minimalist Icon Indicator (+ / -) */
.accordion-icon {
    position: relative;
    width: 14px;
    height: 14px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #999999;
    transition: background-color 0.3s ease, transform 0.4s ease;
}

/* Horizontal line */
.accordion-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 1px;
}

/* Vertical line */
.accordion-icon::after {
    top: 0;
    left: 6px;
    width: 1px;
    height: 14px;
}

/* --- INTERACTIVE STATES (HOVER & ACTIVE) --- */
.accordion-item:hover .accordion-title {
    color: var(--logo-extracted-color);
    transform: translateX(4px);
}

.accordion-item:hover .accordion-icon::before,
.accordion-item:hover .accordion-icon::after {
    background-color: var(--logo-extracted-color);
}

/* Active Panel Modifications */
.accordion-item.is-active .accordion-title {
    color: var(--logo-extracted-color);
    font-weight: 400;
}

.accordion-item.is-active .accordion-icon {
    transform: rotate(135deg);
}

.accordion-item.is-active .accordion-icon::before,
.accordion-item.is-active .accordion-icon::after {
    background-color: var(--logo-extracted-color);
}

/* --- EXPANDABLE CONTENT SLOT --- */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.is-active .accordion-content {
    max-height: 400px; /* Adjust if list is exceptionally long */
    overflow-y: auto;
}

/* --- INTERIOR DATA LIST --- */
.matrix-single-column-list {
    list-style: none;
    padding: 0 0 28px 4px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.matrix-single-column-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #444444;
}

.location-name {
    font-weight: 300;
    color: #444444;
    order: 1;
}

.location-distance {
    font-weight: 500;
    color: #111111;
    text-align: right;
    order: 2;
    letter-spacing: 0.3px;
}

.loc-unit {
    font-size: 11px;
    font-weight: 400;
    color: #888888;
    margin-left: 1px;
}

/* --- RESPONSIVE LAYOUT CONFIGURATION --- */
@media (max-width: 992px) {
    .proximity-matrix-section {
        margin: 80px auto;
    }
    
    .proximity-split-engine {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .proximity-map-canvas {
        height: 360px;
        order: 2; /* Put map below accordion on smaller viewports for better UX */
    }
    
    .proximity-accordion-engine {
        order: 1;
    }
}
/* ==========================================================================
   THE LEGACY HORIZON REGISTRY SYSTEM (UPDATED)
   ========================================================================== */
.legacy-horizon-section {
    width: 100%;
    max-width: 1100px;
    margin: 140px auto;
    padding: 0 20px;
}

.legacy-horizon-section .brutalist-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.5px;
    margin-top: 0;
    margin-bottom: 64px;
    color: #111111;
}

/* --- THE SEAMLESS BORDERLESS ROW --- */
.legacy-horizon-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 0; /* Reduced padding since borders are gone */
}

.horizon-stat-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    cursor: default;
}

/* Elegant vertical line dividers between items */
.horizon-stat-node:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.08);
}

/* Sharp, Technical Geometric Numbers */
.horizon-number {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 200; /* Ultra-light weight for crisp luxury appeal */
    line-height: 1;
    color: #111111;
    letter-spacing: -2px;
    margin-bottom: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Clean Minimal Label */
.horizon-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555555;
    transition: color 0.3s ease;
}

/* --- MICRO-INTERACTION STATES --- */
.horizon-stat-node:hover .horizon-number {
    color: var(--logo-extracted-color);
    transform: translateY(-2px);
}

.horizon-stat-node:hover .horizon-label {
    color: #111111;
}

/* --- RESPONSIVE CONFIGURATION --- */
@media (max-width: 992px) {
    .legacy-horizon-section {
        margin: 100px auto;
    }
    
    .legacy-horizon-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 0;
        padding: 20px 0;
    }
    
    /* Re-adjust dividers for a 2x2 grid setup */
    .horizon-stat-node:nth-child(2n)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .legacy-horizon-row {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 10px 0;
    }
    
    .horizon-stat-node::after {
        display: none !important;
    }
    
    .horizon-number {
        font-size: 56px;
        margin-bottom: 10px;
    }
}
/* ==========================================================================
   UNIFIED ARCHITECTURAL FLOATING CTA (DESKTOP & GENERAL SPEC)
   ========================================================================== */
.floating-architectural-box {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 999;
    
    display: flex;
    align-items: center;
    padding: 0 0 0 24px;
    background-color: var(--logo-extracted-color); 
    border: 1px solid var(--logo-extracted-color);  
    border-radius: 0px;        
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    
    /* State Mechanics */
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 15px, 0);
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-architectural-box.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
}

.box-label-node {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color:#fff;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.box-arrow-chamber {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 44px;
    margin-left: 24px;
    border-left: 0.1px solid #fff;
}

.box-arrow-element {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #fff;
    transition: transform 0.25s ease, color 0.3s ease;
}

/* Hover States */
.floating-architectural-box:hover {
    background-color: var(--logo-extracted-color);
}
.floating-architectural-box:hover .box-label-node,
.floating-architectural-box:hover .box-arrow-element {
    color: #FFFFFF;
}
.floating-architectural-box:hover .box-arrow-chamber {
    border-left-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   MOBILE CALIBRATION: FULL WIDTH DOCK SYSTEM
   ========================================================================== */
@media (max-width: 600px) {
    .floating-architectural-box {
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 56px; /* Native tap bar height */
        padding: 0 0 0 24px;
        
        /* Premium structural adjustments for edge-docking */
        border-left: none !important;
        border-right: none !important;
        border-bottom: none !important; 
        border-top: 1px solid var(--logo-extracted-color);
        background:var(--logo-extracted-color);
        color:#fff;
        box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.05);
        
        /* Mobile-friendly drawer animation alignment */
        transform: translate3d(0, 100%, 0); 
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                    background-color 0.3s ease;
    }
    
    .floating-architectural-box.is-visible {
        opacity: 1 !important;
        transform: translate3d(0, 0, 0) !important;
    }
    
    .box-label-node {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .box-arrow-chamber {
        width: 60px;
        height: 100%;
        margin-left: auto; /* Forces the block safely to the far right edge */
    }
}
/* ==========================================================================
   EDITORIAL LEGAL DISCLAIMER COMPONENT
   ========================================================================== */
.footer-legal-disclaimer {
    max-width: 820px;
    margin: 48px auto 0 auto;
    padding: 24px 40px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06); /* Sophisticated ghost baseline */
}

.footer-legal-disclaimer p {
    font-family: 'Inter', sans-serif;
    font-size: 13px; /* Increased text size for desktop */
    line-height: 1.7;
    color: #666666; /* Matches your premium subtitle tone for low-friction compliance */
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.footer-legal-disclaimer p strong {
    color: #222222; /* Accentuate label identifier without breaking typography flow */
    font-weight: 500;
}

/* Fluid spacing adjustments for compact viewports */
@media (max-width: 768px) {
    .footer-legal-disclaimer {
        margin-top: 36px;
        padding: 20px 16px 0 16px;
    }
    .footer-legal-disclaimer p {
        font-size: 12px; /* Increased text size for mobile */
        line-height: 1.6;
        text-align: justify; /* Better formal structural block layout on tight widths */
    }
}
@media (max-width: 768px) {
        /* 1. Force the container to drop text justification and center */
        div.footer-legal-disclaimer p.rera-responsive-box {
            text-align: center !important;
            display: block !important;
        }
        
        /* 2. Keep the words 'Agent RERA Number:' perfectly together as one centered line */
        div.footer-legal-disclaimer p.rera-responsive-box .rera-label {
            display: block !important;
            text-align: center !important;
            margin-bottom: 4px; /* Space between heading and number */
        }

        /* 3. Wrap and center the long code cleanly right below it */
        div.footer-legal-disclaimer p.rera-responsive-box .rera-number {
            display: block !important;
            text-align: center !important;
            word-break: break-all;
        }
    }
/* ==========================================================================
   STAGGERED SCROLL REVEAL ENGINE
   ========================================================================== */

/* Update the bottom of your CSS file to this */

.amberstone-brutalist-about,
.cinematic-narrative-section,
.luxury-register-section,
.brutalist-brand-anchor,
.unit-showcase-section,
.proximity-matrix-section,
.vault-container,
.legacy-horizon-section /* Changed to section wrapper to capture the whole layout */
 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.215, 0.610, 0.355, 1), transform 1.2s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.amberstone-brutalist-about.active,
.cinematic-narrative-section.active,
.luxury-register-section.active,
.brutalist-brand-anchor.active,
.unit-showcase-section.active,
.proximity-matrix-section.active,
.vault-container.active,
.legacy-horizon-section.active {
    opacity: 1;
    transform: translateY(0);
}