/* ============================================================
   OLEV SEPPER OÜ — MODERN SIDEBAR REDESIGN
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --sidebar-w: 300px;
  
  /* RAW NATURE WOOD PALETTE */
  --bg-primary: #EDE6D9;    /* Raw Timber Base */
  --bg-sidebar: rgba(240, 237, 230, 0.9); 
  --mat-oak: #7A634E;       
  --mat-oak-dark: #5A493A;
  --mat-concrete: #C5C5C5;  
  --mat-charcoal: #2D2926;  
  
  --accent: var(--mat-oak);
  --accent-dark: var(--mat-oak-dark);
  --text-main: #1D1B1A;     
  --text-muted: #4A4642;    
  --white: #ffffff;
  --border: rgba(45, 41, 38, 0.12); 
  
  --transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-flat: 0 2px 8px rgba(0,0,0,0.05); 
  --shadow-raised: 
    0 25px 60px -15px rgba(0,0,0,0.12), 
    0 15px 30px -10px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.4); /* High-end Lift */
  --mat-radius: 8px; /* Softer, more organic edges */
}

/* INTENSIFIED MATERIAL TEXTURES */
.mat-concrete-bg {
    background-image: 
        url('../img/concrete.png'),
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,0,0,0.05) 0%, transparent 50%);
    background-size: cover, 100% 100%, 100% 100%;
    background-blend-mode: multiply, overlay, multiply;
}

.mat-wood-grain {
    background: var(--bg-sidebar);
    background-image: 
        repeating-linear-gradient(135deg, rgba(42, 38, 36, 0.05) 0px, rgba(42, 38, 36, 0.05) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(90deg, transparent 0px, transparent 40px, rgba(42, 38, 36, 0.03) 41px, transparent 42px),
        linear-gradient(to right, rgba(0,0,0,0.02), transparent, rgba(0,0,0,0.02));
    position: relative;
    border: 1px solid rgba(141, 119, 94, 0.1);
}

.intense-wood-effect {
    background-image: 
        repeating-linear-gradient(135deg, rgba(0,0,0,0.08) 0px, rgba(0,0,0,0.08) 1px, transparent 1px, transparent 12px),
        repeating-linear-gradient(90deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px, transparent 1px, transparent 50px),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 20px),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 80%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-primary);
  position: relative;
  /* RAW MASSIVE WOOD SLAB BACKGROUND */
  background-image: 
    url('../img/raw_nature_wood.png'),
    linear-gradient(to bottom, rgba(237, 230, 217, 0.4), rgba(237, 230, 217, 0.2)),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(139, 115, 91, 0.05) 100%);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-blend-mode: multiply, normal, multiply;
  color: var(--text-main);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow-x: hidden;
}

@media (max-width: 1024px) {
    body { 
        background-attachment: scroll; 
        background-image: none; /* Hide primary background on body to move it to pseudo-element */
    }
    
    body::after {
        content: '';
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background-image: 
            url('../img/raw_nature_wood.png'),
            linear-gradient(to bottom, rgba(237, 230, 217, 0.4), rgba(237, 230, 217, 0.2)),
            radial-gradient(circle at 50% 50%, transparent 0%, rgba(139, 115, 91, 0.05) 100%);
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* No 'fixed' on mobile! */
        background-blend-mode: multiply, normal, multiply;
        z-index: -1;
        pointer-events: none;
    }
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    /* GRAPHITE-ON-WOOD GRID */
    background-image: 
        linear-gradient(to right, rgba(45, 41, 38, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(45, 41, 38, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 10001; /* Above backgound */
    /* Softer spotlight mask */
    mask-image: radial-gradient(circle 500px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle 500px at var(--mouse-x, 50%) var(--mouse-y, 50%), black 0%, transparent 100%);
}

@media (max-width: 1024px) {
    body::before {
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }
}

/* GLOBAL LINK OVERRIDE */
a { 
  text-decoration: none !important; 
  color: inherit; 
  transition: all var(--transition);
}

/* ---- LAYOUT STRUCTURE ---- */
.site-wrapper {
  display: flex;
  min-height: 100vh;
  padding-bottom: 0; /* Footer is now logically inside main-content */
}

/* ---- SIDEBAR ---- */
.sidebar {
  width: var(--sidebar-w);
  background: var(--bg-sidebar);
  /* INTENSE BRUSHED WOOD */
  background-image: 
    repeating-linear-gradient(135deg, rgba(0,0,0,0.12) 0px, rgba(0,0,0,0.12) 1px, transparent 1px, transparent 12px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 30px);
  border-right: 3px solid var(--border); /* Bolder sidebar edge */
  position: fixed;
  top: 0; bottom: 0; left: 0;
  display: flex;
  flex-direction: column;
  padding: 50px 40px;
  z-index: 1000;
  transition: transform var(--transition);
}

.sidebar-logo { text-decoration: none !important; margin-bottom: 60px; display: block; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--mat-charcoal);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-text small { font-size: 0.75rem; letter-spacing: 4px; color: var(--accent); margin-top: 4px; }

.sidebar-nav { flex: 1; }
.sidebar-menu { list-style: none; }
.sidebar-menu li { margin-bottom: 8px; }
.sidebar-menu a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: var(--mat-radius);
  text-decoration: none !important;
  border: 1px solid transparent;
}
.sidebar-menu i { width: 18px; font-size: 0.9rem; color: var(--accent); opacity: 0.6; }

.sidebar-menu a:hover, 
.sidebar-menu a.active {
  background: var(--white);
  color: var(--mat-charcoal);
  border-color: var(--border);
  box-shadow: var(--shadow-flat);
}
.sidebar-menu a.active i { opacity: 1; color: var(--accent-dark); }

.sidebar-footer { padding-top: 40px; border-top: 2px solid var(--border); }

.sidebar-email {
    font-size: 0.75rem;
    margin-top: 5px;
    opacity: 0.6;
}

/* ---- MAIN CONTENT AREA ---- */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-w);
  padding: 100px; /* INCREASED PADDING */
  max-width: calc(100vw - var(--sidebar-w));
  background: transparent; /* REVEALS BODY PAPER TEXTURE */
  min-height: 100vh;
}

