/* ==========================================================================
   LUCAS LOPES | UNDERGROUND DESIGN SYSTEM
   Editorial High-Fashion Dark Style (Definitive Mobile Shielded Edition)
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Custom Properties / CSS Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg-dark: #050507;
  --bg-surface: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #181824;
  
  --accent-red: #FF2A40;
  --accent-red-hover: #E01E35;
  --accent-red-glow: rgba(255, 42, 64, 0.55);
  --accent-red-dim: rgba(255, 42, 64, 0.12);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-red: rgba(255, 42, 64, 0.4);
  --border-glow: rgba(255, 42, 64, 0.7);
  
  --text-primary: #F4F4F7;
  --text-secondary: #9A9AB0;
  --text-muted: #626278;
  
  --font-display: 'Syne', sans-serif;
  --font-gothic: 'Cinzel Decorative', serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   02. Reset & Accessibility Basics
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@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;
  }
}

html, body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

.text-nowrap {
  white-space: nowrap !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.canvas-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.section-padding {
  padding: 8rem 2rem;
  position: relative;
  z-index: 10;
}

.bg-surface {
  background-color: var(--bg-surface);
}

.section-container {
  max-width: 1350px;
  margin: 0 auto;
}

.section-header {
  text-align: center !important;
  max-width: 750px;
  margin: 0 auto 4rem;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.eyebrow-red {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-red);
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
  text-align: center !important;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.title-block {
  display: block !important;
  text-align: center !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center !important;
}

/* --------------------------------------------------------------------------
   03. Preloader
   -------------------------------------------------------------------------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-content {
  text-align: center;
  max-width: 320px;
  width: 90%;
}

.preloader-mark {
  margin: 0 auto 1.5rem;
  animation: pulse-glow 2s infinite ease-in-out;
}

.preloader-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 4px;
}

.preloader-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--accent-red);
  margin-top: 0.25rem;
}

.preloader-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1rem;
  border-radius: 2px;
  overflow: hidden;
}

.preloader-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-red);
  box-shadow: 0 0 12px var(--accent-red);
  transition: width 0.1s linear;
}

.preloader-pct {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   04. Navigation Bar Header
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 3rem;
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-red);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-red);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 42, 64, 0.08);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-pill);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-red);
  animation: pulse-dot 1.8s infinite ease-in-out;
}

.status-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-primary);
  letter-spacing: 1.5px;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.btn-nav:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  box-shadow: 0 0 15px rgba(255, 42, 64, 0.25);
}

/* --------------------------------------------------------------------------
   05. MONUMENTAL EDITORIAL HERO
   -------------------------------------------------------------------------- */
.hero-editorial-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 9.5rem 2rem 3.5rem;
  z-index: 10;
  overflow: hidden;
  background: radial-gradient(ellipse at center 40%, rgba(255, 42, 64, 0.18) 0%, rgba(5, 5, 7, 0.98) 70%);
}

.hero-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 3px;
}

.hero-editorial-stage {
  position: relative;
  max-width: 1100px;
  width: 92%;
  margin: 0.5rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 58vh;
}

.hero-giant-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.hero-word-nowrap {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(2rem, 5.2vw, 5.2rem);
  letter-spacing: 1px;
}

.hero-word-block {
  display: block;
  white-space: nowrap;
  font-size: clamp(1.8rem, 4.6vw, 4.5rem);
  letter-spacing: 0.5px;
}

.hero-title-bg {
  color: rgba(244, 244, 247, 0.12);
  user-select: none;
  z-index: 1;
}

.hero-title-fg {
  color: var(--accent-red);
  text-shadow: 0 0 35px rgba(255, 42, 64, 0.65);
  z-index: 3;
}

.hero-portrait-stage {
  position: relative;
  z-index: 2;
  margin-top: -2.5vw;
  margin-bottom: -1.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-portrait-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 42, 64, 0.5) 0%, rgba(255, 42, 64, 0.18) 40%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.hero-portrait-main {
  position: relative;
  z-index: 2;
  height: clamp(300px, 48vh, 500px);
  width: auto;
  object-fit: contain;
  filter: contrast(1.2) brightness(0.96) drop-shadow(0 0 45px rgba(255, 42, 64, 0.45));
  mask-image: radial-gradient(circle at 50% 45%, #000 20%, rgba(0,0,0,0.85) 45%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 20%, rgba(0,0,0,0.85) 45%, transparent 68%);
  mix-blend-mode: lighten;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-portrait-main:hover {
  transform: scale(1.025);
}

.hero-meta-tag {
  position: absolute;
  z-index: 4;
  font-family: var(--font-mono);
}

.tag-left {
  top: 25%;
  left: 0%;
  text-align: left;
}

.tag-right {
  bottom: 25%;
  right: 0%;
  text-align: right;
}

.tag-label {
  display: block;
  font-size: 0.7rem;
  color: var(--accent-red);
  letter-spacing: 3px;
  margin-bottom: 0.2rem;
}

.tag-val {
  font-size: 0.8rem;
  color: var(--text-primary);
  letter-spacing: 1.5px;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}

.hero-stamp-wrapper {
  position: absolute;
  top: 0%;
  right: 2%;
  z-index: 4;
  pointer-events: none;
}

.hero-foreground-title-wrap {
  text-align: center;
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 1.1vw, 0.95rem);
  color: var(--text-secondary);
  letter-spacing: 3px;
  margin-top: 1rem;
}

.hero-editorial-actionbar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  width: 100%;
  margin: 1.5rem auto 0;
  flex-wrap: wrap;
}

