/* ==========================================================================
   1. CORE GLOBAL VARIABLES & DESIGN SYSTEM UTILITIES (CONSOLIDATED)
   ========================================================================== */
:root {
    --bg-cream: #1e1d1a;
    --accent-matcha: #94b49f;
    --accent-matcha-dark: #b8cfbf;
    --text-charcoal: #fbf9f1;
    --card-bg-white: #121110;
    --y2k-border: 2px solid #fbf9f1;
    --font-heading: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

/* Global Reset & Strict Box Containment Engine */
*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-charcoal);
    font-family: var(--font-body);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding-top: 95px;
}

::selection {
    background-color: var(--accent-matcha);
    color: #121110;
}

/* ==========================================================================
   2. FIXED-TOP NAVIGATION CONTAINER (PC RESTORED & MOBILE SECURED)
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--bg-cream);
    border-bottom: var(--y2k-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
}

.nav-logo-block {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* DESKTOP: Base Navigation Links Container */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
    order: 2;
}

/* DESKTOP: Button Container (Pinned to the Extreme Right Edge) */
.nav-right-actions-wrapper {
    display: flex;
    align-items: center;
    margin-left: 40px;
    flex-shrink: 0;
    order: 3;
}

.nav-links a {
    color: var(--text-charcoal) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-matcha) !important;
}

.desktop-fuel-btn {
    display: inline-flex;
}

.mobile-fuel-btn {
    display: none;
}

@media (max-width: 992px) {

    .desktop-fuel-btn {
        display: none;
    }

    .mobile-fuel-btn {
        display: inline-flex;
        margin-left: auto;
        margin-right: 12px;
    }

    .logo-box-image-wrapper {
        width: 50px !important;
        height: 50px !important;
    }

    .logo-box-image-wrapper img {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

    .logo-text span {
        display: none !important;
    }

}


.logo-text strong {
    font-size: 14px !important;
    line-height: 1 !important;
}


.nav-logo-block {
    gap: 8px !important;
}


/* Global Navigation Fuel Button Anchor Styling */
.btn-nav-fuel {
    background-color: var(--accent-matcha);
    border: var(--y2k-border);
    color: #121110 !important;
    padding: 8px 16px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700 !important;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-nav-fuel:hover {
    background-color: var(--accent-matcha-dark);
    transform: translateY(-2px);
}

/* DESKTOP DEFAULTS: Hide hamburger and treat wrapper as normal inline item */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-charcoal);
}

/* Logo Image Container Matrix */
.logo-box-image-wrapper {
    width: 52px;
    height: 52px;
    border: var(--y2k-border);
    border-radius: 50%;
    overflow: hidden;
    background-color: #d2d7c4 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-box-image-wrapper {
    overflow: hidden;
}

.logo-box-image-wrapper img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

.nav-logo-block .logo-text {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.logo-text strong {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.1;
    color: var(--text-charcoal);
}

.logo-text span {
    font-size: 13px;
    font-weight: 600;
    color: #a3a19c;
    line-height: 1.2;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   3. MAIN STAGE HERO REGION
   ========================================================================== */
.hero-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    min-height: 75vh;
}

.hero-content {
    position: relative;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.highlight-text {
    color: var(--accent-matcha-dark);
}

.hero-subtext {
    font-size: 16px;
    line-height: 1.5;
    color: #d1cfc7;
    max-width: 460px;
    margin-bottom: 30px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--card-bg-white);
    color: var(--text-charcoal);
    text-decoration: none;
    font-weight: 700;
    border: var(--y2k-border);
    padding: 14px 28px;
    border-radius: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-explore:hover {
    background-color: var(--accent-matcha);
    color: #121110;
    transform: translateY(-2px);
}

/* ==========================================================================
   4. ASYMMETRIC FLOATING HERO POLAROIDS
   ========================================================================== */
.hero-gallery-cluster {
    position: relative;
    height: 480px;
    width: 100%;
}

.doodle-speech-bubble {
    position: absolute;
    top: -20px;
    right: 20px;
    background-color: var(--card-bg-white);
    border: var(--y2k-border);
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    transform: rotate(4deg);
    z-index: 10;
}

.polaroid-card {
    position: absolute;
    background-color: var(--card-bg-white);
    border: var(--y2k-border);
    padding: 12px 12px 24px 12px;
    border-radius: 4px;
    width: 210px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), z-index 0.2s ease;
}

.polaroid-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 15;
}