/* ---- MOBILE UI ---- */
.mobile-top-bar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  background: var(--white);
  padding: 0 25px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  z-index: 900;
}
.mobile-logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; }
.mobile-toggle { background: none; border: none; font-size: 1.4rem; color: var(--text-main); cursor: pointer; }

/* Hide redundant toggle on desktop */
.nav-toggle-sidebar { display: none; }

/* ---- HOME CONTENT RESTRUCTURE ---- */
.hero-minimal { margin-bottom: 80px; }
.hero-minimal h1 { 
    font-family: 'Playfair Display', serif; 
    font-size: clamp(2rem, 6vw, 4rem); /* Smaller H1 */
    margin-bottom: 25px; 
    line-height: 1.1; 
}
.hero-minimal p.lead { 
    font-size: 1.1rem; /* Smaller lead */
    color: var(--text-muted); 
    max-width: 600px; 
    margin-bottom: 40px; 
}

.company-motto {
    font-size: 0.85rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--mat-charcoal);
    font-weight: 800;
    opacity: 0.4; /* MUCH MORE VISIBLE */
    margin-bottom: 40px;
    display: block;
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
}

.overline {
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.process-brief {
    margin-bottom: 100px;
    text-align: center;
}

.process-brief p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.btn-wrap {
    display: flex;
    justify-content: center;
}

/* BUTTONS */
.btn-primary {
  background: var(--mat-charcoal);
  color: var(--white) !important;
  padding: 16px 36px;
  border-radius: var(--mat-radius);
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
  box-shadow: var(--shadow-raised);
}
.btn-primary:hover { 
    background: #000; 
    transform: translateY(-3px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* SERVICE BLOCKS */
.service-grid-minimal { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    margin: 80px 0;
}
.service-block-new {
    background: var(--white);
    padding: 50px;
    border-radius: var(--mat-radius);
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-block-new::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../img/concrete.png');
    background-size: cover;
    opacity: 0.08; /* MORE VISIBLE CONCRETE */
    pointer-events: none;
    mix-blend-mode: multiply;
}
.service-block-new:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-raised);
}
.service-block-new i { font-size: 1.8rem; color: var(--accent); margin-bottom: 20px; display: block; }
.service-block-new h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 12px; }
.service-block-new p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

.section-title-line {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 100px 0 50px;
}
.section-title-line h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; white-space: nowrap; }
.section-title-line .line { flex: 1; height: 1px; background: var(--border); }

.work-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.work-item {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--bg-sidebar);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-item img { width: 100%; height: 100%; object-fit: cover; }
.work-item:hover img { transform: scale(1.05); }

.work-info-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: var(--white);
}

/* ---- ABOUT PAGE REFINEMENTS ---- */
.about-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 80px 60px;
    border-radius: var(--mat-radius);
    border: 3px solid var(--border); /* DOUBLED BORDER */
    box-shadow: var(--shadow-raised);
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    top:0; left:0; bottom:0; right:0;
    background-image: url('../img/concrete.png');
    background-size: cover;
    opacity: 0.05; /* MORE VISIBLE */
    pointer-events: none;
}

