/* ----------------------------------------------------------------------
   PT RIA NUSANTARA SEJATI - FONTS ARCHITECTURE (STRICT RE-CHECK)
---------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
   PT RIA NUSANTARA SEJATI - BULLETPROOF FONTS ARCHITECTURE
---------------------------------------------------------------------- */
@font-face {
    font-family: 'Cinzel';
    src: url('./CinzelRegular.ttf');
    src: url('./CinzelRegular.ttf?#iefix') format('embedded-opentype'),
         url('./CinzelRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Cinzel';
    src: url('./CinzelBold.ttf');
    src: url('./CinzelBold.ttf?#iefix') format('embedded-opentype'),
         url('./CinzelBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Cinzel';
    src: url('./CinzelBlack.ttf');
    src: url('./CinzelBlack.ttf?#iefix') format('embedded-opentype'),
         url('./CinzelBlack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Lora';
    src: url('./LoraRegular.ttf');
    src: url('./LoraRegular.ttf?#iefix') format('embedded-opentype'),
         url('./LoraRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lora';
    src: url('./LoraBold.ttf');
    src: url('./LoraBold.ttf?#iefix') format('embedded-opentype'),
         url('./LoraBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('./InterTightRegular.ttf');
    src: url('./InterTightRegular.ttf?#iefix') format('embedded-opentype'),
         url('./InterTightRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


/* ----------------------------------------------------------------------
   DESIGN SYSTEM CONSTANTS & CSS RESET
---------------------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f7f7;
    color: #3b3b3b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: #212121;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ----------------------------------------------------------------------
   HEADER MODULE - STRUCTURE & VISUAL BALANCE
---------------------------------------------------------------------- */
.rns-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.rns-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Group Styles */
.rns-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rns-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.rns-logo-text {
    display: flex;
    flex-direction: column;
}

.rns-logo-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 1px;
    line-height: 1.2;
}

.rns-logo-subtitle {
    font-size: 10px;
    font-weight: 500;
    color: #dbaf5b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation Menu Styles */
.rns-nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rns-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #3b3b3b;
    letter-spacing: 0.5px;
}

.rns-nav-link:hover, 
.rns-nav-link.active {
    color: #dbaf5b;
}

/* CTA Button Styles */
.rns-btn-cta {
    display: inline-block;
    background-color: #212121;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid #212121;
    transition: all 0.3s ease;
}

.rns-btn-cta:hover {
    background-color: transparent;
    color: #dbaf5b;
    border-color: #dbaf5b;
}

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .rns-nav-list {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .rns-nav {
        display: none;
    }
}


/* ----------------------------------------------------------------------
   HEADER MODULE - FIXED STRUCTURE & VISUAL BALANCE
---------------------------------------------------------------------- */
.rns-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

/* Scroll Shadow Effect class added via JS */
.rns-header.rns-header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.rns-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Subsystem */
.rns-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1002;
}

.rns-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.rns-logo-text {
    display: flex;
    flex-direction: column;
}

.rns-logo-title {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.rns-logo-subtitle {
    font-size: 9px;
    font-weight: 500;
    color: #dbaf5b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 1px;
}

/* Desktop Navigation */
.rns-nav {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rns-nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.rns-nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #3b3b3b;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

/* Native CSS Animated Underline */
.rns-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #dbaf5b;
    transition: width 0.3s ease;
}

.rns-nav-link:hover::after,
.rns-nav-link.rns-active-anchor::after {
    width: 100%;
}

.rns-nav-link:hover, 
.rns-nav-link.rns-active-anchor {
    color: #dbaf5b;
    transition: 0.3s;
}

/* Action Button */
.rns-header-actions {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.rns-btn-cta {
    display: inline-block;
    background-color: #212121;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: 1px solid #212121;
    transition: all 0.3s ease;
}

.rns-btn-cta:hover {
    background-color: transparent;
    color: #dbaf5b;
    border-color: #dbaf5b;
}

/* Native CSS Burger Trigger */
.rns-burger-trigger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.rns-burger-line {
    width: 100%;
    height: 2px;
    background-color: #212121;
    transition: all 0.3s ease;
}

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .rns-nav-list {
        gap: 15px;
    }
    .rns-logo-title {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .rns-burger-trigger {
        display: flex;
    }

    /* Transforming Nav to Fullscreen Mobile Vertical Stack Overlay */
    .rns-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: #ffffff;
        z-index: 1001;
        padding: 100px 40px;
    }

    .rns-nav.rns-nav-open {
        right: 0;
        left: 0;
        margin: auto;
        display: block;
    }

    .rns-nav-list {
        flex-direction: column;
        align-items: anchor-center;
        gap: 10px;
        text-align: center;
    }

    .rns-nav-link {
        font-size: 17px;
        font-family: 'Lora', serif;
        color: #212121;
        text-align: center;
    }

    .rns-header-actions {
        display: none; /* Submerge CTA into mobile menu if needed later */
    }

    /* Burger Cross Animation States */
    .rns-burger-trigger.rns-burger-active .rns-burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #dbaf5b;
    }
    .rns-burger-trigger.rns-burger-active .rns-burger-line:nth-child(2) {
        opacity: 0;
    }
    .rns-burger-trigger.rns-burger-active .rns-burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #dbaf5b;
    }
}






/* ----------------------------------------------------------------------
   FINAL MODAL WINDOW SUBSYSTEM - CLEAN SPECIFICITY CACHING FIX
---------------------------------------------------------------------- */
div.rns-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(33, 33, 33, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active State Engine Trigger */
div.rns-modal-overlay.rns-modal-active {
    opacity: 1;
    pointer-events: auto;
}

/* Core Modal White Card Body */
div.rns-modal-overlay .rns-modal-body {
    background-color: #ffffff;
    border-left: 4px solid #dbaf5b;
    padding: 50px 45px;
    max-width: 650px;
    width: 100%;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible; /* CRITICAL: Allows absolute side elements to be visible */
    z-index: 2005;
}

div.rns-modal-overlay.rns-modal-active .rns-modal-body {
    transform: scale(1) translateY(0);
    animation: rnsDiamondFlash 4s infinite linear; /* Fixed Jewelry Ray Animation Trigger */
}

/* Typography Hierarchy Setup */
.rns-modal-title {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
}

.rns-modal-lead {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 16px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.rns-modal-form-placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    width: 100%;
}

/* ----------------------------------------------------------------------
   VERTICAL SIDE CLOSE BUTTON - GOLD DROP-TAB
---------------------------------------------------------------------- */
div.rns-modal-overlay .rns-modal-close-side {
    position: absolute;
    top: 41%;
    left: 33.05%;
    transform: rotate(-90deg);
    transform-origin: left bottom;
    
    /* Brand Gold Background & Compact Layout */
    background-color: #dbaf5b;
    border: 1px solid #dbaf5b;
    border-bottom: none;
    padding: 4px 12px 4px; /* Strict minimum space around text */
    
    /* Drop-Tab Border Rounding Framework */
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    
    /* Typography Style - White Italic Lora */
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 1px;
    
    /* Core Actions */
    cursor: pointer;
    z-index: 2010;
    white-space: nowrap;
    display: block;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

div.rns-modal-overlay .rns-modal-close-side:hover {
    background-color: #212121;
    border-color: #212121;
}

/* JEWEL DECORATIVE SPARKLES SYSTEM */
div.rns-modal-body .rns-jewel-sparkle {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 2006;
}

div.rns-jewel-sparkle .rns-sparkle-icon {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #dbaf5b; /* Our Brand Gold Color Constants */
    mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDBsMyA5IDkgMy05IDMtMyA5LTMtOS05LTMgOS0zeiIvPjwvc3ZnPg==") no-repeat center center;
    -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDBsMyA5IDkgMy05IDMtMyA5LTMtOS05LTMgOS0zeiIvPjwvc3ZnPg==") no-repeat center center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

div.rns-modal-body .rns-sparkle-top-left {
    top: -12px;
    left: -12px;
    animation: rnsMaturateSparkle 3s infinite ease-in-out;
}

div.rns-modal-body .rns-sparkle-bottom-right {
    bottom: -12px;
    right: -12px;
    animation: rnsMaturateSparkle 3s infinite ease-in-out 1.5s;
}

/* ----------------------------------------------------------------------
   NATIVE CSS KEYFRAMES - RAY GLOWS AND FLASHES
---------------------------------------------------------------------- */
@keyframes rnsDiamondFlash {
    0% { background-image: linear-gradient(135deg, rgba(255,255,255,0) 30%, rgba(219,175,91,0.12) 45%, rgba(255,255,255,0) 60%); background-size: 300% 100%; background-position: 150% 0; }
    100% { background-image: linear-gradient(135deg, rgba(255,255,255,0) 30%, rgba(219,175,91,0.12) 45%, rgba(255,255,255,0) 60%); background-size: 300% 100%; background-position: -50% 0; }
}

@keyframes rnsMaturateSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; }
    50% { transform: scale(1.4) rotate(90deg); opacity: 1; }
}

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    div.rns-modal-overlay .rns-modal-close-side {
        right: auto;
        left: 20px;
        top: 20px;
        transform: none;
        color: #212121;
    }
    div.rns-modal-overlay .rns-modal-body {
        margin-top: 60px;
        padding: 50px 35px 40px;
    }
}



/* ----------------------------------------------------------------------
   MONOLITHIC MODAL & CONTACT FORM SUBSYSTEM - RE-POSITIONING FIX
---------------------------------------------------------------------- */
div.rns-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(33, 33, 33, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

div.rns-modal-overlay.rns-modal-active {
    opacity: 1;
    pointer-events: auto;
}

div.rns-modal-overlay .rns-modal-body {
    background-color: #ffffff;
    border-left: 4px solid #dbaf5b;
    padding: 50px 60px;
    max-width: 850px;
    width: 100%;
    position: relative; /* Fixed anchor point for children elements */
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transform: scale(0.85) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
    margin: auto;
    z-index: 2005;
}

div.rns-modal-overlay.rns-modal-active .rns-modal-body {
    transform: scale(1) translateY(0);
    animation: rnsDiamondFlash 4s infinite linear;
}

/* Perfect Vertical Side Close Tab - Multi-Width Protection Rail */
div.rns-modal-overlay .rns-modal-body .rns-modal-close-side {
    position: absolute;
    top: 140px; /* Securely locked relative to header title elements */
    left: 0;
    transform: translateX(-100%) rotate(-90deg); /* Automatically offsets button width outwards */
    transform-origin: right bottom;
    background-color: #dbaf5b;
    border: 1px solid #dbaf5b;
    border-bottom: none;
    padding: 4px 17px 6px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 2010;
    white-space: nowrap;
    display: block;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

div.rns-modal-overlay .rns-modal-body .rns-modal-close-side:hover {
    background-color: #212121;
    border-color: #212121;
}

/* Typography Matrix */
.rns-modal-title { font-family: 'Cinzel', serif; font-size: 26px; font-weight: 700; color: #212121; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 15px; }
.rns-modal-lead { font-family: 'Lora', serif; font-style: italic; font-size: 16px; color: #3b3b3b; line-height: 1.6; margin-bottom: 35px; }

/* Pure Form Geometry Reset - Linear Alignments Matrix */
.rns-contact-form { width: 100%; text-align: left; }
.rns-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-bottom: 20px; }
.rns-form-group { display: flex; flex-direction: column; margin-bottom: 20px; width: 100%; }
.rns-form-group.rns-full-width { margin-bottom: 25px; }

.rns-form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Perfect Input Height & Border Alignments */
.rns-contact-form input[type="text"],
.rns-contact-form input[type="email"],
.rns-contact-form input[type="tel"],
.rns-contact-form select,
.rns-contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #3b3b3b;
    background-color: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 18px;
    height: 52px;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
}

.rns-contact-form textarea { height: auto; min-height: 120px; resize: vertical; }

.rns-contact-form input:focus,
.rns-contact-form select:focus,
.rns-contact-form textarea:focus {
    background-color: #ffffff;
    border-color: #dbaf5b;
    box-shadow: 0 0 10px rgba(219, 175, 91, 0.15);
}

/* Legal Matrix Checkboxes */
.rns-legal-checkboxes { margin: 30px 0; display: flex; flex-direction: column; gap: 15px; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 25px; }
.rns-checkbox-item { display: flex; align-items: flex-start; gap: 14px; }
.rns-checkbox-item input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; accent-color: #dbaf5b; cursor: pointer; flex-shrink: 0; }
.rns-checkbox-item label { font-family: 'Inter', sans-serif; font-size: 14px; color: #3b3b3b; line-height: 1.5; cursor: pointer; }
.rns-checkbox-item label a { color: #dbaf5b; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.rns-checkbox-item label a:hover { color: #212121; }

/* Form Submission CTA */
.rns-form-submit-btn {
    display: block;
    width: 100%;
    background-color: #212121;
    color: #ffffff;
    border: 1px solid #212121;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.rns-form-submit-btn:hover { background-color: transparent; color: #dbaf5b; border-color: #dbaf5b; }

/* Jewel Sparks Framework */
div.rns-modal-body .rns-jewel-sparkle { position: absolute; width: 24px; height: 24px; pointer-events: none; z-index: 2006; }
div.rns-jewel-sparkle .rns-sparkle-icon {
    display: block; width: 100%; height: 100%; background-color: #dbaf5b;
    mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDBsMyA5IDkgMy05IDMtMyA5LTMtOS05LTMgOS0zeiIvPjwvc3ZnPg==") no-repeat center center;
    -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyIDBsMyA5IDkgMy05IDMtMyA5LTMtOS05LTMgOS0zeiIvPjwvc3ZnPg==") no-repeat center center;
    mask-size: contain; -webkit-mask-size: contain;
}
div.rns-modal-body .rns-sparkle-top-left { top: -12px; left: -12px; animation: rnsMaturateSparkle 3s infinite ease-in-out; }
div.rns-modal-body .rns-sparkle-bottom-right { bottom: -12px; right: -12px; animation: rnsMaturateSparkle 3s infinite ease-in-out 1.5s; }

@keyframes rnsDiamondFlash {
    0% { background-position: 150% 0; }
    100% { background-position: -50% 0; }
}
@keyframes rnsMaturateSparkle { 0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.2; } 50% { transform: scale(1.4) rotate(90deg); opacity: 1; } }

/* Three-Layer Adaptive Matrix */
@media (max-width: 1024px) {
    div.rns-modal-overlay .rns-modal-body .rns-modal-close-side {
        right: auto; left: 20px; top: 20px; transform: none; color: #212121; background: none; border: none; padding: 0; box-shadow: none;
    }
}
@media (max-width: 768px) {
    .rns-form-grid { grid-template-columns: 1fr; gap: 0; }
    div.rns-modal-overlay .rns-modal-body { padding: 40px 25px; }
}


/* ----------------------------------------------------------------------
   MULTI-LAYER STACKING MATRIX & GENERAL POSITIONING FOR LEGAL MODALS
---------------------------------------------------------------------- */
div.rns-modal-overlay .rns-legal-body {
    max-width: 750px; /* Slightly more compact for professional legal documents */
}

/* Rigid inheritance of your approved drop-tab geometry across all legal windows */
div.rns-modal-overlay .rns-legal-body .rns-modal-close-side {
    position: absolute;
    top: 140px;
    left: 0;
    transform: translateX(-100%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #dbaf5b;
    border: 1px solid #dbaf5b;
    border-bottom: none;
    padding: 4px 17px 6px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: lowercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 2010;
    white-space: nowrap;
    display: block;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

div.rns-modal-overlay .rns-legal-body .rns-modal-close-side:hover {
    background-color: #212121;
    border-color: #212121;
}

/* Layering isolation hierarchy to prevent rendering conflict inside overlay stack */
#rnsModalPrivacy { z-index: 2100; }
#rnsModalTerms { z-index: 2200; }
#rnsModalDisclaimer { z-index: 2300; }

/* Adaptive Matrix Override for Legal Sub-systems */
@media (max-width: 1024px) {
    div.rns-modal-overlay .rns-legal-body .rns-modal-close-side {
        right: auto;
        left: 20px;
        top: 20px;
        transform: none;
        color: #212121;
        background: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }
}






/* ----------------------------------------------------------------------
   HERO SECTION MODULE - CORE GRID & BRAND ANIMATED ORBITS
---------------------------------------------------------------------- */
.rns-hero-section:before {
    content: '';
    position: absolute;
    top: -250px;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: url('/1779354534.png');
    background-size: cover;
    z-index: -1;
}

.rns-hero-section {
    background-color: #f7f7f7e3;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 60px 20px;
    position: relative;
    box-sizing: border-box;
}

.rns-hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

/* Left Grid Layout */
.rns-hero-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rns-hero-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #dbaf5b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.rns-hero-title {
    font-family: 'Lora', serif;
    font-size: 52px;
    font-weight: 700;
    color: #212121;
    line-height: 1.15;
    margin-bottom: 25px;
}

.rns-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 680px;
}

/* CTA Actions */
.rns-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rns-hero-btn-primary {
    display: inline-block;
    background-color: #212121;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 35px;
    border: 1px solid #212121;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rns-hero-btn-primary:hover {
    background-color: transparent;
    color: #dbaf5b;
    border-color: #dbaf5b;
}

.rns-hero-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #212121;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 35px;
    border: 1px solid #dbaf5b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rns-hero-btn-secondary:hover {
    background-color: #212121;
    color: #ffffff;
    border-color: #212121;
}

/* Right Grid: Sovereign Card Framework */
.rns-hero-visual {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.rns-legal-trust-card {
    background-color: #ffffffc7;
    border-top: 4px solid #dbaf5b;
    padding: 45px 35px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
    box-sizing: border-box;
}

/* ----------------------------------------------------------------------
   BRAND ANIMATED CIRCLES SUBSYSTEM (NATIVE CSS GEOMETRY)
---------------------------------------------------------------------- */
.rns-animated-circles-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Core central point of the hub */
.rns-circle-core {
    width: 16px;
    height: 16px;
    background-color: #212121;
    border-radius: 50%;
    z-index: 5;
}

/* Base structural orbit class */
.rns-circle-orbit {
    position: absolute;
    border: 1px dashed rgba(33, 33, 33, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Outer Orbit Track & Rotation Animation */
.rns-orbit-outer {
    width: 90px;
    height: 90px;
    border-color: rgba(219, 175, 91, 0.25);
    animation: rnsOrbitClockwise 12s infinite linear;
}

/* Inner Orbit Track & Reverse Rotation Animation */
.rns-orbit-inner {
    width: 54px;
    height: 54px;
    border-color: rgba(33, 33, 33, 0.2);
    animation: rnsOrbitCounterClockwise 8s infinite linear;
}

/* Satellite Node Points locked on lines */
.rns-satellite-node {
    position: absolute;
    border-radius: 50%;
}

.rns-gold-node {
    width: 10px;
    height: 10px;
    background-color: #dbaf5b;
    top: -5px; /* Aligns node center perfectly directly on line path */
    left: calc(50% - 5px);
    box-shadow: 0 0 10px rgba(219, 175, 91, 0.5);
}

.rns-dark-node {
    width: 8px;
    height: 8px;
    background-color: #212121;
    bottom: -4px;
    left: calc(50% - 4px);
}

/* Meta Data Information Lines */
.rns-trust-badge-label {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.rns-trust-divider {
    height: 1px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.rns-trust-meta-item {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 15px;
}

.rns-trust-meta-item:last-child { margin-bottom: 0; }
.rns-meta-title { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: #dbaf5b; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.rns-meta-value { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; color: #3b3b3b; }

/* ----------------------------------------------------------------------
   NATIVE CSS KEYFRAMES - ORBITAL ROTATIONS
---------------------------------------------------------------------- */
@keyframes rnsOrbitClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rnsOrbitCounterClockwise {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .rns-hero-container { grid-template-columns: 1fr; gap: 50px; }
    .rns-hero-title { font-size: 42px; }
    .rns-hero-visual { justify-content: center; }
    .rns-legal-trust-card { max-width: 450px; }
}

@media (max-width: 768px) {
    .rns-hero-section { padding: 40px 15px; }
    .rns-hero-kicker { font-size: 12px; margin-bottom: 15px; }
    .rns-hero-title { font-size: 32px; line-height: 1.2; }
    .rns-hero-description { font-size: 15px; margin-bottom: 30px; }
    .rns-hero-actions { flex-direction: column; width: 100%; gap: 15px; }
    .rns-hero-btn-primary, .rns-hero-btn-secondary { display: block; width: 100%; text-align: center; padding: 15px 20px; }
}




/* ----------------------------------------------------------------------
   ABOUT SECTION MODULE - ARCHITECTURAL COMPLIANCE MATRIX
---------------------------------------------------------------------- */
.rns-about-section {
    background-color: #ffffff; /* White block contrast separator */
    width: 100%;
    padding: 100px 20px;
    box-sizing: border-box;
    position: relative;
}

.rns-about-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Asymmetrical balance */
    gap: 80px;
    align-items: flex-start;
}

/* Left Grid: Corporate Manifesto Elements */
.rns-about-manifesto:before {
    content: '';
    position: absolute;
    bottom: -175px;
    left: unset;
    right: -110px;
    width: 280px;
    height: 220px;
    background: url('/58.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.rns-about-manifesto {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    z-index:1;
}

.rns-about-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #dbaf5b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.rns-about-title {
    font-family: 'Lora', serif;
    font-size: 42px; /* Large corporate tone */
    font-weight: 700;
    color: #212121;
    line-height: 1.25;
    margin-bottom: 30px;
}

.rns-about-divider {
    height: 1px;
    width: 80px;
    background-color: #dbaf5b;
    margin-bottom: 35px;
}

.rns-about-text {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.75;
    margin-bottom: 20px;
}

.rns-about-text:last-child {
    margin-bottom: 0;
}

.rns-about-text strong {
    color: #212121;
    font-weight: 600;
}

/* Right Grid: Interactive Trust Matrix blocks */
.rns-about-matrix {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.rns-trust-block {
    background-color: #f7f7f7;
    border-left: 3px solid rgba(219, 175, 91, 0.2);
    padding: 30px 35px;
    text-align: left;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Native CSS Micro-Animation Interactivity Feedback */
.rns-trust-block:hover {
    background-color: #ffffff;
    border-left-color: #dbaf5b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.rns-trust-block-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 15px;
    display: block;
}

.rns-trust-block-icon svg {
    width: 100%;
    height: 100%;
}

.rns-trust-block-heading {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rns-trust-block-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.6;
}

.rns-trust-block-desc strong {
    color: #212121;
    font-weight: 600;
}

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .rns-about-container {
        grid-template-columns: 1fr; /* Switch into a linear grid presentation */
        gap: 60px;
    }
    .rns-about-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .rns-about-section {
        padding: 60px 15px;
    }
    .rns-about-kicker {
        margin-bottom: 15px;
    }
    .rns-about-title {
        font-size: 28px;
        line-height: 1.3;
    }
    .rns-trust-block {
        padding: 25px 20px;
    }
    .rns-trust-block:hover {
        transform: translateY(-2px); /* Vertical switch response on touch interfaces */
    }
}




/* ======================================================================
   RNS SERVICES SECTION (WE OFFER) - MONOLITHIC VISUAL SYSTEM
====================================================================== */
.rns-services-section {
    background-color: #f7f7f7; /* Soft contrast canvas separator */
    width: 100%;
    padding: 100px 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden; /* Clears any micro-offsets from floating background shapes */
}

.rns-services-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px; /* Generous elite structural air spacing */
}

/* ----------------------------------------------------------------------
   SECTION INTRODUCTORY HEADER METRIC
---------------------------------------------------------------------- */
.rns-services-header {
    max-width: 850px;
    width: 100%;
    text-align: left;
    margin-bottom: 30px;
}

.rns-services-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #dbaf5b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.rns-services-title {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 700;
    color: #212121;
    line-height: 1.25;
    margin-bottom: 30px;
}

.rns-services-divider {
    height: 1px;
    width: 80px;
    background-color: #dbaf5b;
    margin-bottom: 35px;
}

.rns-services-lead {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.8;
}

/* ----------------------------------------------------------------------
   SERVICE ROW ALTERNATING GRID FRAMEWORK
---------------------------------------------------------------------- */
.rns-service-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Balanced media-to-text proportions */
    gap: 90px; /* Secure linear visual separation */
    align-items: center;
}

/* Premium B2B Chess Order Inversion Management */
.rns-service-row.rns-row-reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.rns-service-row.rns-row-reverse .rns-service-media {
    grid-column: 2;
}

.rns-service-row.rns-row-reverse .rns-service-info {
    grid-column: 1;
    grid-row: 1;
}

/* ----------------------------------------------------------------------
   MEDIA BOX MODULE - INDEPENDENT FLOATING ACCENT FRAMES
---------------------------------------------------------------------- */
.rns-service-media {
    width: 100%;
    position: relative;
    padding: 0;
}

/* Base framework for transparent background outline structures */
.rns-image-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    box-sizing: border-box;
}

/* Layer 1: Elegant Soft Gold Frame with independent drift wave */
.rns-frame-primary {
    border: 1px solid #dbaf5b;
    opacity: 0.35;
    top: 15px;
    left: -15px;
    z-index: 1;
    animation: rnsFrameFloatPrimary 7s infinite ease-in-out;
}

/* Layer 2: Weightless Corporate Dark Frame with counter drift wave */
.rns-frame-secondary {
    border: 1px solid #212121;
    opacity: 0.18;
    top: 25px;
    left: -25px;
    z-index: 1;
    animation: rnsFrameFloatSecondary 9s infinite ease-in-out;
}

/* Structural axis coordinate inversions inside reverse row grid layout blocks */
.rns-service-row.rns-row-reverse .rns-frame-primary {
    left: 15px;
    animation: rnsFrameFloatPrimaryReverse 7s infinite ease-in-out;
}

.rns-service-row.rns-row-reverse .rns-frame-secondary {
    left: 25px;
    animation: rnsFrameFloatSecondaryReverse 9s infinite ease-in-out;
}

/* Rigid static image asset layer resting securely over the floating environment */
.rns-service-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 2; /* Completely immunizes static front graphic from kinetic background layout */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

/* ----------------------------------------------------------------------
   CONTENT INFO BLOCK TYPOGRAPHY MATRICES
---------------------------------------------------------------------- */
.rns-service-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Highly Stylized Premium B2B Subheading (Sub-title Descriptor) */
.rns-track-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #dbaf5b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.rns-track-title {
    font-family: 'Cinzel', serif; /* Rigid neo-classical brand anchor font */
    font-size: 24px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 0.5px;
    line-height: 1.35;
    margin-bottom: 20px;
}

.rns-track-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.8;
}

/* ----------------------------------------------------------------------
   NATIVE CSS KEYFRAMES - COMPLEX FLOATING DRIFT KINETICS
---------------------------------------------------------------------- */
/* Clockwise micro-drift parameters for left-aligned image tracks */
@keyframes rnsFrameFloatPrimary {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(4px, -6px) scale(1.01); }
}
@keyframes rnsFrameFloatSecondary {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-6px, 4px) scale(0.99); }
}

/* Balanced counter-drift parameters for right-aligned image tracks */
@keyframes rnsFrameFloatPrimaryReverse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-4px, -6px) scale(1.01); }
}
@keyframes rnsFrameFloatSecondaryReverse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(6px, 4px) scale(0.99); }
}

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .rns-services-container { gap: 80px; }
    
    .rns-service-row, .rns-service-row.rns-row-reverse {
        grid-template-columns: 1fr; /* Switch to a clean vertical linear stack model */
        gap: 50px;
    }
    
    .rns-service-row.rns-row-reverse .rns-service-media { grid-column: auto; }
    .rns-service-row.rns-row-reverse .rns-service-info { grid-column: auto; }
    .rns-services-title { font-size: 36px; }
    
    /* Scale down kinetic layout shifts on tablet viewport viewports */
    .rns-frame-primary { top: 10px; left: -10px; }
    .rns-frame-secondary { top: 18px; left: -18px; }
    .rns-service-row.rns-row-reverse .rns-frame-primary { left: 10px; }
    .rns-service-row.rns-row-reverse .rns-frame-secondary { left: 18px; }
}