.photo-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1.5px solid var(--text-charcoal);
    margin-bottom: 12px;
    background-color: #2b2a27;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-glyph {
    font-size: 32px;
    color: var(--accent-matcha-dark);
    position: absolute;
    z-index: 1;
}

.polaroid-card .caption {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.tape-element {
    position: absolute;
    width: 75px;
    height: 25px;
    background-color: rgba(148, 180, 159, 0.4);
    z-index: 5;
}

.card-top {
    top: 40px;
    left: 40px;
    transform: rotate(-6deg);
}

.tape-top {
    top: -12px;
    left: 60px;
    transform: rotate(15deg);
}

.card-bottom-left {
    bottom: 20px;
    left: -10px;
    transform: rotate(4deg);
}

.tape-left {
    top: -10px;
    left: -10px;
    transform: rotate(-35deg);
}

.card-bottom-right {
    bottom: 40px;
    right: 10px;
    transform: rotate(-3deg);
    width: 230px;
}

.tape-right {
    top: -14px;
    right: 40px;
    transform: rotate(25deg);
}

.doodle-icon {
    position: absolute;
    color: var(--accent-matcha-dark);
    font-size: 24px;
    pointer-events: none;
}

.img-heart {
    top: -15px;
    left: 250px;
    transform: rotate(15deg);
}

.img-lightning {
    bottom: 80px;
    left: 320px;
    transform: rotate(-10deg);
}

.img-sparkle-right {
    bottom: 15px;
    right: -5px;
    font-size: 18px;
}

/* ==========================================================================
   FAILSHEET CORES: HIDE FALLBACK GLYPHS WHEN IMAGES LOAD
   ========================================================================== */
.photo-frame img+i,
.scrapbook-frame img+i,
.gallery-image-frame img+i,
.placeholder-glyph,
.fallback-scatter-icon,
.gallery-fallback-icon {
    display: none !important;
}

/* ==========================================================================
   5. GENERAL SECTION FRAME UTILITIES
   ========================================================================== */
.full-viewport-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 100px;
}

.single-focus-box {
    background-color: var(--card-bg-white);
    border: var(--y2k-border);
    border-radius: 24px;
    width: 100%;
    overflow: hidden;
    box-shadow: 6px 6px 0px var(--text-charcoal);
}

.box-content-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 500px;
}