.about-identity {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.about-photo {
    flex: 0 0 160px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-sidebar);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.about-photo i {
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.4;
}

.about-name {
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.about-body {
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 60px;
}

.about-contact-card {
    background: var(--bg-sidebar);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid var(--border);
}

.contact-email {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 15px;
}

.about-estimate-bar {
    margin-top: 80px;
    background: var(--mat-charcoal);
    border-radius: var(--mat-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
    color: var(--white);
    box-shadow: var(--shadow-raised);
}

.about-estimate-bar .price-side span {
    color: rgba(255,255,255,0.7);
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-estimate-bar .price-action {
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.about-estimate-bar .btn-primary {
    background: var(--white);
    color: var(--mat-charcoal) !important;
    box-shadow: none;
}

.about-estimate-bar .btn-primary:hover {
    background: #eee;
}

/* ---- RESPONSIVENESS ---- */
@media (max-width: 1200px) {
  .main-content { padding: 60px 40px; }
}

@media (max-width: 992px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; max-width: 100%; padding-top: 100px; }
  .mobile-top-bar { display: flex; }
  .work-grid-modern { grid-template-columns: 1fr; }
  .service-grid-minimal { grid-template-columns: 1fr; }
  .about-card { padding: 40px 25px; }
  .about-identity { flex-direction: column; text-align: center; gap: 20px; }
  .about-estimate-bar { flex-direction: column; gap: 20px; text-align: center; }
}

/* ---- MODERN ASYMMETRIC LAYOUTS ---- */

/* HERO OVERLAP GRID */
.modern-hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 0;
    margin-bottom: 8vw; /* Reduced from 15vw */
    position: relative;
    padding-top: 50px;
}

.hero-image-block {
    grid-column: 5 / -1;
    grid-row: 1;
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: var(--mat-radius);
    box-shadow: var(--shadow-raised);
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) contrast(1.1);
}

.image-overlay-solid {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent 40%);
    pointer-events: none;
}

.hero-content-overlap {
    grid-column: 1 / 8;
    grid-row: 1;
    z-index: 10;
    align-self: center;
    padding: 100px 60px;
    background: rgba(255, 255, 255, 0.85); /* Slightly more transparent */
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(42, 38, 36, 0.15); /* Thinner, more precise border */
    box-shadow: 
        0 30px 60px -12px rgba(0,0,0,0.15),
        0 18px 36px -18px rgba(0,0,0,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.4); /* Inner rim highlight */
    margin-top: 100px;
    position: relative;
    border-radius: 2px;
}

.hero-content-overlap::after {
    content: '';
    position: absolute;
    top: -10px; left: -10px;
    width: 40px; height: 40px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
    pointer-events: none;
}

.split-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7.5vw, 5.5rem);
    line-height: 0.85;
    font-weight: 900;
    color: var(--mat-charcoal);
    margin: 30px 0;
    letter-spacing: -2px;
}

.split-title span {
    display: block;
    overflow: hidden;
}

.split-title .line-2 {
    font-size: 0.45em;
    color: var(--mat-oak);
    margin-top: 5px;
    letter-spacing: 2px;
    font-style: italic;
    font-weight: 400;
}

.hero-desc {
    max-width: 420px;
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-coord {
    font-family: monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.4;
    text-transform: uppercase;
}

/* STAGGERED SECTIONS */
.staggered-section {
    position: relative;
    padding: 10vw 0; /* Increased for more air */
}

.vertical-label {
    position: absolute;
    left: -80px;
    top: 15vw;
    transform: rotate(-90deg);
    transform-origin: center;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 10px;
    opacity: 0.3;
    white-space: nowrap;
    text-transform: uppercase;
}

.vertical-label.white { color: var(--white); opacity: 0.6; }

.service-staggered-grid,
.process-staggered-grid {
    display: flex;
    flex-direction: column;
    gap: 6vw;
}

.service-slab,
.process-slab {
    display: flex;
    width: 100%;
    min-height: 400px;
    position: relative;
    align-items: center;
}

.slab-step-num {
    font-family: monospace;
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    opacity: 0.4;
    margin-bottom: 30px;
    display: block;
}

.slab-content {
    width: 50%;
    padding: 80px;
    background: var(--white);
    border: 3px solid var(--border);
    box-shadow: var(--shadow-raised);
    z-index: 5;
    position: relative;
}

.slab-texture {
    width: 60%;
    height: 100%;
    position: absolute;
    top: 5vw;
    z-index: 1;
    border-radius: var(--mat-radius);
    box-shadow: var(--shadow-raised);
}

.slab-left .slab-texture { right: 0; }
.slab-right { flex-direction: row-reverse; }
.slab-right .slab-texture { left: 0; }

.slab-tag {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 20px;
}

.slab-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.slab-left .slab-content { border-left: 5px solid var(--accent); }
.slab-right .slab-content { border-right: 5px solid var(--accent); }

/* ---- ASYMMETRIC CTA: MATERIAL INTERSECTION (MODERNIZED) ---- */
.cta-intersection-wrap {
    padding: 150px 0;
    margin-top: 5vw;
    position: relative;
    overflow: hidden;
}

.cta-intersection-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
}