@media (max-width: 768px) {
    .rns-services-section { padding: 60px 15px; }
    .rns-services-title { font-size: 28px; line-height: 1.3; }
    .rns-services-lead { font-size: 15px; }
    .rns-track-title { font-size: 20px; margin-bottom: 15px; }
    .rns-track-desc { font-size: 14px; }
    
    /* Completely hide background outline vectors on smartphone layouts to ensure high performance */
    .rns-image-frame { display: none; }
}





/* ----------------------------------------------------------------------
   WHY WE SECTION MODULE - HIGH-END ADVANTAGES & HYBRID FEEDBACK
---------------------------------------------------------------------- */
.rns-advantages-section {
    background-color: #ffffff; /* Secondary background framework layer */
    width: 100%;
    padding: 100px 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden; /* Secures chaotic background bounds */
}

/* Background Chaotic Sliding Canvas */
.rns-bg-slider-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.rns-bg-slide-node {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0; /* Managed exclusively via the Vanilla JS loop animation */
    transition: opacity 2s ease-in-out; /* Premium soft crossfade blending */
}

.rns-advantages-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Renders content text stack over background slide node layers */
    display: flex;
    flex-direction: column;
}

/* Header Area */
.rns-advantages-header {
    max-width: 850px;
    width: 100%;
    text-align: left;
    margin-bottom: 50px;
}