.text-side {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-side {
    padding: 50px;
    background-color: #1c2420;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-display-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.card-badge-header {
    display: inline-block;
    background-color: var(--accent-matcha);
    border: var(--y2k-border);
    color: #121110;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.section-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: #d1cfc7;
}

/* ==========================================================================
   5A. THREE-COLUMN COLLAGE GRID (ABOUT SECTION)
   ========================================================================== */
.clean-collage-viewport {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 2%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 100px;
}

.master-collage-grid {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 30px;
    width: 100%;
    align-items: center;
}

.main-narrative-card {
    background-color: var(--card-bg-white) !important;
    border: var(--y2k-border) !important;
    border-radius: 24px;
    padding: 60px 45px;
    box-shadow: 6px 6px 0px var(--text-charcoal) !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.main-narrative-card .card-badge-header {
    margin-bottom: 20px;
}

.main-narrative-card .section-display-title {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.main-narrative-card .section-paragraph {
    font-size: 15px;
    line-height: 1.7;
    color: #d1cfc7 !important;
}

.collage-flank {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.scatter-photo {
    background-color: var(--card-bg-white) !important;
    border: var(--y2k-border) !important;
    padding: 10px 10px 24px 10px;
    border-radius: 4px;
    box-shadow: 4px 4px 0px var(--text-charcoal) !important;
    width: 240px;
    position: relative;
    transition: transform 0.3s ease;
}

.scatter-photo:hover {
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: 6px 6px 0px var(--accent-matcha);
}

.scrapbook-frame {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1.5px solid var(--text-charcoal);
    background-color: #2b2a27;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrapbook-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fallback-scatter-icon {
    font-size: 36px;
    color: var(--accent-matcha-dark);
}

.scrapbook-caption {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    margin-top: 8px;
    color: var(--text-charcoal);
}

.pic-1 {
    transform: rotate(-6deg);
}

.tape-1 {
    top: -10px;
    left: 40px;
    transform: rotate(15deg);
}

.pic-2 {
    transform: rotate(4deg);
}

.tape-2 {
    top: -10px;
    right: 40px;
    transform: rotate(-10deg);
}

.pic-3 {
    transform: rotate(5deg);
}

.tape-3 {
    top: -10px;
    left: 50px;
    transform: rotate(-15deg);
}

.pic-4 {
    transform: rotate(-4deg);
}

.tape-4 {
    top: -10px;
    right: 50px;
    transform: rotate(20deg);
}

/* ==========================================================================
   5B. OUR WORK CORE PILLARS & METRICS REGION STYLES
   ========================================================================== */
.pillar-card {
    background-color: var(--card-bg-white) !important;
    border: var(--y2k-border) !important;
    box-shadow: 4px 4px 0px var(--text-charcoal) !important;
}

.compact-pillar-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: start;
}

.compact-pillar-row:last-of-type {
    margin-bottom: 0;
}

.mini-icon-box {
    width: 40px;
    height: 40px;
    background-color: #1e1d1a;
    border: var(--y2k-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pillar-row-text h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-charcoal);
}

.pillar-row-text p {
    font-size: 13px;
    line-height: 1.4;
    color: #d1cfc7 !important;
}

.dark-badge {
    background-color: var(--text-charcoal) !important;
    color: #121110 !important;
    border: 2px solid var(--text-charcoal) !important;
}

.border-right-split {
    border-right: var(--y2k-border);
}

.matcha-bg-variant {
    background-color: #1a241e !important;
}

.metrics-side-panel {
    background-color: var(--accent-matcha);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.embedded-metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
}

.metric-block-item {
    background-color: var(--card-bg-white) !important;
    border: var(--y2k-border) !important;
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    color: var(--text-charcoal) !important;
}

.metric-block-item h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.metric-block-item p {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-matcha-dark) !important;
}

.smiley-badge-absolute {
    width: 45px;
    height: 45px;
    background-color: var(--card-bg-white);
    border: var(--y2k-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 20px;
    transform: rotate(12deg);
    color: var(--text-charcoal);
}

/* ==========================================================================
   5C. HORIZONTAL TEXT JOURNAL CAROUSEL ENGINE (STORIES SECTION)
   ========================================================================== */
.stories-carousel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-header-block {
    text-align: center;
    margin-bottom: 45px;
}

.carousel-header-block .card-badge-header {
    align-self: center;
    margin-bottom: 15px;
}

.carousel-header-block .section-paragraph {
    max-width: 600px;
    margin: 0 auto;
}

.stories-slider-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px 30px 5px;
    scrollbar-width: none;
}

.stories-slider-viewport::-webkit-scrollbar {
    display: none;
}

.stories-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

.journal-story-card {
    background-color: var(--card-bg-white) !important;
    border: var(--y2k-border) !important;
    border-radius: 20px;
    width: 340px;
    padding: 30px;
    box-shadow: 4px 4px 0px var(--text-charcoal) !important;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.journal-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 0px var(--accent-matcha);
}

.journal-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.journal-date {
    font-size: 12px;
    font-weight: 700;
    color: #a3a19c;
}

.journal-tag {
    font-size: 11px;
    font-weight: 800;
    background-color: #1e1d1a;
    border: 1.5px solid var(--text-charcoal);
    padding: 2px 8px;
    border-radius: 6px;
    color: var(--text-charcoal);
}

.journal-story-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-charcoal);
}

.journal-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #d1cfc7 !important;
    margin-bottom: 20px;
}

.journal-card-footer {
    margin-top: auto;
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-matcha);
    font-family: var(--font-heading);
}

.template-card-variant {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0;
}

.inner-dashed-box-msg {
    width: 100%;
    height: 100%;
    border: var(--y2k-border);
    border-style: dashed;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--accent-matcha-dark);
}

.inner-dashed-box-msg h3 {
    font-size: 18px;
    margin-top: 8px;
    color: var(--text-charcoal);
}

.inner-dashed-box-msg p {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 6px;
    color: #d1cfc7;
}

/* ==========================================================================
   5D. AUTOMATIC + MANUAL MOTION IMAGE REEL CAROUSEL (GALLERY SECTION)
   ========================================================================== */
