@font-face { font-family: 'Noir Pro'; src: url('noir-pro-1.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-2.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-3.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-4.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-5.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-6.otf') format('opentype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-7.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Noir Pro'; src: url('noir-pro-8.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --black: #080808;
      --dark1: #101010;
      --dark2: #151515;
      --dark3: #1e1e1e;
      --white: #f5f5f0;
      --gold:  #c9a96e;
      --gold2: #e2c98a;
    }
    html { scroll-behavior: smooth; }
    body { background: var(--black); color: var(--white); font-family: 'Noir Pro', sans-serif; overflow: hidden; }

    /* ══ PRELOADER ═══════════════════════════════════════════════ */
    #preloader {
      position: fixed; inset: 0; z-index: 9999;
      background: var(--black);
      display: flex; align-items: center; justify-content: center;
      transition: opacity .5s ease .2s, visibility .5s ease .2s;
    }
    #preloader.hide { opacity: 0; visibility: hidden; }
    #preloader-logo {
      width: 220px;
      height: auto;
      animation: logoAppear 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    #preloader-video { 
      width: 220px; 
      height: auto;
      display: none;
    }
    @keyframes logoAppear {
      0% { opacity: 0; transform: scale(0.8); }
      60% { opacity: 1; }
      100% { opacity: 1; transform: scale(1); }
    }

    /* ══ FULLPAGE SCROLL ════════════════════════════════════════ */
    #fullpage {
      height: 100dvh;
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
      scroll-behavior: smooth;
    }
    .section {
      min-height: 100dvh;
      scroll-snap-align: start;
      scroll-snap-stop: always;
      position: relative;
      overflow: hidden;
    }

    /* ══ SCROLL DOTS ════════════════════════════════════════════ */
    #scroll-dots {
      position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
      z-index: 100; display: flex; flex-direction: column; gap: 10px;
    }
    .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: rgba(255,255,255,.15); cursor: pointer;
      border: 1px solid rgba(255,255,255,.45);
      transition: background .3s, transform .3s, border-color .3s;
    }
    .dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.4); }

    /* ══ NAV OVERLAY ════════════════════════════════════════════ */
    #hamburger {
      position: fixed; top: 24px; right: 28px; z-index: 500;
      width: 40px; height: 30px; cursor: pointer; display: flex; flex-direction: column; justify-content: space-between;
    }
    #hamburger span {
      display: block; height: 2px; background: var(--white);
      transition: transform .35s, opacity .35s, width .35s;
      transform-origin: center;
    }
    #hamburger.open span:nth-child(1) { transform: translateY(14px) rotate(45deg); }
    #hamburger.open span:nth-child(2) { opacity: 0; }
    #hamburger.open span:nth-child(3) { transform: translateY(-14px) rotate(-45deg); }

    #nav-overlay {
      position: fixed; inset: 0; z-index: 400;
      display: grid; grid-template-columns: 1fr 1fr;
      pointer-events: none; opacity: 0; visibility: hidden;
      transition: opacity .45s ease, visibility .45s ease;
    }
    #nav-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }

    .nav-img-panel { position: relative; overflow: hidden; }
    .nav-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity .5s ease;
    }
    .nav-bg.active { opacity: 1; }
    .nav-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }

    .nav-menu-panel {
      background: var(--dark1);
      display: flex; flex-direction: column; justify-content: center; padding: 60px;
    }
    .nav-list { list-style: none; }
    .nav-list li { border-bottom: 1px solid rgba(255,255,255,.07); }
    .nav-list a {
      display: flex; align-items: center; gap: 20px;
      color: var(--white); text-decoration: none;
      font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 300; letter-spacing: .04em;
      padding: 16px 0; transition: color .25s, padding-left .25s;
    }
    .nav-list a:hover { color: var(--gold); padding-left: 10px; }
    .nav-num { font-size: .75em; color: var(--gold); opacity: .7; font-weight: 400; min-width: 30px; }
    .nav-logo-wrap { margin-bottom: 48px; }
    .nav-logo-wrap img { height: 32px; opacity: .6; filter: brightness(1.2); }
    .nav-close-area { position: absolute; top: 24px; left: 24px; cursor: pointer; opacity: .5; transition: opacity .2s; }
    .nav-close-area:hover { opacity: 1; }

    /* ══ LOGO TOP-LEFT ══════════════════════════════════════════ */
    #site-logo {
      position: fixed; top: 22px; left: 28px; z-index: 500;
      height: 38px; width: auto; cursor: pointer;
      filter: brightness(1.1);
    }

    /* ══ SECTION 0 — HERO ═══════════════════════════════════════ */
    #section0 { background: var(--black); }
    .hero-swiper { position: absolute; inset: 0; }
    .swiper, .swiper-wrapper, .swiper-slide { height: 100%; }
    .swiper-slide-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transform: scale(1.06); transition: transform 7s ease;
    }
    .swiper-slide-active .swiper-slide-bg { transform: scale(1); }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(160deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.6) 100%);
    }
    .hero-content {
      position: absolute; bottom: 14vh; left: 8vw; max-width: 700px; z-index: 10;
    }
    .hero-tag {
      display: inline-block;
      font-size: .7rem; font-weight: 600; letter-spacing: .25em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
      background: rgba(0,0,0,.35); padding: 6px 14px; border-radius: 2px;
      border: 1px solid rgba(191,155,48,.35);
      backdrop-filter: blur(4px);
    }
    .hero-title {
      font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300;
      line-height: 1.05; letter-spacing: -.01em;
    }
    .hero-title strong { font-weight: 700; color: var(--gold); }
    .hero-sub {
      margin-top: 20px; font-size: clamp(.9rem, 1.4vw, 1.1rem);
      font-weight: 300; opacity: .75; letter-spacing: .04em; line-height: 1.7;
    }
    .hero-make-shake {
      margin-top: 20px; font-size: clamp(2rem, 4.5vw, 3.5rem);
      font-weight: 700; color: var(--gold); letter-spacing: .12em;
    }
    .hero-cta {
      margin-top: 36px; display: inline-flex; align-items: center; gap: 12px;
      background: var(--gold); color: #000; text-decoration: none;
      font-size: .85rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
      padding: 14px 32px; transition: background .25s, transform .25s;
    }
    .hero-cta:hover { background: var(--gold2); transform: translateY(-2px); }
    .hero-ig {
      display: inline-flex; align-items: center; gap: 10px;
      margin-top: 20px; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--white); text-decoration: none;
      border: 1px solid rgba(255,255,255,.55);
      padding: 9px 18px; background: rgba(0,0,0,.45);
      transition: border-color .2s, color .2s, background .2s;
    }
    .hero-ig:hover { border-color: var(--gold); color: var(--gold); background: rgba(0,0,0,.6); }
    .hero-ig i { font-size: 1.1rem; }
    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px;
      cursor: pointer; text-decoration: none;
    }
    .hero-scroll-text {
      font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
      color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,.9);
    }
    .hero-scroll-chevron {
      width: 28px; height: 16px; position: relative;
      filter: drop-shadow(0 1px 4px rgba(0,0,0,.9));
      animation: chevronBounce 1.8s ease infinite;
    }
    .hero-scroll-chevron::before,
    .hero-scroll-chevron::after {
      content: ''; position: absolute; top: 0;
      width: 16px; height: 2px; background: var(--white);
      border-radius: 1px;
    }
    .hero-scroll-chevron::before { left: 0; transform: rotate(35deg); transform-origin: left center; }
    .hero-scroll-chevron::after  { right: 0; transform: rotate(-35deg); transform-origin: right center; }
    @keyframes chevronBounce { 0%,100% { transform: translateY(0); opacity:.7; } 50% { transform: translateY(5px); opacity:1; } }
    .swiper-pagination-bullet {
      width: 9px !important; height: 9px !important;
      background: rgba(0,0,0,.3) !important;
      border: 2px solid rgba(255,255,255,.8) !important;
      opacity: 1 !important;
    }
    .swiper-pagination-bullet-active {
      background: var(--gold) !important;
      border-color: var(--gold) !important;
      width: 26px !important;
      border-radius: 2px !important;
    }

    /* ══ SECTION 1 — O NAS ══════════════════════════════════════ */
    #section1 {
      background: var(--dark1);
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .about-left { position: relative; overflow: hidden; }
    .about-left-bg {
      position: absolute; inset: 0;
      background: url('images/image-04.jpg') center/cover no-repeat;
      transform: scale(1.05); transition: transform .6s ease;
    }
    .section.in-view .about-left-bg { transform: scale(1); }
    .about-left-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,.2), rgba(0,0,10,.5));
    }
    .about-right {
      display: flex; align-items: center; justify-content: center;
      padding: 80px 60px; background: var(--dark1);
    }
    .about-right-inner { max-width: 500px; }
    .section-label {
      display: inline-block;
      font-size: .65rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 16px;
      background: rgba(191,155,48,.12); padding: 5px 12px; border-radius: 2px;
      border-left: 2px solid var(--gold);
    }
    .about-heading {
      font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.15;
      letter-spacing: -.01em;
    }
    .about-heading span { font-style: italic; color: var(--gold); font-weight: 400; }
    .about-divider {
      width: 48px; height: 1px; background: var(--gold); margin: 28px 0;
    }
    .about-text {
      font-size: clamp(.88rem, 1.2vw, 1rem); font-weight: 300; line-height: 1.8;
      opacity: .8; margin-bottom: 16px;
    }
    .about-list { list-style: none; margin-top: 24px; display: grid; gap: 10px; }
    .about-list li {
      display: flex; align-items: center; gap: 12px;
      font-size: .88rem; font-weight: 400; opacity: .85;
    }
    .about-list i { color: var(--gold); font-size: .6rem; }
    .btn-gold {
      margin-top: 36px; display: inline-flex; align-items: center; gap: 10px;
      background: transparent; border: 1px solid var(--gold); color: var(--gold);
      text-decoration: none; font-size: .78rem; font-weight: 600;
      letter-spacing: .18em; text-transform: uppercase; padding: 12px 28px;
      transition: background .25s, color .25s;
    }
    .btn-gold:hover { background: var(--gold); color: #000; }

    /* ══ SECTION 2 — USŁUGI ═════════════════════════════════════ */
    #section2 {
      background: var(--dark1);
      display: flex; flex-direction: column;
      padding: 80px 8vw 60px;
    }
    .services-header { margin-bottom: 50px; }
    .services-title {
      font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 300; line-height: 1.1;
    }
    .services-title span { font-style: italic; color: var(--gold); font-weight: 400; }
    .services-desc {
      margin-top: 14px; font-size: clamp(.85rem, 1.2vw, 1rem);
      font-weight: 300; opacity: .65; max-width: 560px; line-height: 1.7;
    }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      flex: 1;
    }
    .service-item {
      position: relative; overflow: hidden; min-height: 240px; cursor: pointer;
    }
    .service-item-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform .5s ease;
    }
    .service-item:hover .service-item-bg { transform: scale(1.06); }
    .service-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(170deg, rgba(10,10,10,.45) 0%, rgba(5,5,5,.72) 100%);
      transition: background .3s;
    }
    .service-item:hover .service-overlay {
      background: linear-gradient(170deg, rgba(10,10,10,.3) 0%, rgba(5,5,5,.6) 100%);
    }
    .service-num {
      position: absolute; top: 18px; left: 20px;
      font-size: .65rem; font-weight: 600; letter-spacing: .2em; color: var(--gold); opacity: .8;
    }
    .service-icon {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -70%);
      font-size: 2rem; color: var(--gold); opacity: .9;
      transition: transform .3s, opacity .3s;
    }
    .service-item:hover .service-icon { transform: translate(-50%, -80%); opacity: .6; }
    .service-name {
      position: absolute; bottom: 50px; left: 0; right: 0; text-align: center;
      font-size: clamp(.9rem, 1.3vw, 1.1rem); font-weight: 600; letter-spacing: .06em;
    }
    .service-text {
      position: absolute; bottom: 18px; left: 16px; right: 16px; text-align: center;
      font-size: .75rem; font-weight: 300; opacity: 0; line-height: 1.5;
      transition: opacity .3s, transform .3s; transform: translateY(8px);
    }
    .service-item:hover .service-text { opacity: .85; transform: translateY(0); }
    .service-arrow {
      position: absolute; bottom: 20px; right: 20px;
      font-size: .8rem; color: var(--gold); opacity: 0;
      transition: opacity .3s, transform .3s; transform: translateX(-6px);
    }
    .service-item:hover .service-arrow { opacity: 1; transform: translateX(0); }

    /* ══ SECTION 3 — REALIZACJE ═════════════════════════════════ */
    #section3 { background: var(--dark2); }
    .gallery-header {
      position: absolute; top: 60px; left: 8vw; z-index: 10;
    }
    .gallery-title {
      font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300;
    }
    .gallery-title span { font-style: italic; color: var(--gold); font-weight: 400; }
    .gallery-swiper-wrap {
      position: absolute; inset: 0; top: 160px;
      overflow: hidden;
    }
    #gallerySwiper { height: 100%; }
    #gallerySwiper .swiper-wrapper { align-items: center; }
    #gallerySwiper .swiper-slide {
      width: auto; height: calc(100% - 40px); padding: 0 4px;
    }
    .gallery-slide-img {
      height: 100%; width: 340px; overflow: hidden; position: relative;
    }
    .gallery-slide-img.wide { width: 520px; }
    .gallery-slide-inner {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      transition: transform .5s ease;
    }
    #gallerySwiper .swiper-slide:hover .gallery-slide-inner { transform: scale(1.04); }
    .gallery-slide-overlay {
      position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
      display: flex; align-items: flex-end; padding: 16px;
    }
    .gallery-slide-caption {
      font-size: .72rem; font-weight: 400; letter-spacing: .1em; opacity: .8;
    }
    .gallery-nav {
      position: absolute; bottom: 28px; right: 8vw; z-index: 10;
      display: flex; gap: 12px;
    }
    .gallery-btn {
      width: 48px; height: 48px;
      border: 1px solid rgba(255,255,255,.7);
      background: rgba(0,0,0,.55); color: var(--white); cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: border-color .2s, background .2s, color .2s; font-size: .9rem;
    }
    .gallery-btn:hover { border-color: var(--gold); background: rgba(0,0,0,.75); color: var(--gold); }

    /* ══ SECTION 4 — QUOTE ══════════════════════════════════════ */
    #section4 {
      background: var(--black);
      display: flex; align-items: center; justify-content: center;
    }
    .quote-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #0a0a0a 0%, #121210 50%, #0a0a0a 100%);
    }
    .quote-content {
      position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 40px;
    }
    .quote-mark { display: none; }
    .quote-text {
      position: relative; z-index: 1;
      font-size: clamp(3rem, 7vw, 6rem); font-weight: 700;
      line-height: 1.02; letter-spacing: -.02em; text-transform: uppercase;
      color: var(--white);
    }
    .quote-text em { font-style: italic; color: var(--gold); font-weight: 300; }
    .quote-author {
      position: relative; z-index: 1;
      margin-top: 32px; font-size: .8rem; font-weight: 400; letter-spacing: .3em;
      text-transform: uppercase; opacity: .45;
    }
    .quote-line {
      width: 1px; height: 60px; background: var(--gold); opacity: .3;
      margin: 24px auto 0;
    }

    /* ══ SECTION 5 — JAK DZIAŁAMY ═══════════════════════════════ */
    #section5 {
      background: var(--dark1);
      display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    }
    .process-big-num {
      display: none;
    }
    .process-left { padding: 80px 60px; position: relative; z-index: 2; }
    .process-heading {
      font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.15;
      margin-top: 16px;
    }
    .process-heading span { font-style: italic; color: var(--gold); font-weight: 400; }
    .process-intro {
      margin-top: 20px; font-size: clamp(.85rem, 1.2vw, 1rem);
      font-weight: 300; opacity: .7; line-height: 1.8; max-width: 420px;
    }
    .btn-lined {
      margin-top: 36px; display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid rgba(255,255,255,.25); color: var(--white);
      text-decoration: none; font-size: .78rem; font-weight: 400;
      letter-spacing: .16em; text-transform: uppercase; padding: 12px 26px;
      transition: border-color .25s, color .25s;
    }
    .btn-lined:hover { border-color: var(--gold); color: var(--gold); }
    .process-right { padding: 80px 60px 80px 40px; position: relative; z-index: 2; }
    .steps-list { list-style: none; display: grid; gap: 0; }
    .step-item {
      display: grid; grid-template-columns: 56px 1fr;
      border-bottom: 1px solid rgba(255,255,255,.07); padding: 24px 0;
      transition: padding-left .2s;
    }
    .step-item:hover { padding-left: 8px; }
    .step-num {
      font-size: .65rem; font-weight: 600; color: var(--gold);
      opacity: .7; letter-spacing: .15em; padding-top: 4px;
    }
    .step-title {
      font-size: clamp(.95rem, 1.3vw, 1.1rem); font-weight: 600; margin-bottom: 6px;
    }
    .step-desc {
      font-size: .82rem; font-weight: 300; opacity: .65; line-height: 1.6;
    }

    /* ══ SECTION 6 — KONTAKT ════════════════════════════════════ */
    #section6 {
      background: var(--dark2);
      display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    }
    .contact-left { padding: 80px 60px; }
    .contact-heading {
      font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 300; line-height: 1.1;
    }
    .contact-heading span { font-style: italic; color: var(--gold); font-weight: 400; }
    .contact-info { margin-top: 40px; display: grid; gap: 20px; }
    .contact-line { display: flex; align-items: flex-start; gap: 16px; }
    .contact-icon {
      width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-size: .85rem; flex-shrink: 0;
    }
    .contact-detail-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; opacity: .45; }
    .contact-detail-value { font-size: 1rem; font-weight: 400; margin-top: 2px; }
    .contact-detail-value a { color: var(--white); text-decoration: none; }
    .contact-detail-value a:hover { color: var(--gold); }
    .contact-social { margin-top: 36px; display: flex; gap: 14px; }
    .social-btn {
      height: 40px; border: 1px solid rgba(255,255,255,.18);
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--white); text-decoration: none; font-size: .9rem;
      transition: border-color .2s, color .2s; padding: 0 16px; gap: 10px;
    }
    .social-btn.social-ig {
      font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
      padding: 0 20px; height: 44px;
      border-color: rgba(255,255,255,.35);
    }
    .social-btn.social-ig i { font-size: 1.05rem; }
    .social-btn:hover { border-color: var(--gold); color: var(--gold); }
    .contact-right { padding: 80px 60px 80px 20px; }
    .contact-form { display: grid; gap: 16px; }
    .form-group { position: relative; }
    .form-group label {
      display: block; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
      opacity: .5; margin-bottom: 6px;
    }
    .form-group input,
    .form-group textarea {
      width: 100%; background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.12);
      color: var(--white); font-family: 'Noir Pro', sans-serif;
      font-size: .9rem; padding: 12px 14px;
      transition: border-color .2s; outline: none;
    }
    .form-group textarea { resize: none; height: 110px; }
    .form-group input:focus,
    .form-group textarea:focus { border-color: var(--gold); }
    .btn-submit {
      background: var(--gold); color: #000; border: none;
      font-family: 'Noir Pro', sans-serif; font-size: .78rem; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      padding: 14px 32px; cursor: pointer; width: 100%;
      transition: background .25s, transform .2s;
    }
    .btn-submit:hover { background: var(--gold2); transform: translateY(-1px); }

    /* ══ FOOTER LINE ════════════════════════════════════════════ */
    .footer-line {
      position: absolute; bottom: 20px; left: 0; right: 0;
      text-align: center; font-size: .65rem; letter-spacing: .18em;
      text-transform: uppercase; opacity: .25;
    }

    /* ══ IN-VIEW ANIMATIONS ═════════════════════════════════════ */
    .fade-up {
      opacity: 0; transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .section.in-view .fade-up { opacity: 1; transform: translateY(0); }
    .fade-up:nth-child(2) { transition-delay: .1s; }
    .fade-up:nth-child(3) { transition-delay: .2s; }
    .fade-up:nth-child(4) { transition-delay: .3s; }
  
    /* ══ MOBILE RESPONSIVE ════════════════════════════════════════ */
    @media (max-width: 768px) {
      .hero-content { left: 40px; right: 40px; max-width: none; }
      .hero-tag { font-size: clamp(.8rem, 2.5vw, 1rem); }
      .hero-title { font-size: clamp(1.5rem, 5vw, 2.5rem); }
      #preloader-video { width: clamp(150px, 40vw, 220px); height: auto; }
      #section1, #section2, #section3, #section5, #section6 { grid-template-columns: 1fr !important; }
      .about-left, .about-right, .services-left, .services-right, .gallery-left, .gallery-right, .process-left, .process-right, .contact-left, .contact-right { padding: 40px 24px !important; }
      .process-big-num { font-size: clamp(4rem, 12vw, 8rem) !important; }
      .step-item { grid-template-columns: 40px 1fr !important; }
      .step-num { font-size: .6rem; }
      .step-title { font-size: clamp(.85rem, 2vw, 1rem); }
      .contact-heading { font-size: clamp(1.5rem, 4vw, 2rem) !important; }
      .contact-info { gap: 16px !important; }
      .gallery-slide-img { max-height: 50vh !important; }
      .section-label { font-size: clamp(1rem, 3vw, 1.4rem); margin-bottom: 20px; }
      .hero-cta, .hero-ig, .btn-lined { font-size: .7rem; padding: 10px 16px; }
      .social-btn { height: 36px; font-size: .7rem; padding: 0 12px; }
    }
    @media (max-width: 480px) {
      .hero-content { left: 20px; right: 20px; }
      .hero-tag { font-size: .7rem; }
      .hero-title { font-size: clamp(1.2rem, 6vw, 2rem); }
      .hero-sub { font-size: .85rem; line-height: 1.6; }
      #preloader-video { width: clamp(120px, 50vw, 200px); height: auto; }
      .about-left, .about-right, .services-left, .services-right, .gallery-left, .gallery-right, .process-left, .process-right, .contact-left, .contact-right { padding: 30px 16px !important; }
      .process-heading, .contact-heading { font-size: clamp(1.2rem, 4vw, 1.8rem) !important; }
      .section-label { font-size: .9rem; }
      .gallery-slide-img { max-height: 40vh !important; }
    }