.elementor-48 .elementor-element.elementor-element-e1c9ff8{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e6ef6b7 */\/* =========================================================================
   Tuwiikaa — Global Header
   Self-contained: ships its own design tokens so the file works when
   pasted into any page (including an Elementor template).

   Includes the button system (.tk-btn / .tk-btn--primary / .tk-btn--sm)
   because the header's primary CTA depends on it.

   Naming: .tk-header-* (matches the build/inputs canonical header and
   the old inlined home page header, so the existing build rename rules
   keep working).
   ========================================================================= */

:root {
  /* Brand palette (same tokens the home page uses) */
  --tk-bg:           #000000;
  --tk-text:         #FFFFFF;
  --tk-text-2:       #BBB9B9;  /* Metallic Silver (v1.3) */
  --tk-text-3:       #4F5D75;  /* Muffled Gunmetal */

  /* Surface scale (matches the home page's design system).
     "Elevated surface" tokens — slightly above Tuwiikaa Black,
     used for layered panels, cards, and dropdown surfaces. */
  --tk-surface:      #0A0F1A;  /* elevated surface */
  --tk-surface-2:    #111726;  /* higher elevated surface */

  /* RGB triplet tokens — let rgba() use the surface scale with
     alpha modulation. (rgba() can't accept hex tokens, so we
     need the channels split out.) */
  --tk-surface-rgb:    10 15 26;
  --tk-surface-2-rgb: 17 23 38;

  --tk-border:       rgba(255, 255, 255, 0.10);
  --tk-line:         rgba(255, 255, 255, 0.08);
  --tk-line-bright:  rgba(255, 255, 255, 0.18);  /* rim light for glass surfaces */

  --tk-glass:        rgba(255, 255, 255, 0.025);
  --tk-glass-2:      rgba(255, 255, 255, 0.04);

  --tk-radius:       14px;
  --tk-radius-pill:  999px;

  --tk-pad-x:        clamp(20px, 4vw, 48px);
  --tk-max:          1280px;
  --tk-max-wide:     1440px;

  --tk-ease:         cubic-bezier(0.4, 0, 0.2, 1);

  --tk-font-display: 'Inter Tight', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --tk-font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --tk-font-mono:    'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

/* =========================================================================
   Container utilities (used by .tk-container in the markup)
   ========================================================================= */
.tk-container {
  width: 100%;
  max-width: var(--tk-max);
  margin: 0 auto;
  padding-left: var(--tk-pad-x);
  padding-right: var(--tk-pad-x);
}
.tk-container--wide { max-width: var(--tk-max-wide); }

/* =========================================================================
   Skip link
   ========================================================================= */
.tk-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--tk-text-2);
  color: var(--tk-bg);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: var(--tk-radius);
}
.tk-skip:focus { left: 16px; top: 16px; }

/* =========================================================================
   Tuwiikaa — Buttons (subset used by the header CTA)
   ========================================================================= */
.tk-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--tk-radius-pill);
  font-family: var(--tk-font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s var(--tk-ease),
    background 0.25s var(--tk-ease),
    box-shadow 0.25s var(--tk-ease),
    border-color 0.25s var(--tk-ease),
    color 0.25s var(--tk-ease);
  white-space: nowrap;
  isolation: isolate;
  text-decoration: none;
  user-select: none;
}
.tk-btn__icon {
  display: inline-flex;
  align-items: center;
  width: 14px;
  height: 14px;
}
.tk-btn__icon svg { width: 100%; height: 100%; }
.tk-btn--sm { padding: 10px 18px; font-size: 0.875rem; }

/* Primary — same Muffled Gunmetal treatment as the home page */
.tk-btn--primary {
  background: var(--tk-text-3);
  color: var(--tk-text);
  box-shadow:
    0 8px 28px -8px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.tk-btn--primary:hover,
.tk-btn--primary:focus-visible {
  background: #5A6A82 !important;
  color: var(--tk-text) !important;
  transform: translateY(-1px);
  box-shadow:
    0 12px 36px -8px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.tk-btn--primary:hover .tk-btn__label,
.tk-btn--primary:hover .tk-btn__icon,
.tk-btn--primary:focus-visible .tk-btn__label,
.tk-btn--primary:focus-visible .tk-btn__icon {
  color: var(--tk-text) !important;
}

/* =========================================================================
   Tuwiikaa — Global Header
   ========================================================================= */
.tk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.3s var(--tk-ease),
    border-color 0.3s var(--tk-ease);
  border-bottom: 1px solid transparent;
  background: transparent;
  /* Promote to its own compositing layer so backdrop-filter
     is reliably rendered. Without this, some browsers (and
     some combinations of z-index / position / transform on
     ancestor elements) will skip the backdrop-filter pass. */
  will-change: backdrop-filter;
}
.tk-header.is-scrolled {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--tk-line);
  /* Reinforce the compositing-layer promotion at the scrolled
     state, since that's when the blur actually matters. */
  will-change: backdrop-filter;
}

.tk-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.tk-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.tk-header__logo img {
  width: auto;
  height: 30px;
  display: block;
}

.tk-header__nav { display: none; }

.tk-header__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  /* No bullets. The user-agent default places a marker on every
     <li> in a <ul>; we strip it on both the <ul> and the <li>
     so any cascade path (UA default, theme override, or a
     higher-specificity .elementor-48 .elementor-element.elementor-element-e6ef6b7) still ends up with no marker. */
  list-style: none;
  padding: 0;
  margin: 0;
}

.tk-header__item {
  position: relative;
  list-style: none;
}