.gallery-carousel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-slider-viewport {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 25px 5px;
    scrollbar-width: none;
}

.gallery-slider-viewport::-webkit-scrollbar {
    display: none;
}

.gallery-photo-card {
    background-color: var(--card-bg-white) !important;
    border: var(--y2k-border) !important;
    border-radius: 20px;
    padding: 16px;
    width: 330px;
    box-shadow: 4px 4px 0px var(--text-charcoal) !important;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.gallery-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 0px var(--accent-matcha) !important;
}

.gallery-image-frame {
    width: 100%;
    aspect-ratio: 16 / 11;
    border: 1.5px solid var(--text-charcoal);
    border-radius: 12px;
    overflow: hidden;
    background-color: #2b2a27;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-fallback-icon {
    font-size: 36px;
    color: var(--accent-matcha-dark);
    position: absolute;
}

.gallery-photo-meta {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    color: var(--text-charcoal);
}

.carousel-control-ribbon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.slider-arrow-btn {
    width: 44px;
    height: 44px;
    background-color: var(--card-bg-white);
    border: var(--y2k-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-charcoal);
    cursor: pointer;
    box-shadow: 2px 2px 0px var(--text-charcoal);
    transition: all 0.15s ease;
}

.slider-arrow-btn:hover {
    background-color: var(--accent-matcha);
    color: #121110;
    transform: translateY(-1px);
    box-shadow: 3px 3px 0px var(--text-charcoal);
}

.slider-arrow-btn:active {
    transform: translateY(1px);
    box-shadow: 1px 1px 0px var(--text-charcoal);
}

.carousel-indicator-bar {
    width: 60px;
    height: 4px;
    background-color: #2b2a27;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.indicator-active-pill {
    width: 25px;
    height: 100%;
    background-color: var(--accent-matcha);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: left 0.4s ease;
}

.gallery-indicator-pill {
    width: 25px;
    height: 100%;
    background-color: var(--accent-matcha);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: left 0.4s ease;
}

/* ==========================================================================
   6. UPGRADED WIDESCREEN BRAND MIRROR FOOTER FRAME
   ========================================================================== */
.widescreen-brand-footer-container {
    max-width: 1400px;
    margin: 80px auto 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
}

.footer-navbar-mirror {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 40px;
    background-color: var(--bg-cream);
    border-top: var(--y2k-border);
    border-bottom: var(--y2k-border);
    width: 100%;
}

.footer-logo-major-flank {
    display: flex;
    align-items: center;
    gap: 22px;
}

.giant-footer-logo-box {
    width: 110px;
    height: 110px;
    border: var(--y2k-border);
    border-radius: 50%;
    overflow: hidden;
    background-color: #d7dccb !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.giant-footer-logo-box img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.footer-major-identity-titles {
    display: flex;
    flex-direction: column;
    max-width: 450px;
}

.footer-major-identity-titles h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--text-charcoal);
    line-height: 1;
    margin-bottom: 6px;
}

.footer-major-identity-titles p {
    font-size: 12px;
    font-weight: 600;
    color: #a3a19c;
    line-height: 1.4;
}

.footer-links-major-flank {
    display: flex;
    align-items: center;
    gap: 20px;
}

.widescreen-social-tab {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--card-bg-white);
    color: var(--text-charcoal);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 24px;
    border: var(--y2k-border);
    border-radius: 12px;
    box-shadow: 3px 3px 0px var(--text-charcoal);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.widescreen-social-tab:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px var(--accent-matcha);
}

.widescreen-social-tab i {
    font-size: 18px;
}

.tab-ig i {
    color: #e1306c;
}

.tab-email i {
    color: #94b49f;
}

.footer-sub-bar-clearance {
    padding: 30px 40px;
    text-align: center;
}

.footer-sub-bar-clearance span {
    font-size: 11px;
    font-weight: 600;
    color: #5e5d5a;
}

/* ==========================================================================
   7. BACK-END DESIGN FORM SYSTEM & CORE TRANSACTION INTERFACES (FUELUS ROUTE)
   ========================================================================== */
.terminal-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 5%;
    align-items: stretch;
}

.terminal-card {
    background-color: var(--card-bg-white);
    border: var(--y2k-border);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 4px 4px 0px var(--text-charcoal);
}

.terminal-card h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}