.cta-slab-concrete {
    position: absolute;
    left: 0;
    top: 50px;
    width: 65%;
    height: 85%;
    border-radius: var(--mat-radius);
    box-shadow: var(--shadow-raised);
    z-index: 1;
    border: 1px solid var(--border);
}

.cta-slab-wood {
    position: absolute;
    right: 50px;
    bottom: 0;
    width: 40%;
    height: 65%;
    border-radius: var(--mat-radius);
    box-shadow: var(--shadow-raised);
    z-index: 3;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Reality Transition Image */
.cta-image-reality {
    position: absolute;
    right: 15%;
    top: 10%;
    width: 32%;
    height: 60%;
    z-index: 4; /* Above glass, slightly overlaps wood */
    border-radius: var(--mat-radius);
    overflow: hidden;
    box-shadow: var(--shadow-raised);
    border: 1px solid var(--border);
}

.cta-image-reality img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(30%) contrast(1.1);
}

.cta-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(26, 24, 23, 0.4), transparent);
    mix-blend-mode: multiply;
}

/* Frosted Glass Accent Layer */
.cta-glass-layer {
    position: absolute;
    left: 45%;
    top: 20%;
    width: 30%;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--mat-radius);
    z-index: 2; /* Between concrete and wood */
    box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.cta-content-floating {
    position: relative;
    z-index: 10;
    max-width: 650px;
    margin-left: 10%;
    pointer-events: none; /* Allow interaction with buttons through potential overlaps */
}
.cta-content-floating * { pointer-events: auto; }

.cta-watermark {
    position: absolute;
    top: -120px;
    left: -60px;
    font-size: 20rem;
    font-weight: 900;
    color: var(--mat-charcoal);
    opacity: 0.03;
    font-family: 'Playfair Display', serif;
    pointer-events: none;
    z-index: -1;
}

/* TECHNICAL CALLOUTS */
.cta-callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    pointer-events: none;
}

.callout-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    position: relative;
}
.callout-line::before {
    content: '';
    position: absolute;
    left: 0; top: -2px;
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
}
.callout-line.right { order: 2; }
.callout-line.right::before { left: auto; right: 0; }

.callout-label {
    font-family: monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    background: rgba(42, 38, 36, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--mat-charcoal);
    font-weight: 700;
    white-space: nowrap;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
    margin-bottom: 35px;
}

.cta-heading span {
    color: var(--mat-oak);
    display: block;
    margin-top: 10px;
    font-style: italic;
    font-weight: 400;
}

/* DYNAMIC FLOATING LABELS */
.floating-label {
    position: absolute;
    font-family: monospace;
    font-size: 0.65rem;
    color: var(--mat-oak);
    opacity: 0.25;
    letter-spacing: 2px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 5;
}

.fl-1 { top: -40px; right: 0; }
.fl-2 { bottom: 100px; left: -80px; transform: rotate(-90deg); }
.fl-3 { top: 20%; right: -50px; transform: rotate(90deg); }
.fl-step-1 { top: 20px; right: 20px; opacity: 0.15; }
.fl-step-2 { top: 20px; left: 20px; opacity: 0.15; }
.fl-step-3 { bottom: 20px; right: 20px; opacity: 0.15; }
.fl-step-4 { bottom: 20px; left: 20px; opacity: 0.15; }

/* COORDINATE MARKERS */
.hero-coord::before {
    content: '';
    display: inline-block;
    width: 10px; height: 10px;
    border: 1px solid var(--accent);
    margin-right: 10px;
    animation: pulse-marker 4s infinite;
}