.tk-header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--tk-radius-pill);
  color: var(--tk-text-2);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s var(--tk-ease), background 0.2s var(--tk-ease);
}
.tk-header__link:hover,
.tk-header__link:focus-visible {
  color: var(--tk-text);
  background: var(--tk-glass);
}

/* Dropdown panels */
.tk-header__panel {
  will-change: backdrop-filter;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  padding: 12px;
  border-radius: var(--tk-radius);
  /* Background: Muffled Gunmetal (#4F5D75, --tk-text-3).
     Solid color per user request. Brand-pure: documented in
     TUWIIKAA-Brand-Guidelines.md v1.3 for "Supporting color —
     UI components". */
  background: var(--tk-text-3);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.30);  /* rim light bumped for the gunmetal surface */
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.22),    /* top edge highlight (specular) */
    inset 0 -1px 0 0 rgba(255, 255, 255, 0.08),   /* bottom edge highlight (refraction) */
    0 8px 32px -8px rgba(0, 0, 0, 0.4);            /* soft drop shadow under the glass */

  display: grid;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  /* Tightened from 0.25s so the panel appears fast enough to
     catch the cursor as it moves from the parent into the panel. */
  transition: opacity 0.15s var(--tk-ease), transform 0.15s var(--tk-ease);
}

/* Invisible bridge between the parent <li> and the panel. Without
   this, the cursor loses the parent's :hover state while crossing
   the 12px gap, and the panel snaps closed mid-transition. The
   bridge is a child of the panel (and therefore a child of the
   parent <li>), so the parent's :hover state is maintained as
   long as the cursor is over the bridge. */
.tk-header__panel::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.tk-header__item--has-children:hover .tk-header__panel,
.tk-header__item--has-children:focus-within .tk-header__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.tk-header__panel-link {
  display: block;
  padding: 12px 14px;
  border-radius: var(--tk-radius);
  transition: background 0.2s var(--tk-ease);
}
.tk-header__panel-link:hover { background: var(--tk-glass-2); }

.tk-header__panel-title {
  display: block;
  font-weight: 600;
  color: var(--tk-text);
  font-size: 0.9375rem;
  margin-bottom: 2px;
}
.tk-header__panel-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--tk-text);  /* white — see user request */
}

/* Actions (right side) */
.tk-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* Burger */
.tk-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--tk-radius);
  background: var(--tk-glass);
  border: 1px solid var(--tk-line);
  cursor: pointer;
  gap: 5px;
  transition: background 0.2s var(--tk-ease);
}
.tk-header__burger:hover { background: var(--tk-glass-2); }
.tk-header__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--tk-text);
  transition: transform 0.3s var(--tk-ease), opacity 0.3s var(--tk-ease);
}
.tk-header__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.tk-header__burger.is-open span:nth-child(2) { opacity: 0; }
.tk-header__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — full-screen on small screens */
.tk-header__mobile {
  position: fixed;
  inset: 0;
  left: 0;
  right: 0;
  z-index: 120;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 80% 0%, rgba(79, 93, 117, 0.28), transparent 34%),
    linear-gradient(160deg, #000000 0%, #0A0F1A 100%);
  overflow-y: auto;
  padding: 28px var(--tk-pad-x) 32px;
  animation: tk-mobile-menu-in 0.35s var(--tk-ease) both;
}
.tk-header__mobile[hidden] { display: none; }

.tk-header__mobile-inner {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 60px);
  max-width: 560px;
  margin: 0 auto;
}
.tk-header__mobile-close {
  position: absolute;
  top: 20px;
  right: var(--tk-pad-x);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--tk-line) !important;
  border-radius: 50%;
  background: #0A0F1A !important;
  color: var(--tk-text) !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.tk-header__mobile-close span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--tk-text);
}
.tk-header__mobile-close span:first-child { transform: rotate(45deg); }
.tk-header__mobile-close span:last-child { transform: rotate(-45deg); }
.tk-header__mobile-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 8px 0 clamp(56px, 11vh, 100px);
}
.tk-header__mobile-logo img {
  display: block;
  width: auto;
  height: 30px;
}
.tk-header__mobile-nav { display: flex; flex-direction: column; }
.tk-header__mobile-link {
  padding: 13px 0;
  border-bottom: 1px solid var(--tk-line);
  color: var(--tk-text);
  font-family: var(--tk-font-display);
  font-size: clamp(1.65rem, 7vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  transition: color 0.2s var(--tk-ease), padding-left 0.2s var(--tk-ease);
}
.tk-header__mobile-link:hover,
.tk-header__mobile-link:focus-visible { color: var(--tk-text-2); padding-left: 8px; }
.tk-header__mobile-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: auto;
  padding-top: 40px;
}
.tk-header__mobile-footer .tk-btn {
  width: 100%;
  padding: 17px 24px;
  font-size: 1rem;
  justify-content: center;
}
.tk-header__mobile-contact {
  color: var(--tk-text-2);
  font-size: 0.875rem;
}
body.tk-mobile-menu-open { overflow: hidden; }

@keyframes tk-mobile-menu-in {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Desktop breakpoint — nav and inline CTA visible, burger hidden */
@media (min-width: 880px) {
  .tk-header__nav { display: block; }
  .tk-header__burger { display: none; }
  .tk-header__mobile,
  .tk-header__mobile[hidden] { display: none !important; }
}

@media (max-width: 879px) {
  .tk-header__actions > .tk-btn { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tk-header__mobile { animation: none; }
}/* End custom CSS */