.btn-editorial-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 2.25rem;
  background: var(--accent-red);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 35px var(--accent-red-glow);
  transition: var(--transition-normal);
}

.btn-editorial-primary:hover {
  background: var(--accent-red-hover);
  box-shadow: 0 0 50px rgba(255, 42, 64, 0.85);
  transform: translateY(-3px);
}

.btn-editorial-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 2.25rem;
  background: rgba(17, 17, 24, 0.8);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: var(--radius-pill);
  transition: var(--transition-normal);
}

.btn-editorial-secondary:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  transform: translateY(-3px);
}

.arrow-icon {
  font-size: 1.1rem;
  color: var(--accent-red);
}

/* --------------------------------------------------------------------------
   06. Ultra-Compact High-Fashion Editorial Discipline Spec List (Zero Text Wall)
   -------------------------------------------------------------------------- */
.compact-discipline-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
  margin-top: 1rem;
}

.discipline-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-normal);
  position: relative;
}

.discipline-row-item:hover {
  background: rgba(255, 42, 64, 0.04);
  border-bottom-color: var(--border-red);
  padding-left: 1.75rem;
}

.discipline-left {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  max-width: 850px;
}

.discipline-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--accent-red);
  line-height: 1.2;
  opacity: 0.9;
}

.discipline-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.discipline-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.discipline-row-item:hover .discipline-name {
  color: var(--accent-red);
  text-shadow: 0 0 15px rgba(255, 42, 64, 0.4);
}

.discipline-micro {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.discipline-right {
  display: flex;
  align-items: center;
}

.discipline-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.discipline-row-item:hover .discipline-chip {
  color: var(--accent-red);
}

/* --------------------------------------------------------------------------
   07. Featured Artworks Gallery
   -------------------------------------------------------------------------- */
.artworks-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.art-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  height: 350px;
  transition: var(--transition-normal);
}

.art-card-large {
  grid-column: span 2;
}

.art-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.art-card:hover .art-img {
  transform: scale(1.05);
}

.art-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 7, 0.95) 0%, rgba(5, 5, 7, 0.2) 60%, transparent 100%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.art-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-red);
  letter-spacing: 2px;
  margin-bottom: 0.4rem;
}

.art-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.gallery-cta-row {
  text-align: center;
}

.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.25rem;
  background: rgba(17, 17, 24, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.btn-secondary-dark:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

/* --------------------------------------------------------------------------
   08. Work Process (Editorial Track)
   -------------------------------------------------------------------------- */
.editorial-process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 3rem;
}

.process-track-item {
  position: relative;
  padding-right: 1rem;
}

.process-track-num {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 1rem;
  display: block;
}

.process-track-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.process-track-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   09. MONUMENTAL HIGH-FASHION EDITORIAL FINAL CTA (A CHAMADA - HERO STYLE)
   -------------------------------------------------------------------------- */
.final-editorial-cta-section {
  padding: 8rem 2rem 10rem;
  position: relative;
  z-index: 10;
  background: radial-gradient(circle at center 60%, rgba(255, 42, 64, 0.14) 0%, rgba(5, 5, 7, 0.98) 75%);
  border-top: 1px solid var(--border-subtle);
}

.final-cta-editorial-stage {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.final-meta-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-red);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.final-editorial-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  width: 100%;
}

.final-title-row {
  display: block;
  white-space: nowrap;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.text-red {
  color: var(--accent-red);
}

.text-glow-red {
  text-shadow: 0 0 35px rgba(255, 42, 64, 0.65);
}

.final-editorial-subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

.final-editorial-actionbar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-dark);
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--accent-red);
}

/* --------------------------------------------------------------------------
   11. Keyframes & Responsiveness
   -------------------------------------------------------------------------- */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255, 42, 64, 0.6)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 18px rgba(255, 42, 64, 0.9)); }
}

