/*
Theme Name: NB Films Pro
Theme URI: https://www.nb-films.ch/
Author: Nedim Berisha
Author URI: https://www.nb-films.ch/
Description: Erweiterbares Custom WordPress Theme für NB Films mit Customizer, Menüverwaltung und optionaler ACF-Options-Page-Unterstützung.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: nb-films
*/

@font-face {
      font-family: 'Geometrico';
      src: url('assets/Geometrico-BlackItalic.otf') format('opentype');
      font-weight: 900;
      font-style: italic;
      font-display: swap;
    }
    /* ── RESET ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:      #050505;
      --surface: #0d0d0d;
      --card:    #131313;
      --border:  #1c1c1c;
      --border2: #282828;
      --red:     #e8192c;
      --white:   #f0f0f0;
      --muted:   #505050;
      --sub:     #828282;
      --mono:    'JetBrains Mono', monospace;
      --sans:    'Inter', sans-serif;
      --r:       10px;
      /* spacing helpers */
      --px-desktop: 60px;
      --px-tablet:  32px;
      --px-mobile:  20px;
      --sec:        88px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      background: var(--bg);
      color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    ::-webkit-scrollbar { width: 3px; }
    ::-webkit-scrollbar-thumb { background: var(--border2); }


    /* ══════════════════════════════════════════
       NAV
    ══════════════════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 var(--px-desktop);
      background: rgba(5,5,5,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo { display: flex; align-items: center; gap: 11px; }
    .nav-logo svg { height: 28px; width: auto; flex-shrink: 0; color: var(--red); }
    .nav-wordmark {
      font-family: 'Geometrico', var(--mono);
      font-size: 18px;
      font-weight: 900;
      font-style: italic;
      letter-spacing: 0.02em;
      color: var(--white);
    }
    .nav-wordmark em { color: var(--red); font-style: italic; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--sub);
      padding: 7px 13px;
      border-radius: 7px;
      transition: color .18s, background .18s;
    }
    .nav-links a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-cta {
  background: transparent !important;
  color: var(--sub) !important;
  border: none !important;
  font-weight: 500 !important;
  padding: 7px 13px;
  border-radius: 7px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: rgba(255,255,255,.05) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  border-color: var(--red);
  color: var(--red) !important;
}
    /* hamburger */
    .nav-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      cursor: pointer;
    }
    .nav-burger span {
      display: block;
      width: 22px; height: 1.5px;
      background: var(--white);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-burger.active span:nth-child(2) { opacity: 0; }
    .nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* mobile drawer */
    .nav-drawer {
      display: none;
      position: fixed;
      top: 64px; left: 0; right: 0; bottom: 0;
      background: var(--bg);
      z-index: 99;
      flex-direction: column;
      padding: 32px var(--px-mobile);
      gap: 4px;
      border-top: 1px solid var(--border);
      transform: translateX(100%);
      transition: transform .32s cubic-bezier(.16,1,.3,1);
    }
    .nav-drawer.open { transform: translateX(0); }
    .nav-drawer a {
      font-size: 20px;
      font-weight: 700;
      color: var(--sub);
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      transition: color .18s;
    }
    .nav-drawer a:last-child { border-bottom: none; }
    .nav-drawer a:hover, .nav-drawer a:active { color: var(--white); }
    .nav-drawer .drawer-cta {
      margin-top: 24px;
      background: var(--red);
      color: var(--white) !important;
      text-align: center;
      border-radius: var(--r);
      padding: 16px !important;
      border-bottom: none !important;
      font-size: 16px !important;
    }


    /* ══════════════════════════════════════════
       HERO
    ══════════════════════════════════════════ */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px var(--px-desktop) 80px;
      position: relative;
      overflow: hidden;
    }

    /* dot grid */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
      pointer-events: none;
    }

    /* red ambient glow */
    #hero::after {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 900px; height: 400px;
      background: radial-gradient(ellipse, rgba(232,25,44,.1) 0%, transparent 65%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 800px;
      width: 100%;
    }

    .status-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--mono);
      font-size: 10.5px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--sub);
      background: var(--card);
      border: 1px solid var(--border2);
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 32px;
    }
    .status-dot {
      width: 6px; height: 6px;
      background: #22c55e;
      border-radius: 50%;
      animation: blink 2.5s ease infinite;
    }
    @keyframes blink {
      0%,100% { opacity: 1; } 50% { opacity: .3; }
    }

    .hero-title {
      font-size: clamp(44px, 7vw, 84px);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -2.5px;
      margin-bottom: 24px;
    }
    .hero-title .red  { color: var(--red); }
    .hero-title .thin { font-weight: 300; color: var(--sub); }

    .hero-desc {
      font-size: clamp(15px, 1.8vw, 17px);
      color: var(--sub);
      max-width: 540px;
      line-height: 1.8;
      margin-bottom: 40px;
    }
    .hero-desc strong { color: var(--white); font-weight: 600; }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: var(--r);
      font-size: 14px;
      font-weight: 600;
      font-family: var(--sans);
      border: none;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
    }
    .btn svg { width: 16px; height: 16px; flex-shrink: 0; }

    .btn-red {
      background: var(--red);
      color: var(--white);
      box-shadow: 0 0 28px rgba(232,25,44,.28);
    }
    .btn-red:hover { box-shadow: 0 0 44px rgba(232,25,44,.45); transform: translateY(-1px); }

    .btn-ghost {
      background: transparent;
      color: var(--sub);
      border: 1px solid var(--border2);
    }
    .btn-ghost:hover { border-color: var(--muted); color: var(--white); transform: translateY(-1px); }

    .btn-full { width: 100%; justify-content: center; }


    /* ══════════════════════════════════════════
       METRICS BAR
    ══════════════════════════════════════════ */
    .metrics {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .metric {
      padding: 28px var(--px-desktop);
      display: flex;
      align-items: center;
      gap: 18px;
      border-right: 1px solid var(--border);
    }
    .metric:last-child { border-right: none; }
    .metric-icon {
      width: 38px; height: 38px;
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .metric-icon svg { width: 17px; height: 17px; color: var(--red); }
    .metric-val {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -1px;
      line-height: 1;
      font-family: var(--mono);
    }
    .metric-label {
      font-size: 11.5px;
      color: var(--sub);
      margin-top: 3px;
      font-weight: 500;
    }


    /* ══════════════════════════════════════════
       SECTION HELPERS
    ══════════════════════════════════════════ */
    .section-wrap {
      padding: var(--sec) var(--px-desktop);
    }
    .section-wrap-surface {
      padding: var(--sec) var(--px-desktop);
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .section-inner { max-width: 1160px; margin: 0 auto; }

    .sec-label {
      font-family: var(--mono);
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 10px;
    }
    .sec-title {
      font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 800;
      letter-spacing: -1.2px;
      line-height: 1.1;
      margin-bottom: 10px;
    }
    .sec-sub {
      font-size: 15px;
      color: var(--sub);
      max-width: 460px;
      line-height: 1.75;
      margin-bottom: 48px;
    }


    /* ══════════════════════════════════════════
       SERVICES
    ══════════════════════════════════════════ */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }
    .srv {
      background: var(--card);
      padding: 32px 28px;
      transition: background .22s;
    }
    .srv:hover { background: #181818; }
    .srv-icon {
      width: 42px; height: 42px;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      transition: border-color .22s;
    }
    .srv:hover .srv-icon { border-color: var(--red); }
    .srv-icon svg { width: 19px; height: 19px; color: var(--sub); transition: color .22s; }
    .srv:hover .srv-icon svg { color: var(--red); }
    .srv-name { font-size: 15px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.2px; }
    .srv-text { font-size: 13px; color: var(--sub); line-height: 1.7; margin-bottom: 16px; }
    .srv-tags { display: flex; flex-wrap: wrap; gap: 5px; }
    .tag {
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 500;
      color: var(--muted);
      background: var(--surface);
      border: 1px solid var(--border2);
      padding: 3px 8px;
      border-radius: 4px;
    }


    /* ══════════════════════════════════════════
       PLATFORMS BAR
    ══════════════════════════════════════════ */
    .platforms-bar {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 22px var(--px-desktop);
      display: flex;
      align-items: center;
      gap: 28px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .platforms-bar::-webkit-scrollbar { display: none; }
    .plat-label {
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      flex-shrink: 0;
    }
    .plat-sep { width: 1px; height: 18px; background: var(--border2); flex-shrink: 0; }
    .plat-items { display: flex; gap: 7px; align-items: center; }
    .plat-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 13px;
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 6px;
      font-size: 12px;
      font-weight: 500;
      color: var(--sub);
      transition: border-color .18s, color .18s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .plat-item:hover { border-color: var(--muted); color: var(--white); }
    .plat-item svg { width: 13px; height: 13px; }


    /* ══════════════════════════════════════════
       PROCESS
    ══════════════════════════════════════════ */
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r);
      overflow: hidden;
    }
    .step {
      background: var(--card);
      padding: 28px 24px;
      transition: background .22s;
    }
    .step:hover { background: #181818; }
    .step-num {
      font-family: var(--mono);
      font-size: 10.5px;
      font-weight: 700;
      color: var(--red);
      letter-spacing: .06em;
      margin-bottom: 14px;
    }
    .step-icon {
      width: 36px; height: 36px;
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .step-icon svg { width: 17px; height: 17px; color: var(--sub); transition: color .22s; }
    .step:hover .step-icon svg { color: var(--red); }
    .step-name { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
    .step-text { font-size: 13px; color: var(--sub); line-height: 1.7; }


    /* ══════════════════════════════════════════
       CONTACT  — 3-column on desktop
    ══════════════════════════════════════════ */
    #contact { background: var(--bg); }

    .contact-grid {
      display: grid;
      grid-template-columns: 280px 1fr 1fr;
      gap: 24px;
      align-items: start;
    }

    /* — Profile card — */
    .profile-card {
      background: var(--card);
      border: 1px solid var(--border2);
      border-radius: 14px;
      overflow: hidden;
      position: relative;
    }
    .profile-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--red);
    }
    /* Avatar header */
    .profile-header {
      padding: 22px 20px 18px;
      display: flex;
      align-items: center;
      gap: 14px;
      border-bottom: 1px solid var(--border);
    }
    .profile-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--red);
      flex-shrink: 0;
      box-shadow: 0 0 16px rgba(232,25,44,.2);
    }
    .profile-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 10%;
      filter: grayscale(10%);
      transition: filter .3s;
    }
    .profile-card:hover .profile-avatar img { filter: grayscale(0%); }
    .profile-name-big {
      font-size: 15px;
      font-weight: 800;
      letter-spacing: -.3px;
      margin-bottom: 3px;
    }
    .profile-role-big {
      font-family: var(--mono);
      font-size: 9.5px;
      color: var(--red);
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .profile-body {
      padding: 18px 20px 20px;
    }
    .profile-rows {
      display: flex;
      flex-direction: column;
      gap: 11px;
    }
    .profile-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12.5px;
      color: var(--sub);
      transition: color .18s;
    }
    .profile-row:hover { color: var(--white); }
    .profile-row svg {
      width: 13px; height: 13px;
      color: var(--muted);
      flex-shrink: 0;
      transition: color .18s;
    }
    .profile-row:hover svg { color: var(--red); }

    /* — Contact links — */
    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .ci {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 18px;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--r);
      color: inherit;
      transition: border-color .18s, background .18s;
    }
    .ci:hover { background: #181818; border-color: var(--border2); }
    .ci:hover .ci-icon svg { color: var(--red); }
    .ci-icon {
      width: 36px; height: 36px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ci-icon svg { width: 15px; height: 15px; color: var(--muted); transition: color .18s; }
    .ci-body { min-width: 0; }
    .ci-label {
      font-family: var(--mono);
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-bottom: 2px;
    }
    .ci-value { font-size: 13.5px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* — CTA card — */
    .cta-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
    }
    .cta-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--red), transparent);
    }
    .cta-card-glow {
      position: absolute;
      top: -60px; right: -60px;
      width: 220px; height: 220px;
      background: radial-gradient(circle, rgba(232,25,44,.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-badge {
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
    }
    .cta-title {
      font-size: clamp(20px, 2.5vw, 26px);
      font-weight: 800;
      letter-spacing: -.6px;
      line-height: 1.2;
      margin-bottom: 12px;
    }
    .cta-sub {
      font-size: 13.5px;
      color: var(--sub);
      line-height: 1.75;
      margin-bottom: 28px;
    }
    .cta-btns { display: flex; flex-direction: column; gap: 9px; }


    /* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
    footer {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 48px var(--px-desktop) 28px;
    }
    .footer-inner { max-width: 1160px; margin: 0 auto; }
    .footer-top {
      display: flex;
      justify-content: space-between;
      gap: 40px;
      padding-bottom: 36px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 24px;
      flex-wrap: wrap;
    }
    .footer-brand { max-width: 280px; }
    .footer-logo {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 12px;
    }
    .footer-logo svg { height: 22px; width: auto; color: var(--red); }
    .footer-logo span {
      font-family: 'Geometrico', var(--mono);
      font-size: 16px;
      font-weight: 900;
      font-style: italic;
      letter-spacing: .02em;
    }
    .footer-logo span em { color: var(--red); font-style: italic; }
    .footer-brand p { font-size: 13px; color: var(--sub); line-height: 1.7; }
    .footer-nav { display: flex; gap: 56px; flex-wrap: wrap; }
    .footer-col h4 {
      font-family: var(--mono);
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col ul a { font-size: 13px; color: var(--sub); transition: color .18s; }
    .footer-col ul a:hover { color: var(--white); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy { font-family: var(--mono); font-size: 11px; color: var(--muted); }
    .footer-legal { display: flex; gap: 18px; }
    .footer-legal a { font-size: 12px; color: var(--muted); transition: color .18s; }
    .footer-legal a:hover { color: var(--sub); }


    /* ══════════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════════ */
    .fade-up {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .5s ease, transform .5s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }


    /* ══════════════════════════════════════════
       RESPONSIVE — TABLET  (max 1024px)
    ══════════════════════════════════════════ */
    @media (max-width: 1024px) {
      :root {
        --px-desktop: var(--px-tablet);
        --sec: 72px;
      }

      nav { padding: 0 var(--px-tablet); }

      #hero { padding: 100px var(--px-tablet) 72px; }

      .metrics {
        grid-template-columns: repeat(3, 1fr);
      }
      .metric { padding: 24px var(--px-tablet); }

      .services-grid { grid-template-columns: repeat(2, 1fr); }

      .process-steps { grid-template-columns: repeat(2, 1fr); }

      /* Contact: 2 col on tablet — profile left, contact+cta right stacked */
      .contact-grid {
        grid-template-columns: 240px 1fr;
        grid-template-rows: auto auto;
      }
      .profile-card {
        grid-row: 1 / 3;
      }
      .contact-links { grid-column: 2; }
      .cta-card { grid-column: 2; }

      footer { padding: 40px var(--px-tablet) 24px; }
    }


    /* ══════════════════════════════════════════
       RESPONSIVE — MOBILE  (max 768px)
    ══════════════════════════════════════════ */
    @media (max-width: 768px) {
      :root { --sec: 60px; }

      /* nav */
      nav { padding: 0 var(--px-mobile); height: 60px; }
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .nav-drawer { display: flex; top: 60px; }

      /* hero */
      #hero { padding: 90px var(--px-mobile) 60px; min-height: auto; }
      .hero-title { letter-spacing: -1.5px; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; justify-content: center; }

      /* metrics — single col */
      .metrics { grid-template-columns: 1fr; }
      .metric {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px var(--px-mobile);
      }
      .metric:last-child { border-bottom: none; }

      /* sections */
      .section-wrap,
      .section-wrap-surface { padding: var(--sec) var(--px-mobile); }
      .platforms-bar { padding: 18px var(--px-mobile); }

      /* services — 1 col on small mobile, 2 col otherwise */
      .services-grid { grid-template-columns: 1fr; }

      /* process — 1 col */
      .process-steps { grid-template-columns: 1fr; }

      /* contact — full single column */
      .contact-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
      }
      .profile-card { grid-row: auto; }

      /* profile avatar stays compact on mobile */
      .profile-avatar { width: 52px; height: 52px; }

      /* footer */
      footer { padding: 40px var(--px-mobile) 24px; }
      .footer-top { flex-direction: column; gap: 28px; padding-bottom: 28px; }
      .footer-nav { gap: 28px; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

      .cta-card { padding: 28px 22px; }
    }

    /* tiny phones */
    @media (max-width: 420px) {
      .hero-title { font-size: 38px; letter-spacing: -1px; }
      .services-grid { gap: 1px; }
    }

    /* tablet only — keep services 2col */
    @media (min-width: 480px) and (max-width: 768px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .process-steps { grid-template-columns: repeat(2, 1fr); }
    }



/* WordPress integration helpers */
body.admin-bar nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar nav { top: 46px; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-right .nav-links {
  margin: 0;
}
.nav-links,
.nav-drawer-menu,
.footer-col .menu,
.footer-legal .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li,
.nav-drawer-menu li,
.footer-col .menu li,
.footer-legal .menu li {
  list-style: none;
}
.nav-drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer-menu a {
  font-size: 20px;
  font-weight: 700;
  color: var(--sub);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color .18s;
}
.nav-drawer-menu a:hover,
.nav-drawer-menu a:active { color: var(--white); }

.footer-col .menu {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-col .menu a {
  font-size: 13px;
  color: var(--sub);
  transition: color .18s;
}
.footer-col .menu a:hover { color: var(--white); }

.footer-legal .menu {
  display: flex;
  gap: 18px;
}
.footer-legal .menu a {
  font-size: 12px;
  color: var(--muted);
  transition: color .18s;
}
.footer-legal .menu a:hover { color: var(--sub); }

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.custom-logo {
  max-height: 32px;
  width: auto;
}

@media (max-width: 768px) {
  .nav-right { gap: 0; }
  .nav-right .nav-cta { display: none; }
  .footer-legal .menu { justify-content: center; flex-wrap: wrap; }
}
