/* --- CORE VARIABLES --- */
:root {
    /* Colors */
    --bg-root: #0A0A0A;
    --bg-panel: #0F0F0F;
    --bg-panel-hover: #141414;
    
    --text-primary: #F2F2ED;
    --text-secondary: rgba(180, 180, 175, 0.65);
    --text-muted: #3D3D3B;
    
    --grid-line: rgba(255, 255, 255, 0.03);
    --accent: #A68A64;
    --accent-muted: rgba(166, 138, 100, 0.08);
    --accent-glow: rgba(166, 138, 100, 0.2);
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing Scale */
    --s-xs: 0.5rem;   /* 8px */
    --s-sm: 1rem;     /* 16px */
    --s-md: 1.5rem;   /* 24px */
    --s-lg: 2rem;     /* 32px */
    --s-xl: 3rem;     /* 48px */
    --s-2xl: 4rem;    /* 64px */
    --s-3xl: 6rem;    /* 96px */
    --s-4xl: 8rem;    /* 128px */
    --s-5xl: 12rem;   /* 192px */

    /* Font Size Scale */
    --t-xs: 0.7rem;
    --t-sm: 0.85rem;
    --t-base: 1rem;
    --t-lg: 1.125rem;
    --t-xl: 1.25rem;
    --t-2xl: 1.75rem;
    --t-3xl: clamp(2rem, 4vw, 2.75rem);
    --t-section: clamp(2.5rem, 5vw, 4.5rem);
    --t-hero: clamp(4rem, 10vw, 8.5rem);
    
    --ease-elite: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-lux: cubic-bezier(0.19, 1, 0.22, 1); 
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    html.custom-cursor-active, 
    html.custom-cursor-active * {
        cursor: none !important;
    }
}

html {
    font-size: 16px;
    background: var(--bg-root);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    background: var(--bg-root);
}

@keyframes dust-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

/* --- CUSTOM CURSOR --- */
.cursor-dot, .cursor-circle {
    position: fixed;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 100000;
    pointer-events: none;
    will-change: transform;
}

.cursor-dot { 
    width: 5px; 
    height: 5px; 
    background: #FFFFFF; 
    transition: transform 0.2s var(--ease-elite), width 0.3s, height 0.3s; 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4); 
}

.cursor-circle {
    width: 34px; 
    height: 34px; 
    border: 1px solid rgba(255, 255, 255, 0.4); 
    opacity: 0.4;
    transition: width 0.4s var(--ease-elite), height 0.4s var(--ease-elite), background-color 0.4s, opacity 0.4s, backdrop-filter 0.4s;
}

body.hovering .cursor-dot {
    width: 3px; height: 3px;
    transform: translate(-50%, -50%) scale(3);
    background: #FFFFFF;
}

body.hovering .cursor-circle {
    width: 64px; height: 64px; 
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3); 
    opacity: 1; 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* --- NOISE OVERLAY --- */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.text-hero {
    font-size: var(--t-hero);
    line-height: 0.8;
    margin-bottom: var(--s-lg);
    letter-spacing: -0.06em;
    position: relative;
    transition: letter-spacing 1.2s var(--ease-lux);
}

.panel-interactive:hover .text-hero {
    letter-spacing: -0.04em;
}

.text-section {
    font-size: var(--t-section);
    line-height: 0.85;
    margin-bottom: var(--s-lg);
    letter-spacing: -0.05em;
}

.label, .mono {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 500;
}

.label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--s-md);
}

.label::before {
    content: ''; display: block; width: 3px; height: 3px;
    background: var(--accent); opacity: 0.4; transition: all 0.8s var(--ease-elite);
}

.panel-interactive:hover .label::before {
    opacity: 1;
    transform: scale(2);
    box-shadow: 0 0 12px var(--accent-glow);
}

p {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: var(--t-base);
    line-height: 1.7;
    max-width: 60ch;
}

p.large {
    font-size: var(--t-lg);
    line-height: 1.6;
}

p.xl {
    font-size: var(--t-xl);
}

/* --- GRID SYSTEM --- */
.master-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    border-left: 1px solid var(--grid-line);
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