.rns-advantages-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #dbaf5b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.rns-advantages-title {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 700;
    color: #212121;
    line-height: 1.25;
    margin-bottom: 30px;
}

.rns-advantages-divider {
    height: 1px;
    width: 80px;
    background-color: #dbaf5b;
    margin-bottom: 35px;
}

.rns-advantages-lead {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.8;
}

/* Four Pillars Core Advantages Grid Layout */
.rns-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.rns-pillar-card {
    background-color: rgba(247, 247, 247, 0.85); /* Semi-transparent layout to reveal analytic background */
    border-top: 3px solid rgba(219, 175, 91, 0.15);
    padding: 40px 30px;
    text-align: left;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rns-pillar-card:hover {
    background-color: #ffffff;
    border-top-color: #dbaf5b;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}

.rns-pillar-num {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: #dbaf5b;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.rns-pillar-heading {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rns-pillar-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.6;
}

/* Double-Track Hybrid Feedback Layout System */
.rns-feedback-system {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 60px;
}

.rns-feedback-track {
    background-color: #ffffff;
    border-left: 4px solid #dbaf5b;
    padding: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    text-align: left;
    box-sizing: border-box;
}

.rns-track-indicator-badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    background-color: #212121;
    color: #ffffff;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.rns-feedback-quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 16px;
    color: #3b3b3b;
    line-height: 1.75;
    margin-bottom: 25px;
}

.rns-feedback-author {
    display: flex;
    flex-direction: column;
}

.rns-author-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #212121;
}

