*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cream: #F5F0E8;
    --ink: #1A1614;
    --rust: #C84B2F;
    --gold: #D4A843;
    --midnight: #0D0F1A;
    --slate: #2B2F3A;
    --ice: #C8D8E4;
    --projection: #F2E055;
  }

  html { scroll-behavior: auto; }

  body {
    background: var(--ink);
    color: var(--cream);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
    cursor: none;
  }

  /* Custom cursor */
  .cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--rust);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform;
    mix-blend-mode: difference;
  }
  .cursor.expand {
    width: 40px;
    height: 40px;
    background: var(--gold);
  }

  /* ─── SECTIONS ─── */
  section {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  /* ─── HERO (3D Parallax Canvas Setup) ─── */
  #hero {
    background: var(--cream);
    height: 100vh;
    width: 100vw;
    perspective: 1600px;
    transform-style: preserve-3d;
    padding: 0;
  }

  .hero-bg-lines {
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(26,22,20,0.05) 80px),
      repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(26,22,20,0.05) 80px);
    pointer-events: none;
    z-index: 1;
  }

  .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(200, 75, 47, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
  }

  .hero-centered-text {
    position: absolute;
    text-align: center;
    z-index: 100;
    max-width: min(800px, 90vw);
    transform: translateZ(250px);
    pointer-events: none;
  }

  .hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: clamp(10px, 1.2vw, 15px);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 1.5rem;
    opacity: 0;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 14vw, 210px);
    line-height: 0.88;
    color: var(--ink);
    letter-spacing: -0.01em;
    opacity: 0;
  }

  .hero-title .line {
    display: block;
    overflow: hidden;
  }

  .hero-title .word {
    display: inline-block;
    transform: translateY(110%);
  }

  .hero-sub {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: clamp(16px, 2.2vw, 28px);
    color: var(--ink);
    margin-top: 2rem;
    line-height: 1.4;
    opacity: 0;
  }

  /* Immersive Card Canvas Grid */
  .hero-images-container {
    position: absolute;
    inset: 0;
    margin: auto;
    width: min(1100px, 85vw);
    height: min(650px, 75vh);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.5rem;
    transform-style: preserve-3d;
    z-index: 5;
  }

  .hero-floating-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    will-change: transform;
  }

  .hero-floating-card img {
    width: min(170px, 100%);
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(26, 22, 20, 0.15);
    filter: brightness(3) contrast(1.05) grayscale(0.2) blur(3px);
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
  }

  .hero-floating-card:hover img {
    transform: scale(1.04);
    filter: brightness(1) contrast(1.1) grayscale(0);
    box-shadow: 0 25px 50px rgba(26, 22, 20, 0.3);
  }

  /* Matrix Layout Positions */
  .hero-floating-card:nth-child(1) { grid-area: 1 / 1; transform: translate3d(-10%, -10%, 40px) rotateY(20deg) rotateX(-5deg); }
  .hero-floating-card:nth-child(2) { grid-area: 1 / 2; transform: translate3d(0, -15%, 60px) rotateX(-10deg); }
  .hero-floating-card:nth-child(3) { grid-area: 1 / 3; transform: translate3d(10%, -10%, 40px) rotateY(-20deg) rotateX(-5deg); }
  .hero-floating-card:nth-child(4) { grid-area: 2 / 1; transform: translate3d(-15%, 0, 60px) rotateY(25deg); }
  .hero-floating-card:nth-child(5) { grid-area: 2 / 3; transform: translate3d(15%, 0, 60px) rotateY(-25deg); }
  .hero-floating-card:nth-child(6) { grid-area: 3 / 1; transform: translate3d(-10%, 10%, 40px) rotateY(20deg) rotateX(5deg); }
  .hero-floating-card:nth-child(7) { grid-area: 3 / 2; transform: translate3d(0, 15%, 60px) rotateX(10deg); }
  .hero-floating-card:nth-child(8) { grid-area: 3 / 3; transform: translate3d(10%, 10%, 40px) rotateY(-20deg) rotateX(5deg); }

  .hero-scroll-hint { position: absolute; bottom: 3rem; right: 4rem; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink); opacity: 0.3; writing-mode: vertical-rl; z-index: 10; }
  .hero-year { position: absolute; top: 3rem; right: 4rem; font-size: 11px; letter-spacing: 0.25em; color: var(--ink); opacity: 0.3; z-index: 10; }

  /* ─── INTRO ─── */
  #intro { background: var(--ink); background-image: url(../images/section2BG.png); background-size: cover; background-position: center; background-repeat: no-repeat;justify-content: center; align-items: center; padding: 8vw; position: relative;}
  .intro-section:before{content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 100%; background: rgb(26 22 20); opacity: 0.5;}
  .intro-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: 100%; 
    background: rgb(26, 22, 20); 
    /* Starts fully covering the section as a massive circle radius */
    clip-path: circle(100% at 50% 50%); 
    z-index: 2; 
    will-change: clip-path;
  }
  .intro-inner { text-align: center; max-width: 1000px; }
  .intro-rule { width: 1px; height: 80px; background: var(--rust); margin: 0 auto 3rem; opacity: 0; transform: scaleY(0); transform-origin: top; }
  .intro-text { 
    font-family: 'DM Serif Display', serif; 
    font-size: clamp(24px, 4vw, 54px); 
    line-height: 1.3; 
    letter-spacing: -0.01em; 

    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(70px, 14vw, 110px);
    line-height: 0.88;
    color: var(--ink);
    letter-spacing: -0.01em;

    color: var(--cream); 
    opacity: 0; 
    transform: translateY(30px); 
  }
  .intro-projects { display: flex; justify-content: center; gap: clamp(2rem, 5vw, 6rem); margin-top: 4rem; opacity: 0; }
  .intro-proj-item { font-family: 'Space Mono', monospace; font-size: clamp(9px, 0.9vw, 12px); letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream); opacity: 0.4; transition: opacity 0.3s, color 0.3s; cursor: none; transform: translateX(30px); }
  .intro-proj-item:hover { opacity: 1; color: var(--gold); }





  #intro { 
  background: var(--ink); 
  background-image: url(../images/section2BG.png); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  justify-content: center; 
  align-items: center; 
  padding: 8vw; 
  position: relative;
  z-index: 1;
}

