/* CRITICAL INLINE CSS - ABOVE THE FOLD ONLY */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scrollbar-gutter: stable; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif; background: #f6f6eb; color: #1a1a1a; overflow-x: hidden; line-height: 1.6; }

/* Header */
.app-header { background: rgba(246, 246, 235, 0.98); border-bottom: 1px solid rgba(209, 209, 209, 0.2); position: sticky; top: 0; z-index: 1000; }
.app-header__container { max-width: 1600px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); display: flex; align-items: center; justify-content: space-between; height: 80px; }
.app-logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
.app-logo__left, .app-logo__right { height: 50px; width: auto; display: block; }

/* Navigation - Desktop
.app-nav { flex: 1; display: flex; justify-content: center; position: static; width: auto; height: auto; background: transparent; padding: 0; transform: none; box-shadow: none; overflow: visible; z-index: auto; flex-direction: row; top: auto; left: auto; visibility: visible; opacity: 1; }
.app-nav__list { display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); list-style: none; margin: 0; padding: 0; visibility: visible; opacity: 1; width: 100%; }
.app-nav__item { position: relative; display: flex; align-items: center; flex-shrink: 0; width: auto; }
.app-nav__link { font-family: 'Atyp Kido TRIAL', sans-serif; font-size: 15px; font-weight: 400; letter-spacing: 0.5px; color: #1a1a1a; text-decoration: none; text-transform: capitalize; padding: 8px 0; position: relative; transition: color 0.3s ease; } */

/* Hero */
.lakum-hero { position: relative; width: 100%; height: 85vh; min-height: 600px; display: flex; align-items: center; justify-content: center; background: #1a1a1a; contain: layout style paint; }
.lakum-hero__image-wrapper { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.lakum-hero__image { width: 100%; height: 100%; object-fit: cover; display: block; }
.lakum-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.65) 100%); z-index: 2; }
.lakum-hero__content { position: relative; z-index: 3; text-align: center; color: #fff; max-width: 1400px; width: 90%; padding: 0 20px; }
.lakum-hero__title { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 1.5rem 0; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.lakum-hero__subtitle { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 300; line-height: 1.6; color: #fff; text-align: center; }

/* Mobile */
@media (max-width: 768px) {
  .lakum-header__container { height: 60px; }
  .lakum-hero { height: 60vh; min-height: 450px; }
}

@media (max-width: 1024px) {
  .lakum-header__container { height: 70px; padding: 0 30px; }
  .lakum-logo__left, .lakum-logo__right { height: 45px; }
  .lakum-nav__list { gap: 32px; }
  .lakum-nav__link { font-size: 14px; }
}

@media (max-width: 768px) {
  .app-header__container { height: 70px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; position: relative; }
  .app-header__menu-toggle { display: flex !important; position: absolute; right: 20px; margin: 0; z-index: 1001; }
  .app-header__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .app-logo__left, .app-logo__right { height: 40px; }
  .app-header__controls { position: absolute; left: 20px; margin: 0; z-index: 1002; display: flex; align-items: center; gap: 10px; flex-direction: row-reverse; }
  
  .app-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: #f6f6eb !important;
    padding: 100px 40px 40px !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1) !important;
    overflow-y: auto !important;
    z-index: 999 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    flex: none !important;
    justify-content: flex-start !important;
  }
  
  .app-nav::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.3) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    z-index: -1 !important;
  }
  
  .app-nav--active {
    transform: translateX(0) !important;
    z-index: 1001 !important;
  }
  
  .app-nav--active::before {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .app-nav__list { display: flex !important; flex-direction: column !important; align-items: center !important; gap: clamp(20px, 3vw, 48px) !important; list-style: none !important; margin: 0 !important; padding: 0 !important; width: 100% !important; }
  .app-nav__item { width: 100% !important; border-bottom: 1px solid rgba(209, 209, 209, 0.2) !important; text-align: center !important; flex-shrink: 0 !important; }
  .app-nav__link { display: block !important; padding: 20px 0 !important; font-size: 18px !important; text-align: center !important; }
}

@media (max-width: 480px) {
  .app-header__container { height: 60px; padding: 0 20px; }
  .app-logo__left, .app-logo__right { height: 40px; }
  .app-nav { max-width: 100% !important; padding: 80px 30px 30px !important; }
}