.master-grid::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: calc(100% / 12) 100px;
    opacity: 0.2;
}

.panel {
    background-color: var(--bg-panel);
    position: relative;
    padding: var(--s-2xl);
    border-right: 1px solid var(--grid-line);
    border-bottom: 1px solid var(--grid-line);
    overflow: hidden;
    transition: background-color 0.6s var(--ease-elite);
}

/* Constrained Atmospheric Effects */
.panel::before, .header-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.panel::after {
    content: '';
    position: absolute;
    top: -100px; left: -100px; width: calc(100% + 200px); height: calc(100% + 200px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 80px 120px, #fff, rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 150px 150px, #fff, rgba(0,0,0,0));
    background-size: 200px 200px;
    animation: dust-drift 45s linear infinite;
    will-change: transform;
}

.panel-interactive:hover {
    background-color: #111111;
}

.panel-interactive h3, .panel-interactive h1, .panel-interactive h2 {
    transition: transform 0.8s var(--ease-elite), color 0.4s ease, letter-spacing 0.8s var(--ease-elite);
}

.panel-interactive:hover h3, 
.panel-interactive:hover h2 {
    color: var(--text-primary);
    transform: translateX(4px);
}

.panel-interactive::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.02),
        transparent
    );
    transform: skewX(-25deg);
    transition: 1.2s var(--ease-elite);
    pointer-events: none;
}

.panel-interactive:hover::after {
    left: 150%;
}

/* --- TEXTURE IMAGES --- */
.bg-texture {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: grayscale(100%) brightness(0.25) contrast(1.1) blur(15px);
    opacity: 0.25;
    transform: scale(1.15);
    transition: transform 1.5s var(--ease-lux), opacity 0.8s ease, filter 0.8s ease;
}

.watermark-tiled {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.015;
    overflow: hidden;
    display: flex;
    justify-content: space-around;
}

.watermark-strip {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -0.02em;
    color: white;
    line-height: 1.25;
    user-select: none;
    width: 200px;
    text-align: center;
}

.watermark-strip span {
    display: block;
    padding: 5px 0;
}

.watermark-strip.up {
    animation: watermark-scroll-up 60s linear infinite;
}

.watermark-strip.down {
    animation: watermark-scroll-down 60s linear infinite;
}

@keyframes watermark-scroll-up {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

@keyframes watermark-scroll-down {
    from { transform: translateY(-50%); }
    to { transform: translateY(0); }
}

.panel-interactive:hover .bg-texture {
    transform: scale(1.08);
    opacity: 0.4;
    filter: grayscale(100%) brightness(0.35) contrast(1.2) blur(5px);
}

.hero-aura {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, var(--accent-glow) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, rgba(15, 15, 15, 1) 0%, rgba(10, 10, 10, 0.95) 100%);
    opacity: 0.7;
    filter: blur(80px);
    z-index: 1;
    transition: opacity 1.5s var(--ease-lux), transform 1.5s var(--ease-lux), filter 1.5s var(--ease-lux);
    animation: aura-shift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-aura::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: glaze-sweep 12s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes aura-shift {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.15) translate(3%, 2%); }
    100% { transform: scale(1.05) translate(-2%, 4%); }
}

@keyframes glaze-sweep {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.panel-interactive:hover .hero-aura {
    opacity: 1;
    transform: scale(1.1);
    filter: blur(50px); /* Slightly clearer on hover */
}

.panel > *:not(.bg-texture):not(.watermark-tiled):not(.hero-aura) {
    position: relative;
    z-index: 10;
}

/* --- HEADER --- */
.header-strip {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 var(--s-xl);
    position: sticky;
    top: 0;
    z-index: 9000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--grid-line);
}

.brand-container { display: flex; align-items: center; z-index: 1001; }
.brand-link { display: flex; align-items: center; gap: var(--s-sm); text-decoration: none; color: inherit; }
.brand-mark { width: 16px; height: 16px; color: var(--text-primary); display: flex; align-items: center; }
.brand-logo { width: 100%; height: 100%; display: block; }
.brand-text { font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--text-primary); }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0;
    z-index: 5000;
    cursor: pointer;
    width: 48px;
    height: 48px;
    transition: all 0.3s var(--ease-elite);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.4s var(--ease-elite);
    border-radius: 4px;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.nav-links { display: flex; gap: var(--s-xl); }