.intro-vector-curtain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

/* Force the SVG to stretching/scaling fields fluidly */
.intro-vector-curtain svg {
  width: 100%;
  height: 100%;
  object-fit: fill; 
}

.intro-vector-curtain path {
  will-change: transform;
}

.intro-inner { 
  text-align: center; 
  max-width: 1000px; 
  position: relative;
  z-index: 3; 
}

  /* ─── SHADOW TRUCKS ─── */
  #shadow-trucks { background: var(--midnight); flex-direction: column; justify-content: flex-end; padding: 6vw 8vw; align-items: flex-start; }
  .st-mountains { position: absolute; bottom: 0; left: 0; right: 0; height: 70%; opacity: 0.85; will-change: transform; }
  .st-stars { position: absolute; inset: 0; will-change: transform; background: radial-gradient(1px 1px at 15% 20%, rgba(200,216,228,0.7) 0%, transparent 100%), radial-gradient(1px 1px at 32% 8%, rgba(200,216,228,0.5) 0%, transparent 100%), radial-gradient(1.5px 1.5px at 58% 15%, rgba(200,216,228,0.9) 0%, transparent 100%), radial-gradient(1px 1px at 72% 6%, rgba(200,216,228,0.4) 0%, transparent 100%), radial-gradient(1px 1px at 88% 25%, rgba(200,216,228,0.6) 0%, transparent 100%), radial-gradient(1px 1px at 45% 30%, rgba(200,216,228,0.3) 0%, transparent 100%), radial-gradient(1px 1px at 22% 35%, rgba(200,216,228,0.5) 0%, transparent 100%), radial-gradient(2px 2px at 65% 12%, rgba(200,216,228,0.8) 0%, transparent 100%); }
  .st-snow-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 120% 60% at 50% 0%, rgba(200,216,228,0.06) 0%, transparent 70%); pointer-events: none; }
  .st-light { position: absolute; top: 18%; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(ellipse, rgba(200,216,228,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
  .st-content { position: relative; z-index: 2; }
  .st-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--ice); margin-bottom: 1.5rem; opacity: 0; transform: translateY(20px); }
  .st-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 13vw, 180px); line-height: 0.88; color: var(--ice); letter-spacing: 0.02em; opacity: 0; transform: translateY(50px); text-shadow: 0 0 80px rgba(200,216,228,0.15), 0 0 20px rgba(200,216,228,0.08); }
  .st-desc { font-family: 'Space Mono', monospace; font-size: clamp(9px, 0.9vw, 12px); letter-spacing: 0.2em; color: var(--ice); opacity: 0; transform: translateY(25px); margin-top: 2.5rem; max-width: 360px; line-height: 1.9; border-left: 1px solid rgba(200,216,228,0.2); padding-left: 1.5rem; }

  /* ─── ROAD SHOW ─── */
  #road-show { background: #0E0C1C; flex-direction: column; align-items: flex-end; justify-content: center; padding: 6vw 8vw; padding-bottom: calc(6vw - 100px); overflow: hidden; }
  .rs-projection { position: absolute; top: -10%; left: -5%; width: 55%; height: 130%; background: conic-gradient(from 200deg at 15% 50%, transparent 0deg, rgba(242,224,85,0.07) 15deg, rgba(242,224,85,0.13) 25deg, rgba(242,224,85,0.04) 40deg, transparent 55deg); pointer-events: none; will-change: transform; }
  .rs-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(242,224,85,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(242,224,85,0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
  .rs-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(242,224,85,0.12) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.4; pointer-events: none; }
  .rs-orbit { position: absolute; left: 5%; top: 50%; transform: translateY(-50%); width: clamp(160px, 28vw, 380px); height: clamp(160px, 28vw, 380px); border-radius: 50%; border: 1px solid rgba(242,224,85,0.15); pointer-events: none; opacity: 0; }
  .rs-orbit::after { content: ''; position: absolute; top: 12%; left: 12%; right: 12%; bottom: 12%; border-radius: 50%; border: 1px solid rgba(242,224,85,0.1); }
  .rs-planet { position: absolute; top: 50%; left: 5%; width: clamp(80px, 14vw, 180px); height: clamp(80px, 14vw, 180px); border-radius: 50%; background: radial-gradient(ellipse at 35% 35%, rgba(242,224,85,0.3), rgba(200,175,60,0.12) 50%, rgba(14,12,28,0.9)); transform: translateY(-50%); border: 1px solid rgba(242,224,85,0.2); pointer-events: none; opacity: 0; box-shadow: 0 0 60px rgba(242,224,85,0.08), inset 0 0 40px rgba(0,0,0,0.5); }
  .rs-content { position: relative; z-index: 2; text-align: right; }
  .rs-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--projection); margin-bottom: 1.5rem; opacity: 0; transform: translateY(20px); }
  .rs-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 13vw, 180px); line-height: 0.88; color: var(--projection); letter-spacing: 0.02em; opacity: 0; transform: translateY(50px); text-shadow: 0 0 120px rgba(242,224,85,0.25); }
  .rs-tagline { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(14px, 1.8vw, 22px); color: var(--projection); margin-top: 2rem; opacity: 0; transform: translateY(20px); }

  /* ─── RADIO RECORD ─── */
  #radio-record { background: #F0EAD6; flex-direction: column; align-items: flex-start; justify-content: center; padding: 6vw 8vw; padding-top: calc(6vw + 100px); padding-bottom: calc(6vw + 100px); overflow: hidden; }
  .radio-record-svg-top{
    position: absolute;
    top: 0px;
    left: 0;
    overflow: visible;
    width: 100%;
    height: 150px;
    z-index: 9;
  }
  .radio-record-svg{
    position: absolute;
    bottom: 0px;
    left: 0;
    overflow: visible;
    width: 100%;
    height: 150px;
    z-index: 9;
  }
  .rr-wood { position: absolute; inset: 0; background: repeating-linear-gradient(92deg, rgba(139,90,43,0.04) 0px, rgba(139,90,43,0.02) 2px, transparent 3px, transparent 18px); pointer-events: none; }
  .rr-dial { position: absolute; right: 6vw; top: 50%; transform: translateY(-50%); width: clamp(120px, 22vw, 300px); height: clamp(120px, 22vw, 300px); border-radius: 50%; border: 2px solid rgba(139,90,43,0.2); opacity: 0; pointer-events: none; }
  .rr-dial::before { content: ''; position: absolute; top: 15%; left: 15%; right: 15%; bottom: 15%; border-radius: 50%; border: 1px solid rgba(139,90,43,0.15); background: radial-gradient(ellipse, rgba(139,90,43,0.08), transparent 70%); }
  .rr-dial::after { content: ''; position: absolute; top: 50%; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: rgba(139,90,43,0.4); transform: translate(-50%, -50%); }
  .rr-freq { position: absolute; bottom: 8rem; left: 8vw; right: 8vw; height: 50px; display: flex; align-items: center; gap: 8px; opacity: 0; pointer-events: none; }
  .rr-freq span { display: inline-block; width: 2px; background: rgba(139,90,43,0.25); border-radius: 1px; }
  .rr-content { position: relative; z-index: 2; }
  .rr-label { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: #8B5A2B; margin-bottom: 1.5rem; opacity: 0; transform: translateY(20px); }
  .rr-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 13vw, 180px); line-height: 0.88; color: #3D2B1A; letter-spacing: 0.02em; opacity: 0; transform: translateY(50px); }
  .rr-subtitle { font-family: 'DM Serif Display', serif; font-size: clamp(13px, 1.5vw, 18px); color: #8B5A2B; margin-top: 2rem; letter-spacing: 0.05em; line-height: 1.7; opacity: 0; transform: translateY(20px); }






  /* ─── SHADOW TRUCKS ADVANCED PRODUCTION STYLES ─── */
  .scene-st {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #0d0f1a; /* Base Midnight */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6vw 8vw;
    align-items: flex-start;
  }

  /* Vector Canvas Layout Layer */
  .st-vector-scenery {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  /* Canvas Particle system bounds for high-performance falling snow */
  #stSnowCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
  }

  .st-stars {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(1.5px 1.5px at 15% 20%, rgba(200,216,228,0.6) 100%, transparent),
                radial-gradient(1px 1px at 45% 12%, rgba(200,216,228,0.4) 100%, transparent),
                radial-gradient(2px 2px at 75% 35%, rgba(200,216,228,0.7) 100%, transparent),
                radial-gradient(1px 1px at 88% 18%, rgba(200,216,228,0.5) 100%, transparent);
  }

  /* Loop-ready overlay fog strips running smoothly across screen dimensions */
  .st-fog {
    position: absolute;
    top: 30%;
    left: -100%;
    width: 200%;
    height: 60%;
    z-index: 3;
    background: radial-gradient(ellipse 50% 30% at 50% 50%, rgba(200, 216, 228, 0.05) 0%, transparent 100%);
    filter: blur(40px);
    pointer-events: none;
  }

  .st-content {
    position: relative;
    z-index: 10; /* Ensures readable separation from backgrounds */
  }





  /* ─── SHADOW TRUCKS DYNAMIC CANVAS ALIGNMENT ─── */
  .scene-st {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #0D0F1A;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .st-master-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .st-animation-overlay-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  #stSnowCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
  }

  /* Moving Ambient Cloud Plates */
  .st-fog-layer {
    position: absolute;
    width: 150%;
    height: 50%;
    background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(200, 216, 228, 0.05) 0%, transparent 80%);
    filter: blur(40px);
    z-index: 3;
    will-change: transform;
  }
  .fog-plate-one { top: 35%; left: -100%; }
  .fog-plate-two { top: 50%; left: -50%; }

  /* Emissive Glowing Coordinate Nodes for Headlights */
  .st-headlight-glow {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 242, 255, 0.95) 0%, rgba(200, 216, 228, 0.3) 50%, transparent 70%);
    mix-blend-mode: screen;
    z-index: 4;
    filter: drop-shadow(0 0 12px rgba(200, 216, 228, 0.5));
    will-change: opacity;
  }
  .glow-truck-left { top: 66.8%; left: 79.7%; width: 30px; height: 30px; }
  .glow-truck-mid { top: 59.8%; left: 61.2%; width: 18px; height: 18px; }

  /* ─── DYNAMIC SVG POSITION CONTAINER ─── */
  .st-custom-gear-box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
  }

  /* Target and map the individual vector graphics separately */
  .st-custom-gear-box svg:nth-of-type(1) {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: clamp(250px, 35vw, 480px);
    height: auto;
    opacity: 0.85;
    /* Targets the native paths directly inside your first uploaded element structure */
  }

  .st-custom-gear-box svg:nth-of-type(2) {
    position: absolute;
    top: 32%;
    left: 4%;
    width: clamp(200px, 28vw, 380px);
    height: auto;
    opacity: 0.9;
  }


  

  /* ─── CONTACT ─── */
  #contact { background: var(--cream); flex-direction: column; justify-content: center; align-items: center; padding: 8vw; padding-top: calc(8vw - 100px); text-align: center; }
  .contact-rule-top { width: 1px; height: 60px; background: var(--rust); margin: 0 auto 4rem; opacity: 0; transform: scaleY(0); transform-origin: top; }
  .contact-eyebrow { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--rust); margin-bottom: 2rem; opacity: 0; transform: translateY(15px); }
  .contact-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 8vw, 110px); line-height: 0.88; color: var(--ink); letter-spacing: 0.02em; opacity: 0; transform: translateY(40px); }
  .contact-sub { font-family: 'DM Serif Display', serif; font-style: italic; font-size: clamp(15px, 1.8vw, 22px); color: var(--ink); margin-top: 1.5rem; opacity: 0; transform: translateY(15px); }
  .contact-email { display: inline-block; font-family: 'Space Mono', monospace; font-size: clamp(12px, 1.4vw, 17px); letter-spacing: 0.15em; color: var(--ink); text-decoration: none; margin-top: 3.5rem; padding-bottom: 4px; border-bottom: 1px solid var(--rust); opacity: 0; transform: translateY(15px); cursor: none; transition: color 0.3s; }
  .contact-email:hover { color: var(--rust); }
  .contact-footer { position: absolute; bottom: 2.5rem; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink); opacity: 0.2; }

  /* ─── SECTION NAV DOTS ─── */
  .nav-dots { position: fixed; right: 2rem; top: 50%; transform: translateY(-50%); z-index: 100; display: flex; flex-direction: column; gap: 10px; }
  .nav-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--cream); opacity: 0.25; cursor: none; transition: opacity 0.3s, transform 0.3s, background 0.3s; }
  .nav-dot.active { opacity: 1; transform: scale(1.6); background: var(--rust); }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 3px; }
  ::-webkit-scrollbar-track { background: var(--ink); }
  ::-webkit-scrollbar-thumb { background: var(--rust); }

  /* ─── MOBILE ─── */
  @media (max-width: 768px) {
    .nav-dots { display: none; }
    .cursor { display: none; }
    body { cursor: auto; }
    .hero-scroll-hint { display: none; }
    .rs-orbit, .rs-planet { left: -5%; }
    .rr-dial { right: -3vw; opacity: 0.3 !important; }
    .contact-email { font-size: 12px; }
    #shadow-trucks, #road-show, #radio-record { align-items: center; }
    .st-content, .rs-content, .rr-content { text-align: center; }
    .rs-content { text-align: center; }
    .st-desc { border-left: none; padding-left: 0; border-top: 1px solid rgba(200,216,228,0.2); padding-top: 1.5rem; }
    .hero-images-container { display: none; } /* Clear mobile viewport space */
  }