.terminal-card .sub-label {
    font-size: 14px;
    color: #a3a19c;
    margin-bottom: 25px;
    display: block;
}

.y2k-form-group {
    margin-bottom: 20px;
}

.y2k-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.y2k-input {
    width: 100%;
    background-color: var(--bg-cream);
    border: var(--y2k-border);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-charcoal);
    outline: none;
    transition: border-color 0.2s ease;
}

.y2k-input:focus {
    border-color: var(--accent-matcha);
}

textarea.y2k-input {
    resize: none;
    min-height: 100px;
}

.btn-submit-terminal {
    width: 100%;
    background-color: var(--accent-matcha);
    border: var(--y2k-border);
    border-radius: 12px;
    padding: 14px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: #121110;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.btn-submit-terminal:hover {
    background-color: var(--accent-matcha-dark);
    transform: translateY(-1px);
}

.qr-display-wrapper {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    border: var(--y2k-border);
    border-radius: 14px;
    margin: 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    position: relative;
}

.qr-display-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
}

.string-data-badge {
    background-color: var(--bg-cream);
    border: var(--y2k-border);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
}

.btn-copy-icon {
    background: none;
    border: none;
    color: var(--accent-matcha-dark);
    cursor: pointer;
    font-size: 16px;
}

.trust-ribbon-row {
    display: flex;
    justify-content: space-between;
    border-top: 1.5px solid #2b2a27;
    padding-top: 20px;
}

.trust-item {
    font-size: 12px;
    font-weight: 700;
    color: #a3a19c;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   7B. VERTICAL STACKED SYSTEM & FULL-WIDTH BUTTON CONTROLLERS
   ========================================================================== */
.left-terminal-action-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 460px;
    margin-top: 15px;
}

/* Expanded Full-Width Email Display Node */
.widescreen-social-tab.tab-email-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--card-bg-white);
    color: var(--text-charcoal);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 16px;
    border: var(--y2k-border);
    border-radius: 12px;
    width: 100%;
    box-shadow: 4px 4px 0px var(--text-charcoal);
    transition: all 0.2s ease;
}

/* Enlarged Feedback Pop-Up Trigger Action Button */
.modal-trigger-large-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--accent-matcha);
    color: #121110;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 16px;
    padding: 18px;
    border: var(--y2k-border);
    border-radius: 14px;

    width: 320px;
    max-width: 100%;
    margin: 15px auto;

    box-shadow: 4px 4px 0px var(--text-charcoal);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.modal-trigger-large-btn:hover {
    background-color: var(--accent-matcha-dark);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px var(--text-charcoal);
}

.modal-trigger-large-btn:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 0px var(--text-charcoal);
}

/* ==========================================================================
   7C. BRUTALIST CONTENT BALANCING PORTALS (MILESTONE & INSTRUCTIONS)
   ========================================================================== */
.brutalist-divider {
    border: none;
    border-top: 1.5px dashed #2b2a27;
    margin: 5px 0;
    width: 100%;
}

.brutalist-info-card {
    background-color: var(--card-bg-white);
    border: var(--y2k-border);
    border-radius: 14px;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Milestone Container Target Overrides */
.milestone-theme h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--text-charcoal);
}

.milestone-theme p {
    font-size: 13px;
    line-height: 1.5;
    color: #a3a19c;
    margin-bottom: 14px;
}

.milestone-theme p strong {
    color: var(--accent-matcha-dark);
}

.card-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.info-tag-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    background-color: #1e1d1a;
    border: 1.5px solid var(--accent-matcha);
    padding: 3px 8px;
    border-radius: 6px;
    color: var(--accent-matcha);
}

.stat-percentage {
    font-size: 11px;
    font-weight: 700;
    color: #5e5d5a;
}

/* Progress Meter Configurations */
.progress-bar-container {
    width: 100%;
    height: 6px;
    background-color: #1e1d1a;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #2b2a27;
}

.progress-bar-fill {
    width: 45%;
    height: 100%;
    background-color: var(--accent-matcha);
    border-radius: 3px;
}

/* Instructions Message Box Overrides */
.note-theme {
    border-style: dashed;
    background-color: transparent;
    border-color: #2b2a27;
    padding: 16px;
}

.note-theme h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--text-charcoal);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.note-theme p {
    font-size: 12px;
    line-height: 1.5;
    color: #8c8a84;
}