@media (max-width: 1024px) {
  .hero-meta-tag {
    display: none;
  }
  .hero-portrait-main {
    height: 44vh;
  }
  .artworks-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .art-card-large {
    grid-column: span 2;
  }
  .editorial-process-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --------------------------------------------------------------------------
   12. ABSOLUTE DEFINITIVE MOBILE SHIELDING (PERFECT CENTERING & ZERO OVERFLOW)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Strict Universal Mobile Padding & Overflow Lock */
  html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .section-container, .hero-editorial-section, .navbar, .final-editorial-cta-section, .footer-container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    box-sizing: border-box !important;
  }

  .hide-mobile {
    display: none !important;
  }

  /* Compact Section Paddings */
  .section-padding {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .section-title {
    font-size: clamp(1.25rem, 5.8vw, 1.5rem) !important;
    letter-spacing: 0px !important;
    line-height: 1.15 !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  .title-block {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .section-desc {
    font-size: 0.88rem !important;
    text-align: center !important;
  }

  /* Navbar Mobile Compact */
  .navbar {
    padding-top: 0.85rem !important;
    padding-bottom: 0.85rem !important;
  }

  .brand-text {
    font-size: 1.05rem !important;
  }

  .brand-tag {
    display: none !important;
  }

  .btn-nav {
    padding: 0.45rem 0.85rem !important;
    font-size: 0.68rem !important;
    white-space: nowrap !important;
  }

  /* Hero Section Mobile */
  .hero-editorial-section {
    padding-top: 6.5rem !important;
    padding-bottom: 2.25rem !important;
    min-height: auto !important;
  }

  .hero-editorial-stage {
    min-height: auto !important;
    margin: 0.25rem auto !important;
    width: 100% !important;
  }

  .hero-meta-top {
    font-size: 0.65rem !important;
    letter-spacing: 1px !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .hero-word-nowrap {
    font-size: 1.95rem !important;
    letter-spacing: 0.5px !important;
  }

  .hero-word-block {
    font-size: 1.65rem !important;
    letter-spacing: 0.5px !important;
  }

  .hero-portrait-stage {
    margin-top: -1.2rem !important;
    margin-bottom: -0.8rem !important;
  }

  .hero-portrait-main {
    height: 260px !important;
  }

  .hero-tagline {
    font-size: 0.68rem !important;
    letter-spacing: 1px !important;
    margin-top: 0.5rem !important;
  }

  .hero-editorial-actionbar {
    gap: 0.75rem !important;
    margin-top: 1.25rem !important;
  }

  .btn-editorial-primary, .btn-editorial-secondary {
    padding: 0.85rem 1.25rem !important;
    font-size: 0.75rem !important;
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* 2-Column Responsive Compact Grid for Obras/Artworks */
  .artworks-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    margin-bottom: 1.5rem !important;
  }

  .art-card, .art-card-large {
    grid-column: span 1 !important;
    height: 180px !important;
    border-radius: var(--radius-sm) !important;
  }

  .art-overlay {
    padding: 0.85rem !important;
  }

  .art-badge {
    font-size: 0.58rem !important;
    margin-bottom: 0.2rem !important;
  }

  .art-title {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  .btn-secondary-dark {
    width: 100% !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    padding: 0.85rem 1rem !important;
    text-align: center !important;
  }

  /* Compact Editorial Discipline List Mobile (Zero Text Wall) */
  .compact-discipline-list {
    margin-top: 0.5rem !important;
  }

  .discipline-row-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1.25rem 0.5rem !important;
    gap: 0.5rem !important;
  }

  .discipline-row-item:hover {
    padding-left: 0.5rem !important;
  }

  .discipline-left {
    gap: 0.85rem !important;
    width: 100% !important;
  }

  .discipline-num {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
  }

  .discipline-name {
    font-size: 1.02rem !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }

  .discipline-micro {
    font-size: 0.8rem !important;
    line-height: 1.38 !important;
    color: var(--text-secondary) !important;
  }

  .discipline-right {
    margin-top: 0.2rem !important;
    padding-left: 1.95rem !important;
  }

  .discipline-chip {
    font-size: 0.65rem !important;
  }

  /* Process Track Mobile (1 Column Editorial Timeline) */
  .editorial-process-track {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
    padding-top: 1.5rem !important;
  }

  .process-track-item {
    padding-right: 0 !important;
  }

  .process-track-num {
    font-size: 1rem !important;
    margin-bottom: 0.3rem !important;
  }

  .process-track-title {
    font-size: 1rem !important;
    margin-bottom: 0.4rem !important;
    word-break: break-word !important;
  }

  .process-track-desc {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
  }

  /* Monumental High-Fashion Editorial Final CTA Mobile */
  .final-editorial-cta-section {
    padding-top: 4rem !important;
    padding-bottom: 4.5rem !important;
  }

  .final-meta-tag {
    font-size: 0.68rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 1rem !important;
  }

  .final-editorial-title {
    font-size: clamp(1.2rem, 5.8vw, 1.6rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: 0px !important;
  }

  .final-title-row {
    display: block !important;
    white-space: nowrap !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .final-editorial-subtitle {
    font-size: 0.85rem !important;
    margin-bottom: 1.75rem !important;
  }

  .final-editorial-actionbar {
    gap: 0.75rem !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  /* Footer Mobile */
  .footer {
    padding: 2rem 1rem !important;
  }

  .footer-container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
  }

  .footer-left {
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
}

/* Extra Small Mobile Devices (320px - 400px) Shielding */
@media (max-width: 400px) {
  .hero-word-nowrap {
    font-size: 1.75rem !important;
  }
  .hero-word-block {
    font-size: 1.45rem !important;
  }
  .hero-portrait-main {
    height: 230px !important;
  }
  .final-editorial-title {
    font-size: 1.2rem !important;
  }
}