.rns-author-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #dbaf5b;
    margin-top: 2px;
}

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .rns-pillars-grid {
        grid-template-columns: repeat(2, 1fr); /* Split matrix on smaller laptop devices */
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .rns-feedback-system {
        grid-template-columns: 1fr; /* Drop tracking rows on tablet viewports */
        gap: 30px;
    }
    .rns-advantages-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .rns-advantages-section { padding: 60px 15px; }
    .rns-advantages-title { font-size: 28px; line-height: 1.3; }
    .rns-advantages-lead { font-size: 15px; }
    .rns-pillars-grid { grid-template-columns: 1fr; gap: 15px; }
    .rns-pillar-card { padding: 30px 20px; }
    .rns-feedback-track { padding: 30px 20px; }
    .rns-feedback-quote { font-size: 15px; }
}


/* ----------------------------------------------------------------------
   ANIMATED DYNAMIC FEEDBACK SLIDER SUBSYSTEM
---------------------------------------------------------------------- */
.rns-feedback-track {
    position: relative;
    min-height: 340px; /* Rigially locks vertical container height to prevent layout jumps */
}

.rns-feedback-item {
    position: absolute;
    top: 65px; /* Positions items directly below the indicator badge */
    left: 40px;
    right: 40px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

/* Active slider node state triggered via Vanilla JS engine */
.rns-feedback-item.rns-item-active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    position: relative; /* Returns item to normal flow once manifested */
    top: 0;
    left: 0;
    right: 0;
}