/* ==========================================================================
   7D. RIGHT SIDE SCAN TO FUEL CARDS ALIGNMENT STRETCH PORTALS
   ========================================================================== */
.right-scan-payment-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    text-align: center;
}

.right-card-header-block {
    width: 100%;
}

.payment-heart-icon {
    font-size: 26px;
    color: var(--accent-matcha);
    margin-bottom: 8px;
    display: inline-block;
}

/* Expanded QR Container metrics to eliminate void spaces nicely */
.qr-display-wrapper.extended-qr-frame {
    max-width: 290px;
    margin: 15px auto;
}

.fallback-qr-glyph {
    font-size: 85px;
    color: #121110;
    position: absolute;
    z-index: 1;
}

.upi-badge-container {
    width: 100%;
    max-width: 290px;
    margin: 5px auto 0 auto;
}

.upi-badge-container .string-data-badge {
    margin-bottom: 0;
    padding: 11px 14px;
    border-radius: 10px;
}

.trust-ribbon-row.payment-trust-ribbon {
    width: 100%;
    border-top: 1.5px solid #2b2a27;
    padding-top: 18px;
    margin-top: 15px;
}

.payment-trust-ribbon .trust-item i {
    color: var(--accent-matcha);
}

/* ==========================================================================
   7E. SMOOTH LENS BLUR MODAL OVERLAY COMPONENT
   ========================================================================== */
.modal-blur-overlay-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(18, 17, 16, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-blur-overlay-screen.modal-active-stage {
    opacity: 1;
    pointer-events: auto;
}

.brutalist-popup-card-modal {
    background-color: var(--card-bg-white);
    border: var(--y2k-border);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    box-shadow: 6px 6px 0px var(--accent-matcha);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-blur-overlay-screen.modal-active-stage .brutalist-popup-card-modal {
    transform: translateY(0);
}

/* =========================
   MOBILE MODAL FIX
   ========================= */

@media (max-width: 768px) {

    .modal-blur-overlay-screen {
        padding: 15px 0 !important;
        overflow-y: auto !important;
        align-items: flex-start !important;
    }

    .brutalist-popup-card-modal {
        width: 92% !important;
        max-width: 92% !important;

        max-height: 90vh !important;

        overflow-y: auto !important;

        padding: 20px !important;

        border-radius: 20px !important;
    }

    .modal-popup-header-block h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .modal-popup-header-block p {
        font-size: 13px !important;
    }

    textarea.y2k-input {
        min-height: 70px !important;
    }

    .btn-submit-terminal {
        margin-bottom: 10px !important;
    }

    .modal-close-dismiss-cross-btn {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: var(--card-bg-white) !important;
    }
}

.modal-close-dismiss-cross-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-charcoal);
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s ease;
}

.modal-close-dismiss-cross-btn:hover {
    color: var(--accent-matcha);
}

.modal-popup-header-block {
    text-align: center;
    margin-bottom: 25px;
}

.modal-popup-header-block h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.modal-popup-header-block p {
    font-size: 13px;
    color: #a3a19c;
    margin-top: 4px;
}