.nav-link {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-decoration: none;
    color: var(--text-secondary);
    text-transform: uppercase;
    transition: color 0.4s var(--ease-elite), transform 0.4s var(--ease-elite);
    position: relative;
    padding-bottom: 6px;
    letter-spacing: 0.2em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.6s var(--ease-elite);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover { 
    color: var(--text-primary); 
}

/* --- TICKER --- */
.ticker-container {
    grid-column: 1 / -1;
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--bg-root);
    border-bottom: 1px solid var(--grid-line);
    position: relative;
    z-index: 5;
}

.ticker-wrapper { display: flex; }
.ticker-text {
    white-space: nowrap;
    animation: ticker 120s linear infinite;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent);
    text-transform: uppercase;
    padding-right: var(--s-lg);
    font-weight: 500;
    letter-spacing: 0.3em;
    opacity: 0.12;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(8px);
    transition: 
        opacity 1.8s var(--ease-elite), 
        transform 1.8s var(--ease-elite),
        filter 1.8s var(--ease-elite);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* --- FOOTER --- */
.footer {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: var(--s-4xl) var(--s-xl);
    gap: var(--s-2xl);
    background: #080808;
}

/* --- UTILITIES --- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.text-right { text-align: right; }
.no-underline { text-decoration: none; }
.border-t { border-top: 1px solid var(--grid-line); }
.border-b { border-bottom: 1px solid var(--grid-line); }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.8; }
.opacity-50 { opacity: 0.5; }

.mt-xs { margin-top: var(--s-xs); }
.mt-sm { margin-top: var(--s-sm); }
.mt-md { margin-top: var(--s-md); }
.mt-lg { margin-top: var(--s-lg); }
.mt-xl { margin-top: var(--s-xl); }
.mt-4xl { margin-top: var(--s-4xl); }

.mb-xs { margin-bottom: var(--s-xs); }
.mb-sm { margin-bottom: var(--s-sm); }
.mb-md { margin-bottom: var(--s-md); }
.mb-lg { margin-bottom: var(--s-lg); }
.mb-xl { margin-bottom: var(--s-xl); }

.pt-xs { padding-top: var(--s-xs); }
.pt-sm { padding-top: var(--s-sm); }
.pt-md { padding-top: var(--s-md); }
.pt-lg { padding-top: var(--s-lg); }

.pb-xs { padding-bottom: var(--s-xs); }
.pb-sm { padding-bottom: var(--s-sm); }

.gap-xs { gap: var(--s-xs); }
.gap-sm { gap: var(--s-sm); }
.gap-md { gap: var(--s-md); }
.gap-lg { gap: var(--s-lg); }
.gap-xl { gap: var(--s-xl); }

.text-xs { font-size: var(--t-xs); }
.text-sm { font-size: var(--t-sm); }
.text-base { font-size: var(--t-base); }
.text-lg { font-size: var(--t-lg); }
.text-xl { font-size: var(--t-xl); }
.text-2xl { font-size: var(--t-2xl); }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-white { color: #ffffff; }

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .noise-overlay, .panel::before, .panel::after, .header-strip::before {
        display: none !important;
    }
}

/* --- PAGE SPECIFIC LAYOUTS --- */
.hero-left {
    grid-column: 1 / 8;
    padding: var(--s-5xl) var(--s-2xl) var(--s-3xl) var(--s-2xl);
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-right {
    grid-column: 8 / -1;
    padding: var(--s-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.thesis-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: var(--s-5xl) var(--s-2xl);
    gap: var(--s-2xl);
    min-height: 80vh;
    align-items: center;
}

.doctrine-title { grid-column: 1 / 5; padding: var(--s-3xl) var(--s-2xl); }
.doctrine-content {
    grid-column: 5 / -1;
    padding: var(--s-3xl) var(--s-2xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-box { grid-column: span 3; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; }
.metric-val { font-size: var(--t-section); font-weight: 700; line-height: 1; margin-bottom: var(--s-xs); }
.metric-label { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: var(--t-xs); color: var(--text-secondary); text-transform: uppercase; border-top: 1px solid var(--grid-line); padding-top: var(--s-sm); }

.service-details { max-height: 0; opacity: 0; overflow: hidden; transition: all 0.8s var(--ease-elite); }
.hero-description { line-height: 1.8; max-width: 50ch; }
.metric-box.active .service-details { max-height: 200px; opacity: 1; margin-top: var(--s-md); }
.metric-box.active .metric-label span:last-child { transform: rotate(45deg); }

.protocol-section { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; padding: var(--s-4xl) var(--s-2xl); gap: var(--s-3xl); align-items: start; }
.protocol-steps { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-xl); }
.step-item { padding-top: var(--s-lg); border-top: 1px solid var(--grid-line); }
.step-number { font-family: var(--font-mono); font-size: var(--t-xs); color: var(--text-muted); display: block; margin-bottom: var(--s-sm); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    :root {
        --s-3xl: 4rem;
        --s-4xl: 5rem;
        --s-5xl: 6rem;
    }
    .master-grid { grid-template-columns: 1fr; border-left: none; margin-top: 72px; }
    .master-grid > * { grid-column: 1 / -1 !important; }
    .panel { padding: var(--s-xl) var(--s-md); border-right: none; }
    .header-strip { 
        padding: 0 var(--s-md); 
        overflow: visible !important;
        backdrop-filter: none !important;
        background: #0A0A0A !important;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 99999 !important;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .hero-left { grid-column: 1 / -1; min-height: 60vh; padding-top: var(--s-4xl); }
    .hero-right { grid-column: 1 / -1; min-height: 300px; border-top: 1px solid var(--grid-line); }
    
    .thesis-panel { grid-template-columns: 1fr; padding: var(--s-3xl) var(--s-md); gap: var(--s-xl); }
    .thesis-panel > div { grid-column: 1 / -1 !important; }

    .doctrine-title { grid-column: 1 / -1; border-right: none; }
    .doctrine-content { grid-column: 1 / -1; padding: var(--s-xl) var(--s-md); }

    .metric-box { grid-column: 1 / -1; min-height: auto; padding: var(--s-xl) var(--s-md); }

    .protocol-section { grid-template-columns: 1fr; padding: var(--s-3xl) var(--s-md); gap: var(--s-xl); }
    .protocol-steps { grid-template-columns: 1fr; gap: var(--s-lg); }

    .hidden-mobile { display: none; }
    .mobile-only { display: block; }
    
    .nav-links {
        position: fixed;
        top: 72px; 
        left: 0; 
        width: 100%; 
        height: calc(100vh - 72px);
        background: #0A0A0A;
        flex-direction: column;
        padding: var(--s-3xl) var(--s-xl);
        gap: var(--s-lg);
        transform: translateX(100%);
        transition: transform 0.6s var(--ease-lux), visibility 0.6s;
        z-index: 4000;
        border-top: 1px solid var(--grid-line);
        display: flex;
        visibility: hidden;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.active { 
        transform: translateX(0); 
        visibility: visible;
    }
    .nav-link { 
        font-size: 1.25rem; 
        padding: var(--s-lg) 0; 
        border-bottom: 1px solid rgba(255,255,255,0.03); 
        width: 100%; 
        color: #FFFFFF;
        letter-spacing: 0.15em;
        font-weight: 500;
    }
    
    .menu-toggle { 
        display: flex !important; 
        z-index: 5000;
    }
    .menu-toggle span { 
        height: 2.5px; 
        background: #FFFFFF;
    }

    .footer { grid-template-columns: 1fr; gap: var(--s-2xl); text-align: left !important; }
    .footer > div:last-child { text-align: left !important; justify-content: flex-start !important; }
    .footer .justify-end { justify-content: flex-start !important; }
}

@media (max-width: 768px) {
    :root {
        --s-xl: 2rem;
        --s-2xl: 2.5rem;
    }
    .text-hero { font-size: 3.5rem; }
    .text-section { font-size: 2.5rem; }
}