/* ======================================================================
   RNS CREDENTIALS SECTION - MONOLITHIC THREE-TIER VISUAL SYSTEM
====================================================================== */
.rns-credentials-section {
    background-color: #f7f7f7; /* Muted canvas block separator */
    width: 100%;
    padding: 100px 20px;
    box-sizing: border-box;
    position: relative;
}

.rns-credentials-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px; /* Rigid spacing matrix between operational tiers */
}

/* ----------------------------------------------------------------------
   TIER 1: ASYMMETRICAL SPLIT LAYOUT (MANIFESTO VS REQUISITES)
---------------------------------------------------------------------- */
.rns-tier-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
}

.rns-credentials-manifesto {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rns-credentials-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #dbaf5b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.rns-credentials-title {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 700;
    color: #212121;
    line-height: 1.25;
    margin-bottom: 30px;
}

.rns-credentials-divider {
    height: 1px;
    width: 80px;
    background-color: #dbaf5b;
    margin-bottom: 35px;
}

.rns-credentials-lead {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.8;
}

/* Fine Line Spec Cards Right Grid Layout */
.rns-credentials-spec-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.rns-spec-card {
    background-color: #ffffff;
    border-left: 3px solid rgba(219, 175, 91, 0.2);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rns-spec-card:hover {
    border-left-color: #dbaf5b;
    box-shadow: 0 12px 35px rgba(219, 175, 91, 0.08);
    transform: translateX(4px);
}

.rns-spec-vector-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}
.rns-spec-vector-icon svg { width: 100%; height: 100%; }