.modal-form-grid-engine {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-input-embed-icon {
    position: absolute;
    bottom: 14px;
    right: 16px;
    color: #6e6d6a;
    font-size: 14px;
    pointer-events: none;
}

/* ==========================================================================
   8. COMPACT LAYOUT BREAKPOINTS ENGINE (PERFECT ALIGNMENT MATRIX)
   ========================================================================== */
@media (max-width: 1100px) {
    .master-collage-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .collage-flank {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
    }

    .scatter-photo {
        width: 210px;
        transform: none !important;
    }

    .tape-element {
        display: none;
    }
}

@media (max-width: 992px) {

    /* --- GLOBAL MOBILE RESET TO KILL HORIZONTAL SCROLL --- */
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        position: relative;
    }

    body {
        padding-top: 65px !important;
    }

    /* --- SOLID MOBILE NAVBAR ENGINE --- */
    .navbar {
        padding: 10px 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: auto !important;
    }

    /* 🎯 FIX: KILLING THE BLUE LINK STYLE */
    .nav-logo-block,
    .logo-block {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;

        flex-shrink: 0 !important;
        width: auto !important;
        text-decoration: none !important;
        /* Removes the underline completely */
        border: none !important;
    }


    /* 🎯 FIX: FORCING TEXT TO BE WHITE/CREAM */
    .logo-text strong {
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        display: block !important;
        margin: 0 !important;
        color: #E6E5D7 !important;
        /* Forces the text to stay premium cream, not blue */
        text-decoration: none !important;
    }

    /* Hiding tagline subtitle string cleanly */
    .logo-text span,
    .nav-logo-block p {
        display: none !important;
    }

    /* 🎯 FUEL BUTTON MATRIX */
    .btn-nav-fuel {
        padding: 6px 14px !important;
        font-size: 11px !important;
        border-radius: 12px !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: 15px !important;
        position: relative !important;
        z-index: 1050 !important;
        pointer-events: auto !important;
        text-decoration: none !important;
    }

    /* 🎯 FIX: DESTROYING THE GRAY BOX & RESTORING 3 LINES */
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        width: 24px !important;
        height: 16px !important;
        /* Proper height for the 3 lines */
        background: transparent !important;
        /* Kills the ugly gray default button background */
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        position: relative !important;
        z-index: 1050 !important;
        pointer-events: auto !important;
    }

    /* Styling the actual 3 white bars */
    .menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 2px !important;
        background-color: #E6E5D7 !important;
        /* Forces lines to be visible */
        border-radius: 2px !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        flex-direction: column;
        background: var(--bg-cream);
        width: 100%;
        padding: 25px 0;
        border-bottom: var(--y2k-border);
        text-align: center;
        gap: 20px;
        z-index: 1000;
        max-width: none;
        margin: 0;
    }

    .desktop-fuel-btn {
        display: none !important;
    }

    .nav-links.active {
        display: flex;
    }

    /* --- HERO CONTAINER STACK --- */
    main.hero-container,
    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 10px 15px 40px 15px !important;
        gap: 35px !important;
        min-height: auto !important;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        margin-top: -45px !important;
    }

    .main-headline {
        font-size: 28px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .hero-subtext {
        margin: 0 auto !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    /* --- HERO POLAROIDS --- */
    div.hero-gallery-cluster,
    .hero-gallery-cluster {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 25px auto 0 auto !important;
        position: relative !important;
        gap: 12px !important;
    }

    .hero-gallery-cluster>div,
    .hero-gallery-cluster .polaroid-card {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        inset: auto !important;
        transform: rotate(-2deg) scale(1) !important;
        width: 45% !important;
        max-width: 150px !important;
        min-width: 125px !important;
        margin: 0 !important;
        box-shadow: 3px 3px 0px var(--text-charcoal) !important;
        float: none !important;
        display: block !important;
    }

    .hero-gallery-cluster>div+div {
        transform: rotate(3deg) !important;
    }

    /* --- "WHAT WE DO" GRID SLIT CRUSH --- */
    section,
    .box-content-split,
    .terminal-layout-grid,
    .master-collage-grid,
    [class*="-split"],
    [class*="-grid"] {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        grid-template-rows: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        gap: 30px !important;
    }

    .text-side,
    .image-side,
    .frame-column,
    .collage-flank {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 10px !important;
        box-sizing: border-box !important;
    }

    .scatter-photo,
    .polaroid-card {
        margin: 10px auto !important;
        max-width: 90% !important;
    }

    .border-right-split {
        border-right: none !important;
        border-bottom: var(--y2k-border) !important;
    }

    .metrics-side-panel {
        max-width: 100% !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .tape-element,
    .doodle-speech-bubble,
    .doodle-icon,
    .decor-line {
        display: none !important;
    }

    /* --- FOOTER & STORIES FIX --- */
    .widescreen-brand-footer-container,
    footer,
    #join-us {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding: 30px 15px !important;
        align-items: center !important;
        text-align: center !important;
    }

    .footer-navbar-mirror,
    .footer-logo-major-flank,
    .footer-links-major-flank {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .widescreen-social-tab {
        width: auto !important;
        justify-content: center !important;
    }

    #stories,
    .stories-section {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .stories-section .swiper-slide,
    .stories-section .journal-card,
    #stories div[class*="-card"] {
        width: 88% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        float: none !important;
        box-sizing: border-box !important;
    }

    .stories-section .swiper,
    .stories-section .slider-wrapper {
        display: block !important;
        width: 100% !important;
        overflow: visible !important;
    }
}