/* =========================================
   ORC@STORM - MOBILE OVERRIDES
   Keeps desktop intact, only improves mobile
========================================= */

.mobile-menu-toggle{
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216,210,196,0.18);
  border-radius: 14px;
  background: rgba(0,0,0,0.96);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.mobile-menu-toggle:hover{
  border-color: rgba(216,210,196,0.28);
}

.mobile-menu-toggle:active{
  transform: scale(0.97);
}

.mobile-menu-toggle:focus-visible{
  outline: 2px solid rgba(216,210,196,0.5);
  outline-offset: 2px;
}

.mobile-menu-toggle span{
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform 0.22s ease,
    opacity 0.18s ease,
    width 0.2s ease;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(2){
  opacity: 0;
}

.site-header.menu-open .mobile-menu-toggle span:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 980px){

  .header-inner{
    padding: 16px 20px;
    gap: 18px;
  }

  .brand img{
    height: 92px;
    width: auto;
  }

  .hero{
    min-height: 84vh;
  }

  .hero-content{
    padding: 150px 20px 60px;
  }

  .hero-title{
    max-width: 700px;
    font-size: clamp(34px, 7vw, 56px);
  }

  .hero-lead{
    max-width: 580px;
    font-size: 16px;
  }

  .section-inner{
    padding: 70px 20px;
  }

  .about-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-media{
    order: 2;
  }

  .about-copy{
    order: 1;
  }

  .about-image{
    height: 320px;
  }

  .service-banner{
    min-height: 240px;
  }

  .service-inner{
    padding: 40px 20px;
  }

  .service-title{
    font-size: 30px;
  }

  .contact-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-inner{
    padding: 36px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-center,
  .footer-right{
    align-items: flex-start;
  }

  .footer-address{
    text-align: left;
  }
}

/* =========================================
   MOBILE NAV + PHONE LAYOUT
========================================= */

@media (max-width: 760px){

  html,
  body{
    overflow-x: hidden;
  }

  html{
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
  }

  body{
    overflow-wrap: break-word;
  }

  img,
  svg,
  video,
  canvas,
  iframe{
    max-width: 100%;
    height: auto;
  }

  .site-header{
    background: linear-gradient(
      to bottom,
      rgba(11,11,11,0.96),
      rgba(11,11,11,0.38)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header-inner{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand{
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .brand img{
    height: 72px;
    width: auto;
    max-width: min(58vw, 230px);
    object-fit: contain;
  }

  .mobile-menu-toggle{
    display: inline-flex;
    margin-left: auto;
  }

  .nav{
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 14px 10px;
    margin-top: 6px;
    border-top: 1px solid rgba(216,210,196,0.10);
    border-radius: 18px;
    background:
      linear-gradient(
        180deg,
        rgba(7,7,7,0.98) 0%,
        rgba(0,0,0,0.98) 100%
      );
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  }

  .site-header.menu-open .nav{
    display: flex;
  }

  .nav > a,
  .nav > .nav-item,
  .nav > .btn-contact{
    width: 100%;
  }

  .nav a{
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 1.4px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }

  .nav a::after{
    bottom: 8px;
  }

  .nav > a,
  .nav > .nav-item > a{
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav .btn-contact{
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    padding: 14px 18px;
    min-height: 50px;
  }

  .nav-item{
    width: 100%;
    display: block;
  }

  .nav-item > a{
    width: 100%;
  }

  .dropdown{
    position: static;
    transform: none !important;
    min-width: 0;
    width: 100%;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    overflow: hidden;
    border: 1px solid rgba(216,210,196,0.10);
    border-radius: 14px;
    box-shadow: none;
    background: rgba(255,255,255,0.02);
  }

  .nav-item.open .dropdown{
    display: block;
  }

  .dropdown::before{
    display: none;
  }

  .dropdown-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .dropdown a{
    padding: 12px 12px;
    min-height: 46px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.015);
  }

  .header-spacer{
    height: 94px;
  }

  .hero{
    min-height: auto;
  }

  .hero-media{
    inset: 0;
  }

  .hero-leftfade{
    background: linear-gradient(
      to top,
      rgba(11,11,11,0.97) 0%,
      rgba(11,11,11,0.82) 28%,
      rgba(11,11,11,0.40) 62%,
      rgba(11,11,11,0.12) 100%
    );
  }

  .hero-topfade{
    background: linear-gradient(
      to bottom,
      rgba(11,11,11,0.97) 0%,
      rgba(11,11,11,0.74) 16%,
      rgba(11,11,11,0.18) 36%,
      rgba(11,11,11,0) 52%
    );
  }

  .hero-content{
    padding: 118px 16px 44px;
  }

  .hero-accent{
    width: 64px;
    margin-bottom: 14px;
  }

  .hero-title{
    max-width: 100%;
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.04;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    text-wrap: balance;
  }

  .hero-lead{
    max-width: 100%;
    font-size: 15px;
    line-height: 1.68;
    letter-spacing: 0.15px;
    margin-bottom: 24px;
  }

  .hero-actions{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .hero .btn{
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 14px 18px;
    justify-content: center;
  }

  .trust-row{
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }

  .trust-pill{
    flex: 1 1 auto;
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 1px;
    text-align: center;
  }

  .section-inner{
    padding: 56px 16px;
  }

  .section-kicker{
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 2px;
  }

  .section-title{
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.1;
    margin-bottom: 14px;
    text-wrap: balance;
  }

  .section-text{
    font-size: 15px;
    line-height: 1.72;
    letter-spacing: 0.15px;
  }

  .about-grid{
    gap: 24px;
  }

  .about-image{
    height: 250px;
    border-radius: 18px;
    background-position: center;
    background-size: cover;
  }

  .about-points{
    gap: 12px;
  }

  .about-point{
    padding-left: 12px;
  }

  .point-title{
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 1.3px;
  }

  .point-text{
    font-size: 14px;
    line-height: 1.65;
  }

  .services-list{
    gap: 16px;
  }

  .service-banner{
    min-height: 220px;
    border-radius: 18px;
    overflow: hidden;
  }

  .service-inner{
    padding: 30px 16px;
  }

  .service-content::before{
    width: 58px;
    margin-bottom: 14px;
  }

  .service-title{
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 10px;
    text-wrap: balance;
  }

  .service-text{
    font-size: 14px;
    line-height: 1.65;
  }

  .contact-hero{
    min-height: 270px;
    align-items: flex-end;
  }

  .contact-hero-inner{
    padding-top: 90px;
    padding-bottom: 36px;
  }

  .contact-grid{
    gap: 18px;
  }

  .contact-info,
  .contact-form-wrap{
    padding: 20px 16px;
    border-radius: 18px;
  }

  .contact-info-list{
    gap: 16px;
  }

  .contact-info-value{
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
  }

  .form-row{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-field label{
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 1.4px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea{
    width: 100%;
    min-height: 50px;
    font-size: 16px;
    line-height: 1.4;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .form-field textarea{
    min-height: 160px;
    resize: vertical;
  }

  .form-submit-btn{
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 14px 18px;
  }

  .map-wrap{
    border-radius: 18px;
    overflow: hidden;
  }

  .map-wrap iframe{
    width: 100%;
    height: 320px;
    display: block;
  }

  .footer-inner{
    padding: 30px 16px;
    gap: 18px;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right{
    width: 100%;
    align-items: center;
  }

  .footer-links{
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-meta,
  .footer-links a,
  .footer-address{
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.9px;
  }

  .footer-address{
    text-align: center;
  }

  .footer-phone{
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 1.3px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer-contact-btn{
    width: 100%;
    max-width: 260px;
    min-height: 48px;
    text-align: center;
    justify-content: center;
    padding: 12px 16px;
  }
}

/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 420px){

  .header-inner{
    padding: 12px 14px;
  }

  .brand img{
    height: 62px;
    max-width: 56vw;
  }

  .mobile-menu-toggle{
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .header-spacer{
    height: 86px;
  }

  .nav{
    padding: 10px 12px 8px;
    border-radius: 16px;
  }

  .hero-content{
    padding: 108px 14px 40px;
  }

  .hero-title{
    font-size: clamp(24px, 10vw, 34px);
    line-height: 1.05;
  }

  .hero-lead{
    font-size: 14px;
  }

  .trust-pill{
    padding: 7px 9px;
    font-size: 9px;
    letter-spacing: 0.8px;
  }

  .section-inner{
    padding: 48px 14px;
  }

  .section-title{
    font-size: clamp(22px, 8vw, 28px);
  }

  .about-image{
    height: 220px;
  }

  .service-inner{
    padding: 26px 14px;
  }

  .service-title{
    font-size: 21px;
  }

  .contact-info,
  .contact-form-wrap{
    padding: 18px 14px;
  }

  .map-wrap iframe{
    height: 260px;
  }

  .footer-inner{
    padding: 26px 14px;
  }
}

/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce){

  html{
    scroll-behavior: auto;
  }

  .mobile-menu-toggle,
  .mobile-menu-toggle span{
    transition: none !important;
  }
}