.rns-spec-text-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.rns-spec-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #dbaf5b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.rns-spec-card-value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #212121;
}

/* ----------------------------------------------------------------------
   TIER 2: FULL-WIDTH TIMEZONE SYNCHRONIZATION PLATFORM
---------------------------------------------------------------------- */
.rns-tier-timezone-block {
    background-color: #ffffff;
    border-top: 3px solid #dbaf5b;
    padding: 45px 50px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);
    text-align: left;
    box-sizing: border-box;
}

.rns-timezone-full-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.rns-timezone-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rns-time-info-pane p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.75;
}
.rns-time-info-pane p strong { color: #212121; font-weight: 600; }

/* ----------------------------------------------------------------------
   TIER 3: FULL-WIDTH MAP BLOCK & HIGH-END COMPASS OVERLAY
---------------------------------------------------------------------- */
.rns-tier-map-block {
    width: 100%;
    box-sizing: border-box;
}

/* Secure relative container context for the absolute pseudo-element layering */
.rns-map-nexus-anchor {
    display: block;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    position: relative; /* CRITICAL: Serves as the unique origin anchor for the compass */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.rns-map-nexus-anchor:hover {
    border-color: #dbaf5b;
    box-shadow: 0 20px 50px rgba(219, 175, 91, 0.12);
}

.rns-map-nexus-anchor:hover .rns-map-btn-rect {
    fill: #dbaf5b;
}

/* ----------------------------------------------------------------------
   MONOLITHIC COMPASS OVERLAY SYSTEM - INDEPENDENT CSS LAYER
---------------------------------------------------------------------- */
.rns-map-nexus-anchor {
    position: relative; /* Base structural anchor for the absolute compass layer */
    display: block;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Beautiful floating deployment for your authorized dual-color compass */
.rns-html-compass-layer {
    position: absolute;
    top: 50px; /* Precise layout margin coordinates from top card edge */
    left: 50px; /* Precise layout margin coordinates from left card edge */
    width: 90px; /* Locked optimal geometry width */
    height: 95px; /* Locked optimal geometry height */
    z-index: 100; /* Absolute highest layout tier to prevent map occlusion */
    pointer-events: none;
    display: block !important; /* Force visible rendering on all devices */
}

.rns-html-compass-layer svg {
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center center;
    animation: rnsCompassFloat 20s infinite ease-in-out;
}

@keyframes rnsCompassFloat {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(4deg); }
}




.rns-svg-map-canvas { width: 100%; height: auto; }
.rns-sovereign-svg-map { width: 100%; height: auto; display: block; }

/* ----------------------------------------------------------------------
   NATIVE CSS KEYFRAMES - RADAR COMPASS KINETICS
---------------------------------------------------------------------- */
/* Compass native micro-rotation floating shift */
@keyframes rnsCompassFloat {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(4deg); }
}

/* Radar hydrographic wave 1 pulses */
.rns-radar-wave-1 {
    transform-origin: 225px 247px;
    animation: rnsRadarExpand 3s infinite linear;
}

/* Radar hydrographic wave 2 pulses with fixed delay offset */
.rns-radar-wave-2 {
    transform-origin: 225px 247px;
    animation: rnsRadarExpand 3s infinite linear 1.5s;
}

@keyframes rnsRadarExpand {
    0% { transform: scale(0.4); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .rns-tier-split { grid-template-columns: 1fr; gap: 50px; }
    .rns-credentials-title { font-size: 36px; }
    .rns-timezone-full-grid { grid-template-columns: 1fr; gap: 20px; }
    .rns-tier-timezone-block { padding: 35px 30px; }
    .rns-map-nexus-anchor { padding: 15px; }
}

@media (max-width: 768px) {
    .rns-credentials-section { padding: 60px 15px; }
    .rns-credentials-title { font-size: 28px; line-height: 1.3; }
    .rns-credentials-lead { font-size: 15px; }
    .rns-spec-card { padding: 18px 20px; gap: 15px; }
    .rns-spec-card-value { font-size: 14px; }
    .rns-timezone-full-title { font-size: 16px; margin-bottom: 15px; }
    .rns-time-info-pane p { font-size: 14px; }
    
    /* Compass protection mechanism: remains visible on phones, only text and map button are submerged */
    .rns-map-btn-rect, 
    .rns-sovereign-svg-map text:not(.rns-svg-compass text) { 
        display: none; 
    }
}






/* ----------------------------------------------------------------------
   CORPORATE FOOTER MODULE - LIGHT COMMERCIAL STRUCTURE
---------------------------------------------------------------------- */
.rns-footer {
    background-color: #f3f3f3; /* Approved light corporate background constant */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 80px 0 0 0; /* Zero bottom padding to let bottom bar rest completely flush */
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.rns-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr; /* Proportional multi-column grid template layout */
    gap: 60px;
    align-items: flex-start;
}

.rns-footer-column {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Column 1: Brand System Elements */
.rns-footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rns-footer-favicon {
    width: 32px; /* Fixed proportional width matching favicon metrics */
    height: 32px;
    display: block;
}

.rns-footer-brand-name {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rns-footer-brand-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.65;
    margin-bottom: 25px;
}

.rns-footer-license-badge {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #3b3b3b;
    background-color: #ffffff;
    border-left: 2px solid #dbaf5b;
    padding: 8px 14px;
    display: inline-block;
    width: max-content;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}
.rns-footer-license-badge strong { color: #212121; font-weight: 600; }

/* Column headings typography system */
.rns-footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

/* Column 2: Loyal Tracks List mapping */
.rns-footer-tracks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rns-footer-tracks-list li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #3b3b3b;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rns-footer-tracks-list li span { color: #dbaf5b; font-weight: 700; }

/* Column 3: Contact details & CTA button framework */
.rns-footer-geo-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #212121;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rns-footer-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #3b3b3b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.rns-footer-btn-trigger {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 20px;
    width: max-content;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #dbaf5b;
    border: 1px solid #dbaf5b;
    color: #fff;
}
.rns-footer-btn-trigger:hover { background-color: transparent; color: #dbaf5b; border-color: #dbaf5b; }

/* ----------------------------------------------------------------------
   FOOTER BOTTOM ROW - LAW & COPYRIGHT LINKS SUB-SYSTEM
---------------------------------------------------------------------- */
.rns-footer-bottom {
    background-color: #eee;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 10px 0;
}

.rns-footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rns-copyright-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #3b3b3b;
}

.rns-footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rns-footer-legal-links a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #3b3b3b;
    border-bottom: 1px solid transparent;
}
.rns-footer-legal-links a:hover { color: #dbaf5b; border-bottom-color: #dbaf5b; }
.rns-link-divider { color: rgba(0, 0, 0, 0.15); font-size: 12px; pointer-events: none; }

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE FOOTER MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .rns-footer-container {
        grid-template-columns: 1fr 1fr; /* Re-arrange rows stacking on tablet viewports */
        gap: 40px;
    }
    .rns-col-brand { grid-column: span 2; max-width: 100%; }
}

@media (max-width: 768px) {
    .rns-footer-container {
        grid-template-columns: 1fr; /* Strict vertical linear alignment matrix on phone devices */
        gap: 35px;
        padding-bottom: 40px;
    }
    .rns-col-brand { grid-column: auto; }
    .rns-footer-heading { margin-bottom: 15px; }
    .rns-footer-btn-trigger { width: 100%; text-align: center; }
    .rns-footer-bottom-container { flex-direction: column; gap: 15px; text-align: center; }
    .rns-footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
    .rns-link-divider { display: none; } /* Drop vertical separators on fluid mobile row stacks */
}




/* ======================================================================
   RNS CATALOG SECTION (EXTENDED 6-TAB VISUAL MATRICES)
====================================================================== */
.rns-catalog-section {
    background-color: #ffffff;
    width: 100%;
    padding: 100px 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    
    /* Strict Design Fix: 4px Solid Brand Gold Bottom Border Line */
    border-bottom: 4px solid #dbaf5b;
}

.rns-catalog-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Grand Header Block Area */
.rns-catalog-header {
    max-width: 1000px;
    width: 100%;
    text-align: left;
    margin-bottom: 50px;
}

.rns-catalog-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #dbaf5b;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    display: block;
}

.rns-catalog-title {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 700;
    color: #212121;
    line-height: 1.25;
    margin-bottom: 30px;
}

.rns-catalog-divider {
    height: 1px;
    width: 80px;
    background-color: #dbaf5b;
    margin-bottom: 35px;
}

.rns-catalog-lead {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #3b3b3b;
    line-height: 1.8;
}

/* ----------------------------------------------------------------------
   TABS NAV ROW INTERFACE
---------------------------------------------------------------------- */
.rns-tabs-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 1px;
    margin-bottom: 70px;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}