@keyframes pulse-marker {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* SKEWED AOS TRANSITIONS */
[data-aos="reveal-up"] {
    transform: translateY(30px) skewY(2deg);
    opacity: 0;
    transition-property: transform, opacity;
}
[data-aos="reveal-up"].aos-animate {
    transform: translateY(0) skewY(0);
    opacity: 1;
}

.cta-coord {
    font-family: monospace;
    font-size: 0.7rem;
    letter-spacing: 4px;
    opacity: 0.3;
    text-transform: uppercase;
}

/* Modern Responsive CTA */
@media (max-width: 1200px) {
    .cta-slab-concrete { width: 80%; }
    .cta-slab-wood { width: 50%; right: 0; }
    .cta-glass-layer { display: none; }
}

@media (max-width: 992px) {
    .cta-intersection-container {
        height: auto;
        flex-direction: column;
        padding: 60px 20px;
    }
    .cta-slab-concrete, .cta-slab-wood {
        position: relative;
        width: 100%;
        height: 350px;
        margin-bottom: -150px;
        top: 0; right: 0;
    }
    .cta-slab-wood { margin-bottom: 40px; }
    .cta-callout { display: none; }
    .cta-content-floating {
        margin-left: 0;
        text-align: center;
        padding: 80px 30px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        border: 2px solid var(--border);
        border-radius: var(--mat-radius);
        pointer-events: auto;
    }
    .cta-heading { font-size: 3rem; }
    .cta-action-row { justify-content: center; flex-direction: column; gap: 30px; }
    .cta-watermark { display: none; }
}

.btn-primary-solid {
    background: var(--mat-charcoal);
    color: var(--white) !important;
    padding: 18px 45px;
    border-radius: var(--mat-radius);
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: var(--shadow-raised);
}

/* REVEAL ANIMATIONS */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ---- MODERN LIGHT ARCHITECTURAL FOOTER ---- */
.site-footer {
    padding: 60px 50px; /* Reduced from 100px */
    padding-bottom: calc(60px + env(safe-area-inset_bottom));
    margin-top: 5vw; /* Reduced from 10vw */
    position: relative;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* Blueprint Line Markers - Hidden for max airiness */
.site-footer::after {
    display: none;
}

/* Subtle Dark Grid Overlay - Hidden in glass footer to keep it airy */
.site-footer::before {
    display: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Compact alignment */
    position: relative;
    z-index: 2;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: var(--mat-charcoal);
}

.footer-nav-block {
    text-align: right;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-copy {
    font-size: 0.65rem;
    opacity: 0.5;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mat-charcoal);
}

.footer-coord {
    font-family: monospace;
    font-size: 0.6rem;
    color: var(--accent);
    opacity: 0.6;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* ADVANCED REVEAL DYNAMICS */
[data-aos="reveal-up"] {
    opacity: 0;
    transform: translateY(100px) skewY(2deg);
    transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

[data-aos="reveal-up"].aos-animate {
    opacity: 1;
    transform: translateY(0) skewY(0);
}

/* COMPONENT TWEAKS */
.hero-coord {
    position: absolute;
    bottom: -40px;
    right: 0;
}

/* RESPONSIVE REFINEMENTS */
@media (max-width: 1024px) {
    .modern-hero-grid { display: block; padding-top: 20px; }
    .hero-image-block { margin-bottom: -50px; width: 100%; border-radius: 0; }
    .hero-content-overlap { width: 90%; margin: 0 auto; padding: 40px 25px; box-shadow: var(--shadow-flat); }
    .service-staggered-grid { gap: 50px; }
    .service-slab { flex-direction: column !important; min-height: auto; }
    .slab-content { width: 100%; padding: 30px; }
    .slab-texture { display: none; }
    .vertical-label { display: none; }
    .cta-inner h2 { font-size: 2.5rem; }
    .modern-hero-grid { margin-bottom: 50px; }
    .main-content { padding: 40px 20px; }
}

/* ---- MODERN SUB-PAGE COMPONENTS ---- */

.modern-sub-page {
    position: relative;
    padding-bottom: 2vw; /* Reduced from 10vw */
}

.about-hero-slab, .about-body-slab, .about-footer-slab, .works-header-slab {
    display: flex;
    width: 100%;
    min-height: 400px;
    position: relative;
    align-items: center;
    margin-bottom: 8vw;
}

.about-hero-slab .slab-content { width: 50%; padding: 80px; background: var(--white); border: 3px solid var(--border); box-shadow: var(--shadow-raised); z-index: 5; }
.about-hero-slab .slab-texture { width: 60%; height: 100%; position: absolute; right: 0; z-index: 1; border-radius: var(--mat-radius); box-shadow: var(--shadow-raised); }

.about-body-slab { flex-direction: row-reverse; }
.about-body-slab .slab-content { width: 70%; padding: 80px; background: var(--white); border: 3px solid var(--border); box-shadow: var(--shadow-raised); z-index: 5; }

.works-header-slab .slab-content { width: 60%; padding: 80px; background: var(--white); border: 3px solid var(--border); z-index: 5; }
.works-header-slab .slab-texture { width: 50%; height: 100%; position: absolute; right: 0; z-index: 1; }

/* MODERN STAGGERED GRID (WORKS) */
.works-gallery-modern { padding: 5vw 0; }
.work-staggered-grid { display: flex; flex-direction: column; gap: 10vw; }

.work-slab { 
    display: flex; 
    width: 100%; 
    min-height: 600px; 
    position: relative; 
    align-items: center; 
    margin-bottom: 200px; 
}

.work-slab .slab-content { 
    width: 45%; 
    padding: 100px 80px; 
    background: var(--white); 
    border: 3px solid var(--border); 
    box-shadow: var(--shadow-raised); 
    z-index: 10; 
    position: relative; 
}

.work-slab .work-image-wrap { 
    width: 65%; 
    position: absolute; 
    top: 50px; 
    bottom: -50px;
    z-index: 1; 
    border-radius: var(--mat-radius); 
    box-shadow: var(--shadow-raised); 
    overflow: hidden; 
    border: 3px solid var(--border); 
    background: var(--bg-sidebar); 
    transition: transform 0.6s var(--transition);
}

.work-slab:hover .work-image-wrap { transform: translateY(-5px); }

.work-slab .work-image-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
    filter: sepia(10%) contrast(1.05); 
    transition: transform 0.6s var(--transition); 
}

.slab-right .work-image-wrap { left: 0; }
.slab-left { flex-direction: row-reverse; }
.slab-left .work-image-wrap { right: 0; }

.work-slab:hover .work-image-wrap img { transform: scale(1.05); }

.work-placeholder { 
    width: 70%; 
    position: absolute; 
    top: 50px; 
    bottom: -50px;
    z-index: 1; 
    border-radius: var(--mat-radius); 
    box-shadow: var(--shadow-raised); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 900; 
    background: var(--bg-sidebar); 
    border: 3px solid var(--border); 
}

/* MODERN ASYMMETRIC FORM (BOOK) */
.modern-asymmetric-form { max-width: 1200px; margin: 0 auto; }
.book-header-slab { display: flex; position: relative; min-height: 300px; align-items: center; margin-bottom: 5vw; }
.book-header-slab .slab-content { width: 80%; padding: 60px; background: var(--white); border: 3px solid var(--border); z-index: 5; }
.book-header-slab .slab-texture { width: 40%; height: 100%; position: absolute; right: 0; }

.form-slab .slab-content { width: 100%; padding: 80px; background: var(--white); border: 3px solid var(--border); box-shadow: var(--shadow-raised); }

.book-meta-strip { display: flex; gap: 30px; margin-top: 30px; }
.meta-item { font-size: 0.8rem; font-weight: 800; color: var(--accent); white-space: nowrap; }
.meta-item i { margin-right: 8px; }

.modern-book-form { display: flex; flex-direction: column; gap: 30px; }
.modern-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.modern-book-form .form-group label { display: block; font-size: 0.75rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; color: var(--mat-charcoal); }
.modern-book-form input, .modern-book-form architectural-textarea { width: 100%; padding: 18px; background: var(--bg-primary); border: 2px solid var(--border); border-radius: var(--mat-radius); font-size: 1rem; color: var(--mat-charcoal); transition: var(--transition); }
.modern-book-form textarea { width: 100%; padding: 18px; background: var(--bg-primary); border: 2px solid var(--border); border-radius: var(--mat-radius); font-size: 1rem; color: var(--mat-charcoal); transition: var(--transition); }

.modern-book-form input:focus, .modern-book-form textarea:focus { border-color: var(--accent); outline: none; background: var(--white); box-shadow: var(--shadow-flat); }

.btn-primary-solid.full-width { width: 100%; justify-content: center; padding: 22px; font-size: 1.1rem; }
.form-note { text-align: center; font-size: 0.8rem; opacity: 0.4; margin-top: 20px; }
.hp-shield { position: absolute; left: -9999px; }

/* ALERT STYLES */
.alert { padding: 40px; border-radius: var(--mat-radius); margin-bottom: 40px; border-left: 10px solid; }
.alert-success { background: #E8F5E9; border-color: #4CAF50; color: #1B5E20; }
.alert-error { background: #FFEBEE; border-color: #F44336; color: #B71C1C; }
.alert i { font-size: 2rem; display: block; margin-bottom: 15px; }

/* TWEAKS & RESPONSIVE */
.about-identity { display: flex; align-items: center; gap: 30px; }
.about-photo { width: 100px; height: 100px; background: var(--bg-sidebar); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: var(--accent); border: 3px solid var(--border); }

@media (max-width: 1024px) {
    .about-hero-slab, .about-body-slab, .about-footer-slab, .works-header-slab, .book-header-slab { display: block; min-height: auto; }
    .work-slab { display: flex; flex-direction: column !important; min-height: auto; margin-bottom: 80px; }
    
    .about-hero-slab .slab-content, .about-body-slab .slab-content, .about-footer-slab .slab-content, .works-header-slab .slab-content, .book-header-slab .slab-content { width: 100%; padding: 40px 25px; }
    .about-footer-slab .about-contact-card, .about-footer-slab .about-estimate-bar { width: 100%; margin: 20px 0; }
    
    .work-slab .slab-content { width: 100%; padding: 40px 25px; order: 2; border: none; box-shadow: none; border-top: 3px solid var(--accent); }
    
    .work-slab .work-image-wrap { 
        position: relative; 
        width: 100%; 
        height: 350px; 
        top: 0; left: 0; right: 0; bottom: 0;
        border-radius: var(--mat-radius);
        order: 1;
    }

    .slab-texture, .work-placeholder { display: none; }
    .modern-form-row { grid-template-columns: 1fr; }
    .book-meta-strip { flex-direction: column; gap: 10px; }
}

/* --- ARCHITECTURAL KINETIC FLUIDITY HERO --- */
.testimonials-hero-kinetic {
    position: relative;
    min-height: 90vh;
    padding: 120px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent !important; /* TOTAL ELIMINATION OF THE BEIGE BOX */
}

/* GHOST GRID EXTERMINATION — DISABLING GLOBAL GRID ON TESTIMONIALS */
body:has(.testimonials-hero-kinetic)::before {
    display: none !important;
}

/* Kill Sidebar Squares */
.sidebar {
  width: var(--sidebar-w);
  background: rgba(240, 237, 230, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  position: fixed;
  top: 0; bottom: 0; left: 0;
  display: flex;
  flex-direction: column;
  padding: 50px 40px;
  z-index: 1000;
  transition: transform var(--transition);
  background-image: none !important; /* REMOVE ALL GRID/CHECKED PATTERNS */
}

/* HANGE.EE WIDGET OBLITERATION */
.hange_modal, 
#hange_modal,
.hange_modal_header,
.hange_modal_content {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Liquid Ambient Background */
.liquid-ambient-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(237, 230, 217, 0.4), transparent);
    z-index: 1;
    pointer-events: none;
}

@keyframes liquidFlow {
    0% { background-position: 0% 50%; opacity: 0.8; }
    50% { background-position: 100% 50%; opacity: 0.6; }
    100% { background-position: 0% 50%; opacity: 0.8; }
}

.kinetic-composition {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100vh;
}

.kinetic-word {
    position: absolute;
    text-transform: uppercase;
    line-height: 0.75;
    white-space: nowrap;
}

.k-word-1 {
    top: 15vh;
    left: 8vw;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 950;
    letter-spacing: -8px;
    color: var(--text-main);
}

.k-word-2 {
    top: 42vh;
    left: 35vw;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 2px; /* Fixed: was 15px */
    color: var(--text-muted);
    opacity: 0.8;
}

.k-word-3 {
    bottom: 18vh;
    right: 10vw;
    font-size: clamp(3rem, 11vw, 8rem);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--mat-oak);
    letter-spacing: -3px;
}

/* Deconstructed Signature Edge */
.kinetic-signature {
    position: absolute;
    left: 40px;
    bottom: 60px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    gap: 30px;
    font-family: monospace;
    font-size: 0.65rem;
    letter-spacing: 6px;
    opacity: 0.35;
}

.kinetic-score-mark {
    position: absolute;
    right: 8vw;
    top: 12vh;
    text-align: right;
    z-index: 30;
}

.k-score-num {
    font-size: clamp(3rem, 6vw, 5rem);
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1;
    color: var(--mat-charcoal);
}

.k-stars {
    color: #D4AF37;
    font-size: 0.7rem;
    letter-spacing: 12px;
    display: block;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .kinetic-hero-kinetic { min-height: 80vh; }
    .k-word-1 { top: 12vh; left: 5vw; font-size: 22vw; }
    .k-word-2 { top: 32vh; left: 5vw; font-size: 16vw; }
    .k-word-3 { bottom: 12vh; right: 5vw; font-size: 18vw; }
    .kinetic-score-mark { right: 5vw; top: 4vh; transform: scale(0.6); }
    .kinetic-signature { display: none; }
}

@media (max-width: 768px) {
    .testimonials-hero-zen { padding: 160px 20px 80px; }
    .testimonials-hero-zen h1 { font-size: 2.5rem; margin-bottom: 30px; }
}

.reviews-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 40px;
    padding: 80px 0;
}

.testimonial-card-airy {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card-airy:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.testimonial-card-airy.accent-card {
    background: var(--mat-charcoal);
    color: var(--white);
    border: none;
}

.testimonial-card-airy .review-stars {
    color: #D4AF37;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.testimonial-card-airy h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.testimonial-card-airy p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.8;
    font-weight: 300;
    margin-bottom: 40px;
    flex-grow: 1;
}

.testimonial-card-airy .card-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-card-airy.accent-card .card-footer {
    border-top-color: rgba(255,255,255,0.1);
}

.testimonial-card-airy .author-name {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: #D4AF37;
}

.testimonial-card-airy .review-date {
    font-family: monospace;
    font-size: 0.7rem;
    opacity: 0.4;
}

/* Section Spacer */
.section-spacer-airy {
    height: 15vw;
    width: 100%;
}

@media (max-width: 1024px) {
    .reviews-masonry-grid { grid-template-columns: 1fr; gap: 30px; }
    .testimonial-card-airy { padding: 40px; border-radius: 30px; }
}

/* --- WORKS CTA REDESIGN --- */
.works-cta-solid {
    padding: 12vw 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.works-cta-solid .cta-inner {
    max-width: 850px;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    box-shadow: 
        0 40px 80px -20px rgba(0,0,0,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.4);
    text-align: center;
    position: relative;
    z-index: 10;
}

.works-cta-solid .cta-inner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--mat-charcoal);
}

.works-cta-solid .cta-inner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .works-cta-solid { padding: 80px 20px; }
    .works-cta-solid .cta-inner { padding: 60px 25px; border-radius: 35px; }
}

/* --- INDEX CTA MOBILE FIX --- */
@media (max-width: 1024px) {
    .cta-intersection-wrap { 
        padding: 60px 20px; 
        background: var(--bg-sidebar); /* Fallback depth */
    }
    
    .cta-intersection-container { 
        height: auto; 
        display: flex; 
        flex-direction: column; 
        gap: 0; 
    }
    
    .cta-image-reality { 
        position: relative;
        width: 100%;
        height: 300px;
        top: 0; right: 0;
        border-radius: var(--mat-radius) var(--mat-radius) 0 0;
        z-index: 5;
    }
    
    .cta-slab-wood {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        right: 0; bottom: 0;
        border-radius: var(--mat-radius);
        opacity: 0.3;
        z-index: 1;
    }

    .cta-content-floating {
        position: relative;
        margin-left: 0;
        padding: 40px 25px;
        background: var(--white);
        border: 1px solid var(--border);
        border-top: none;
        border-radius: 0 0 var(--mat-radius) var(--mat-radius);
        z-index: 10;
        text-align: center;
        max-width: 100%;
    }
    
    .cta-heading { font-size: 2.2rem !important; }
    .cta-heading span { display: block; }
    
    .cta-action-row { 
        flex-direction: column; 
        gap: 20px; 
    }
    
    .cta-slab-concrete, .cta-glass-layer, .cta-watermark, .cta-callout, .cta-coord { 
        display: none !important; 
    }
}

/* --- INDEX MOBILE REFINEMENTS --- */
@media (max-width: 768px) {
    /* Fix CTA button overlap */
    .cta-content-floating {
        padding: 50px 30px;
    }
    .cta-text {
        margin-bottom: 50px !important;
        line-height: 1.6;
    }
    .cta-action-row {
        margin-top: 20px;
    }
    
    /* Fix Footer messy layout */
    .footer-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 40px;
    }
    .footer-brand h2 {
        font-size: 1.8rem !important;
        letter-spacing: 5px !important;
    }
    .footer-nav ul {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column !important;
        gap: 15px;
        text-align: center;
    }
    
    /* Fix Process section labels */
    .process-slab .slab-title {
        font-size: 1.5rem !important;
        margin-top: 10px;
    }
    .process-slab .floating-label {
        display: none !important; /* Hide technical IDs on mobile to declutter */
    }
}