.rns-tabs-nav-wrapper::-webkit-scrollbar { display: none; }

.rns-tab-nav-btn {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #3b3b3b;
    padding: 15px 22px;
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.rns-tab-nav-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #dbaf5b;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rns-tab-nav-btn:hover { color: #dbaf5b; }
.rns-tab-nav-btn.rns-tab-active { color: #dbaf5b; }
.rns-tab-nav-btn.rns-tab-active::after { width: 100%; }

/* ----------------------------------------------------------------------
   TABS CONTENT PANELS VISUAL DESIGN
---------------------------------------------------------------------- */
.rns-tab-content-panel {
    display: none;
    width: 100%;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.rns-tab-content-panel.rns-panel-active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.rns-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ----------------------------------------------------------------------
   JEWEL CRYSTAL BACKPLATES FRAMEWORK (NATIVE CSS KINETICS)
---------------------------------------------------------------------- */
.rns-panel-media-box {
    width: 100%;
    position: relative;
    padding: 30px; /* Provides internal safety margins for rotating diamond edges */
    box-sizing: border-box;
}

.rns-crystal-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    pointer-events: none;
    box-sizing: border-box;
}

/* Layer 1: Brand Gold Diamond Outline with elegant slow rotation */
.rns-cry-primary {
    border: 1px solid #dbaf5b;
    opacity: 0.25;
    z-index: 1;
    animation: rnsCrystalRotateClockwise 14s infinite linear;
}

/* Layer 2: Corporate Charcoal Diamond Outline with rapid reverse rotation */
.rns-cry-secondary {
    border: 1px solid #212121;
    opacity: 0.12;
    z-index: 1;
    animation: rnsCrystalRotateCounter 10s infinite linear;
}

.rns-panel-img-asset {
    width: 100%;
    height: 380px;
    object-fit: cover;
    position: relative;
    z-index: 2; /* Rests perfectly over the rotating crystal layers */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Info Panel Typography Matrix */
.rns-panel-info { display: flex; flex-direction: column; text-align: left; }
.rns-panel-tag { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; color: #dbaf5b; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.rns-panel-heading { font-family: 'Cinzel', serif; font-size: 24px; font-weight: 700; color: #212121; letter-spacing: 0.5px; line-height: 1.35; margin-bottom: 20px; }
.rns-panel-text { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 400; color: #3b3b3b; line-height: 1.75; margin-bottom: 30px; }

/* ----------------------------------------------------------------------
   B2B RIGID SPECIFICATION TABLES ENGINE
---------------------------------------------------------------------- */
.rns-table-responsive-wrapper { width: 100%; overflow-x: auto; border: 1px solid rgba(0, 0, 0, 0.06); box-shadow: 0 4px 20px rgba(0,0,0,0.01); }
.rns-table-responsive-wrapper::-webkit-scrollbar { height: 3px; }
.rns-table-responsive-wrapper::-webkit-scrollbar-track { background: #f7f7f7; }
.rns-table-responsive-wrapper::-webkit-scrollbar-thumb { background: #dbaf5b; }

.rns-spec-table { width: 100%; border-collapse: collapse; text-align: left; min-width: 500px; }
.rns-spec-table th, .rns-spec-table td { padding: 14px 18px; font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.5; }
.rns-spec-table th { background-color: #212121; color: #ffffff; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.rns-spec-table td { color: #3b3b3b; border-bottom: 1px solid rgba(0, 0, 0, 0.05); background-color: #ffffff; }
.rns-spec-table tr:last-child td { border-bottom: none; }
.rns-spec-table tr:nth-child(even) td { background-color: #f7f7f7; }

/* ----------------------------------------------------------------------
   NATIVE CSS KEYFRAMES - ORBITAL CRYSTAL ROTATIONS
---------------------------------------------------------------------- */
@keyframes rnsCrystalRotateClockwise {
    from { transform: translate(-50%, -50%) rotate(45deg); }
    to { transform: translate(-50%, -50%) rotate(405deg); }
}

@keyframes rnsCrystalRotateCounter {
    from { transform: translate(-50%, -50%) rotate(45deg); }
    to { transform: translate(-50%, -50%) rotate(-315deg); }
}

/* ----------------------------------------------------------------------
   THREE-LAYER ADAPTIVE MATRIX
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .rns-panel-grid { grid-template-columns: 1fr; gap: 40px; }
    .rns-catalog-title { font-size: 36px; }
    .rns-panel-img-asset { height: 320px; object-position: top center;}
    .rns-panel-media-box { padding: 15px; }
}

@media (max-width: 768px) {
    .rns-catalog-section { padding: 60px 15px; }
    .rns-catalog-title { font-size: 28px; line-height: 1.3; }
    .rns-catalog-lead { font-size: 15px; }
    .rns-tabs-nav-wrapper { margin-bottom: 40px; }
    .rns-tab-nav-btn { font-size: 14px; padding: 12px 15px; }
    .rns-panel-img-asset { height: 220px; }
    .rns-panel-heading { font-size: 20px; margin-bottom: 15px; }
    .rns-panel-text { font-size: 14px; margin-bottom: 20px; }
    
    /* Submerge rotating crystal outlines on mobile viewport grids to secure speed performance */
    .rns-crystal-frame { display: none; }
}



/* ----------------------------------------------------------------------
   LAYER 1366
---------------------------------------------------------------------- */
@media (max-width: 1366px) {
.rns-hero-section:before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: url('/1779354534.png');
    background-size: cover;
    z-index: -1;
}


}

/* ----------------------------------------------------------------------
   LAYER 1024
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
.rns-about-manifesto:before {
    content: '';
    position: absolute;
    bottom: -175px;
    left: unset;
    right: 0;
    width: 210px;
    height: 200px;
    background: url(/58.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}



}

/* ----------------------------------------------------------------------
   LAYER 500
---------------------------------------------------------------------- */
@media (max-width: 500px) {
.rns-hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background: url('/1779354534.png');
    background-size: contain;
    z-index: -1;
    background-repeat: no-repeat
}
.rns-modal-title {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.rns-modal-lead {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    color: #3b3b3b;
    line-height: 1.6;
    margin-bottom: 30px;
}
div.rns-modal-overlay .rns-modal-body .rns-modal-close-side {
    left: unset;
    top: 6px;
    right: 10px;
    transform: none;
    color: #dbaf5b;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
}
div.rns-modal-overlay .rns-modal-body {
    padding: 40px 10px;
}
div.rns-modal-overlay {
    padding: 30px 10px;
}
.rns-contact-form input[type="text"], .rns-contact-form input[type="email"],
.rns-contact-form input[type="tel"], .rns-contact-form select, .rns-contact-form textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #3b3b3b;
    background-color: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 10px 10px;
    height: 42px;
    outline: none;
    box-sizing: border-box;
    width: 100%;
    border-radius: 0;
    transition: all 0.3s ease;
}
.rns-form-group label {
    font-size: 12px;
}
.rns-checkbox-item label {
    font-size: 13px;
}
.rns-form-submit-btn {
    font-size: 14px;
    padding: 10px 15px;
}
.rns-hero-title {
    font-size: 28px;
    line-height: 1.2;
}
.rns-hero-description {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}
.rns-about-manifesto:before {
    content: '';
    position: absolute;
    bottom: -125px;
    left: unset;
    right: 0;
    width: 160px;
    height: 120px;
    background: url(/58.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}
.rns-html-compass-layer {
    position: absolute;
    top: -35px;
    left: 0;
    width: 90px;
    height: 95px;
    z-index: 100;
    pointer-events: none;
    display: block !important;
}    
    
    
    
    
    

}
