  .lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
  }
  .lightbox.loading .lightbox__img {
    opacity: 0.3;
  }
  .lightbox.loading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spinLoader 0.8s linear infinite;
    z-index: 1001;
  }
  @keyframes spinLoader {
    to { transform: rotate(360deg); }
  }
  .lightbox__img {
    max-width: 90%;
    max-height: 85%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    animation: fadeInUp 0.4s ease;
    transition: opacity 0.3s ease;
  }
  .lightbox__close, .lightbox__prev, .lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    padding: 14px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
  }
  .lightbox__close {
    top: 30px;
    right: 30px;
  }
  .lightbox__prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
  }
  .lightbox__prev:hover {
    transform: translateY(-50%) scale(1.1);
  }
  .lightbox__next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
  }
  .lightbox__next:hover {
    transform: translateY(-50%) scale(1.1);
  }

  /* Photo counter - all devices */
  .lightbox__counter {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    background: rgba(0,0,0,0.5);
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 1001;
    letter-spacing: 0.5px;
  }

  /* Mobile lightbox improvements */
  @media (max-width: 768px) {
    .lightbox__img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 0;
      object-fit: contain;
    }

    .lightbox__close {
      top: 15px;
      right: 15px;
      width: 44px;
      height: 44px;
      font-size: 18px;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      z-index: 1002;
    }

    .lightbox__prev,
    .lightbox__next {
      width: 50px;
      height: 50px;
      font-size: 20px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
    }

    .lightbox__prev {
      left: 10px;
    }

    .lightbox__next {
      right: 10px;
    }

    /* Swipe hint for mobile */
    .lightbox::before {
      content: '← Свайп →';
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      z-index: 1001;
      animation: swipeHint 2s ease-in-out infinite;
    }

    @keyframes swipeHint {
      0%, 100% { opacity: 0.4; }
      50% { opacity: 0.8; }
    }

  }

  /* Touch-friendly lightbox */
  @media (hover: none) and (pointer: coarse) {
    .lightbox {
      touch-action: pan-y pinch-zoom;
    }

    .lightbox__img {
      touch-action: pinch-zoom;
      user-select: none;
      -webkit-user-select: none;
    }

    .lightbox__prev,
    .lightbox__next {
      opacity: 0.7;
    }

    .lightbox__prev:active,
    .lightbox__next:active,
    .lightbox__close:active {
      opacity: 1;
      transform: scale(0.95);
    }
  }
  .album-type {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
  }
  .album-type__item {
    animation: fadeInUp 0.8s ease-out;
    flex: 1;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    box-shadow: var(--shadow-sm);
  }
  .album-type__item.selected {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(212,165,116,0.3);
  }
  .album-type__item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
  .album-type__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.85);
  }
  .album-type__item.selected img,
  .album-type__item:hover img {
    filter: brightness(1);
  }
  .album-type__label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .album-type__item.selected .album-type__label {
    background: var(--accent);
  }
  :root{
    --bg:#fafafa; --text:#2d2d2d; --muted:#7a7a7a; --accent:#c9a871; --accent-hover:#b89660; --border:#e0e0e0;
    --radius:12px; --space:32px; --shadow-sm:0 2px 8px rgba(0,0,0,0.06); --shadow-md:0 4px 16px rgba(0,0,0,0.08); --shadow-lg:0 12px 40px rgba(0,0,0,0.12);
    --gradient-overlay:linear-gradient(135deg, rgba(201,168,113,0.08) 0%, rgba(255,255,255,0) 100%);
  }
  *{box-sizing:border-box}
  html,body{height:100%}
  html{scroll-behavior:smooth}
  body{
    margin:0; font-family:'Montserrat', -apple-system, system-ui, sans-serif;
    color:var(--text); background:var(--bg); -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
    transition:opacity .5s ease; font-size:16px; line-height:1.7; font-weight:400;
    display:flex; flex-direction:column; min-height:100vh;
  }
  main{flex:1 0 auto}
  footer{flex-shrink:0}
  html:not(.is-ready) body{opacity:0}
  img{max-width:100%; display:block; image-rendering:webkit-optimize-contrast}
  a{color:inherit; text-decoration:none; transition:all 0.3s ease}
  .container{width:min(1200px, 92vw); margin:0 auto}

  /* Header */
  .header{position:fixed; inset:0 0 auto 0; z-index:50; background:transparent; border-bottom:1px solid transparent; transition:all .35s ease}
  .header--solid{background:rgba(255,255,255,.95); backdrop-filter:saturate(180%) blur(20px); border-color:var(--border); box-shadow:var(--shadow-sm)}
  .header__row{display:flex; align-items:center; justify-content:space-between; padding:20px 0}
  .logo{font-family:'Playfair Display', serif; font-weight:600; font-size:32px; letter-spacing:.01em; transition:color 0.3s ease; color:#fff; text-shadow:0 2px 8px rgba(0,0,0,0.5)}
  .header--solid .logo{color:var(--text); text-shadow:none}
  .logo:hover{color:var(--accent)}
  .nav{display:flex; gap:28px; align-items:center}
  .nav__link{position:relative; padding:8px 0; text-transform:uppercase; font-size:12px; letter-spacing:.16em; font-weight:500; color:#fff; text-shadow:0 2px 8px rgba(0,0,0,0.5); transition:color 0.3s ease}
  .header--solid .nav__link{color:var(--text); text-shadow:none}
  .nav__link::after{content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background:transparent; transition:all .3s ease; border-radius:2px}
  .nav__link:hover::after{background:var(--accent)}
  .header__controls{display:flex; gap:10px; align-items:center}
  .lang{display:flex; gap:10px; align-items:center}
  .lang__btn{font-size:11px; padding:7px 12px; border:1px solid var(--border); border-radius:999px; cursor:pointer; background:#fff; transition:all 0.3s ease; font-weight:500}
  .lang__btn:hover{border-color:var(--accent); color:var(--accent); transform:translateY(-1px)}
  .lang__btn--active{background:var(--accent); color:#fff; border-color:var(--accent)}
  .burger{display:none; width:38px; height:38px; border:1px solid var(--border); border-radius:12px; align-items:center; justify-content:center; cursor:pointer; background:#fff; transition:all 0.3s ease}
  .burger:hover{border-color:var(--accent); box-shadow:var(--shadow-sm)}
  .burger span{width:20px; height:2px; background:var(--text); position:relative; display:block; transition:all 0.3s ease}
  .burger span::before,.burger span::after{content:""; position:absolute; left:0; right:0; height:2px; background:var(--text); transition:all 0.3s ease}
  .burger span::before{top:-6px} .burger span::after{top:6px}
  .nav--mobile{display:none; flex-direction:column; gap:8px; padding:12px 0}

  /* Hero */
  .hero{min-height:94vh; display:grid; place-items:self-end; position:relative; isolation:isolate; padding:0}
  .hero::before{content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.1) 70%, rgba(255,255,255,0)); z-index:0}
  .hero::after{content:""; position:absolute; inset:0; background:var(--hero) center/cover no-repeat; z-index:-1; transform:translateY(calc(var(--parallax,0)*-1px)); transition:transform .2s ease; filter:brightness(0.95)}
  .hero__inner{padding-top:100px; padding-bottom:60px; text-align:center; color:#fff; animation:fadeInUp 1s ease-out}
  .hero__kicker{letter-spacing:.2em; text-transform:uppercase; font-size:11px; color:rgba(255,255,255,0.95); margin-bottom:18px; font-weight:500; text-shadow:0 2px 8px rgba(0,0,0,0.3)}
  .hero__title{font-family:'Playfair Display', serif; font-weight:700; font-size:60px; line-height:1.1; margin:0 0 20px; letter-spacing:-.02em; text-shadow:0 4px 20px rgba(0,0,0,0.5); color:#fff}
  .hero__text{color:rgba(255,255,255,0.95); margin:0 auto 32px; font-size:16px; max-width:700px; line-height:1.7; text-shadow:0 2px 8px rgba(0,0,0,0.3)}
  .btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; padding:14px 28px; border-radius:999px; border:2px solid var(--accent); background:var(--accent); color:#fff; cursor:pointer; transition:all .3s ease; font-weight:600; font-size:15px; box-shadow:0 4px 16px rgba(212,165,116,0.3)}
  .btn:hover{transform:translateY(-2px); box-shadow:0 6px 24px rgba(212,165,116,0.4); background:var(--accent-hover)}
  .btn--ghost{background:transparent; color:var(--text); border-color:var(--accent); backdrop-filter:blur(10px)}
  .btn--ghost:hover{background:var(--accent); color:#fff; border-color:var(--accent)}
  .hero .btn--ghost{background:rgba(255,255,255,0.1); color:#fff; border-color:rgba(255,255,255,0.8)}
  .hero .btn--ghost:hover{background:rgba(255,255,255,0.2); border-color:#fff; color:#fff}

  /* Section */
  .section{padding:120px 0 100px; position:relative}
  .section::before{content:""; position:absolute; top:0; left:50%; transform:translateX(-50%); width:60px; height:4px; background:linear-gradient(90deg, transparent, var(--accent), transparent); border-radius:2px; opacity:0.6}
  .section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:40px}
  .section__title{font-family:'Playfair Display', serif; font-weight:600; font-size:52px; margin:0; letter-spacing:-.02em; color:var(--text); position:relative}
  .section__title::after{content:""; position:absolute; left:0; bottom:-8px; width:50px; height:3px; background:var(--accent); border-radius:2px}
  .section__sub{color:var(--muted); font-size:17px; line-height:1.6}

  /* Gallery → Masonry via CSS columns (no JS lib) */
  .grid{column-count:3; column-gap:20px}
  .grid__item{break-inside:avoid; margin:0 0 20px; border-radius:var(--radius); overflow:hidden; background:#f8f9fa; box-shadow:var(--shadow-sm); transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor:pointer; position:relative; max-height:500px}
  .grid__item::before{content:""; position:absolute; inset:0; background:linear-gradient(135deg, rgba(212,165,116,0.15) 0%, transparent 60%); opacity:0; transition:opacity 0.4s ease; z-index:1; pointer-events:none}
  .grid__item:hover::before{opacity:1}
  /* Image wrapper with blur placeholder */
  .img-wrapper{position:relative; width:100%; height:100%; overflow:hidden}
  .img-placeholder{position:absolute; inset:0; background:linear-gradient(135deg, #e8e4df 0%, #f5f2ed 50%, #e8e4df 100%); background-size:200% 200%; animation:shimmer 1.5s ease-in-out infinite}
  @keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
  .img-wrapper img{width:100%; height:100%; max-height:500px; object-fit:cover; display:block; transform:scale(1); transition:transform .7s cubic-bezier(0.4, 0, 0.2, 1), filter .7s ease, opacity .5s ease; filter:saturate(.95) brightness(1); opacity:0}
  .img-wrapper.loaded img{opacity:1}
  .img-wrapper.loaded .img-placeholder{opacity:0; transition:opacity .3s ease}
  .grid__item img{width:100%; height:100%; max-height:500px; object-fit:cover; display:block; transform:scale(1); transition:transform .7s cubic-bezier(0.4, 0, 0.2, 1), filter .7s ease; filter:saturate(.95) brightness(1)}
  .grid__item:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg)}
  .grid__item:hover img{transform:scale(1.08); filter:saturate(1.05) brightness(1.05)}
  .grid__item {
    animation: fadeInUp 0.8s ease-out backwards; animation-delay:calc(var(--item-index, 0) * 0.05s);
  }
  .grid__badge{display:none}

  /* Pricing → minimalist list */
  .cards{display:grid; gap:24px}
  .card{display:flex; flex-direction:column; gap:16px; padding:32px; border:2px solid var(--border); border-radius:var(--radius); background:#fff; transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position:relative; overflow:hidden}
  .card::before{content:""; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg, var(--accent), var(--accent-hover)); transform:scaleX(0); transition:transform 0.3s ease; transform-origin:left}
  .card:hover{border-color:var(--accent); box-shadow:var(--shadow-md)}
  .card:hover::before{transform:scaleX(1)}

  /* Remove all effects from pricing cards */
  #pricing .card{transition:none}
  #pricing .card::before{display:none}
  #pricing .card:hover{border-color:var(--border); box-shadow:none}
  .card__header{display:flex; justify-content:space-between; align-items:baseline; gap:18px}
  .card__title{font-family:'Playfair Display', serif; font-weight:600; font-size:24px; color:var(--text)}
  .price{font-family:'Playfair Display', serif; font-size:38px; margin-left:auto; color:var(--accent); font-weight:600}
  .features{display:flex; gap:12px; flex-wrap:wrap; padding:0; margin:0}
  .features li{list-style:none; color:var(--muted); font-size:15px; padding:6px 14px; background:#f8f9fa; border-radius:999px}

  /* About */
  .about{display:grid; grid-template-columns:1.1fr .9fr; gap:50px; align-items:center}
  .about__photo{border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-lg); position:relative}
  .about__photo::after{content:""; position:absolute; inset:0; background:linear-gradient(135deg, rgba(212,165,116,0.2) 0%, transparent 60%); pointer-events:none}
  .about__text{line-height:1.8; color:var(--muted); font-size:17px}
  .about__text p{margin:0 0 20px}

  /* Testimonials → editorial quotes */
  .review{border:2px solid var(--border); padding:32px; position:relative; border-radius:var(--radius); background:#fff; transition:all 0.3s ease; box-shadow:var(--shadow-sm); text-decoration:none; display:block; color:inherit}
  .review:hover{border-color:var(--accent); box-shadow:var(--shadow-md); transform:translateY(-4px); cursor:pointer}
  .review::before{content:'"'; position:absolute; left:24px; top:20px; font-family:"Cormorant Garamond", serif; font-size:64px; line-height:1; color:var(--accent); opacity:.2; z-index:0}
  .review .muted{font-size:17px; color:var(--text); position:relative; z-index:1; line-height:1.7}
  .review__name{margin-top:16px; color:var(--muted); font-weight:600; position:relative; z-index:1}
  .reviews{display:grid; grid-template-columns:repeat(3, 1fr); gap:32px}

  /* Process */
  .steps{display:grid; grid-template-columns:repeat(4, 1fr); gap:24px}
  .step{border:2px solid var(--border); border-radius:var(--radius); padding:28px; animation: fadeInUp 0.8s ease-out; transition:all 0.3s ease; background:#fff; position:relative; overflow:hidden}
  .step::before{content:""; position:absolute; top:0; left:0; width:4px; height:100%; background:var(--accent); transform:scaleY(0); transition:transform 0.3s ease; transform-origin:top}
  .step:hover{border-color:var(--accent); box-shadow:var(--shadow-md); transform:translateY(-4px)}
  .step:hover::before{transform:scaleY(1)}
  .step__num{font-family:"Cormorant Garamond", serif; font-size:36px; color:var(--accent); font-weight:600; margin-bottom:8px}
  .step__title{font-weight:600; font-size:18px; margin:0 0 8px; color:var(--text)}
  .step__desc{color:var(--muted); font-size:15px; line-height:1.6}

  /* Contact */
  .form{display:grid; grid-template-columns:1fr 1fr; gap:20px}
  .form .full{grid-column:1/-1}
  .input{width:100%; padding:14px 18px; border:2px solid var(--border); border-radius:12px; background:#fff; transition:all 0.3s ease; font-size:15px; font-family:inherit}
  .input:focus{outline:none; border-color:var(--accent); box-shadow:0 0 0 3px rgba(212,165,116,0.1)}
  .input::placeholder{color:#9ca3af}
  textarea.input{min-height:120px; resize:vertical}
  select.input{cursor:pointer}
  .checkbox{display:flex; align-items:flex-start; gap:12px}
  .checkbox input[type="checkbox"]{width:20px; height:20px; cursor:pointer; accent-color:var(--accent)}
  .note{font-size:14px; color:var(--muted); line-height:1.5}
  .alert{padding:16px 20px; border-radius:12px; margin-bottom:20px; animation: fadeIn 0.5s ease-in; font-size:15px}
  .alert--ok{background:#d1fae5; border:2px solid #10b981; color:#065f46}
  .alert--err{background:#fee2e2; border:2px solid #ef4444; color:#991b1b}

  /* Footer */
  .skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
  .skip-link:focus{left:12px;top:12px;width:auto;height:auto;background:var(--accent);color:#fff;padding:10px 16px;border-radius:10px;z-index:9999;box-shadow:var(--shadow-lg)}
  .footer{padding:80px 0 40px; border-top:2px solid var(--border); color:var(--muted); background:#fafafa; position:relative}
  .footer::before{content:""; position:absolute; top:0; left:50%; transform:translateX(-50%); width:100px; height:2px; background:var(--accent); margin-top:-2px}

  /* Reveal */
  .reveal{opacity:0; transform:translateY(30px); transition:opacity .4s cubic-bezier(0.4, 0, 0.2, 1), transform .4s cubic-bezier(0.4, 0, 0.2, 1)}
  .reveal--visible{opacity:1; transform:none}

  @keyframes fadeIn {
    from { opacity: 0; filter:blur(4px); }
    to { opacity: 1; filter:blur(0); }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); filter:blur(2px); }
    to { opacity: 1; transform: translateY(0); filter:blur(0); }
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @media (max-width: 1100px){
    .hero__title{font-size:48px}
    .section__title{font-size:42px}
  }
  @media (max-width: 980px){
    .about{grid-template-columns:1fr}
    .grid{column-count:2; column-gap:16px}
    .grid__item{margin:0 0 16px}
    .reviews{grid-template-columns:1fr; gap:24px}
    .steps{grid-template-columns:repeat(2, 1fr); gap:20px}
    .form{grid-template-columns:1fr}
    .nav{display:none}
    .burger{display:flex}
    .nav--mobile{display:none}
    .hero__title{font-size:42px}
    .hero__text{font-size:15px}
    .section{padding:80px 0 60px}
    .card{padding:24px}
    .step{padding:24px}
  }
  @media (max-width: 560px){
    /* Mobile slider for gallery */
    .grid{
      column-count:1;
      display:flex;
      overflow-x:auto;
      overflow-y:hidden;
      scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch;
      gap:16px;
      padding:0 0 20px 0;
      margin:0 -4vw;
      padding-left:4vw;
      padding-right:4vw;
      scrollbar-width:none; /* Firefox */
      -ms-overflow-style:none; /* IE/Edge */
    }
    .grid::-webkit-scrollbar{
      display:none; /* Chrome/Safari */
    }
    .grid__item{
      flex:0 0 85vw;
      scroll-snap-align:center;
      margin:0;
      max-height:70vh;
    }
    .grid__item img{
      max-height:70vh;
      width:100%;
      object-fit:cover;
    }
    /* Filter buttons mobile scroll */
    .filter{
      overflow-x:auto;
      justify-content:flex-start;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      -ms-overflow-style:none;
      margin:0 -4vw 24px;
      padding:0 4vw;
    }
    .filter::-webkit-scrollbar{
      display:none;
    }
    .filter__btn{
      white-space:nowrap;
      flex-shrink:0;
      padding:8px 16px;
      font-size:13px;
    }
    /* Scroll indicator hint */
    #portfolio::after{
      content:var(--swipe-hint, '← Свайпніть →');
      display:block;
      text-align:center;
      color:var(--muted);
      font-size:13px;
      margin-top:12px;
      opacity:0.7;
      animation:swipeHintPulse 2s ease-in-out infinite;
    }
    @keyframes swipeHintPulse{
      0%, 100%{opacity:0.5}
      50%{opacity:0.9}
    }
    .hero__title{font-size:36px; line-height:1.1}
    .hero__text{font-size:14px}
    .section__title{font-size:36px}
    .btn{padding:12px 24px; font-size:14px}
    .album-type{flex-direction:column}
  }
  @media (prefers-reduced-motion: reduce){
    *{animation:none !important; transition-duration:0.01ms !important}
    .reveal{opacity:1 !important; transform:none !important}
  }

  /* Portfolio filter buttons */
  .filter {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 40px;
      justify-content: center;
  }

  .filter__btn {
      padding: 10px 20px;
      border-radius: 999px;
      border: 2px solid var(--border);
      background: #fff;
      color: var(--text);
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
  }

  .filter__btn:hover {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
  }

  .filter__btn--active {
      background: var(--accent);
      color: #fff;
      border-color: var(--accent);
      box-shadow: var(--shadow-sm);
  }

  /* Pricing */
  .price{
      display:inline-flex;
      align-items:baseline;
      gap:8px;
      font-family:"Cormorant Garamond", serif;
      font-size:28px;
      letter-spacing:.01em;
      font-variant-numeric:lining-nums tabular-nums;
  }
  .price .currency{
      font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
      font-size:18px;
      line-height:1;
      transform:translateY(-1px);
      opacity:.9;
  }

    /* ═══════════════════════════════════════════════════════════════════ */
    /* ADVANCED FEATURES & ANIMATIONS */
    /* ═══════════════════════════════════════════════════════════════════ */

    /* Floating particles */
    .floating-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 1;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 50%;
      animation: floatParticle 15s infinite ease-in-out;
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    }

    @keyframes floatParticle {
      0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
      10% { opacity: 1; }
      50% { transform: translateY(-100vh) translateX(50px) scale(1.5); opacity: 0.8; }
      90% { opacity: 0.3; }
      100% { transform: translateY(-120vh) translateX(100px) scale(0.5); opacity: 0; }
    }

    /* Minimal custom cursor */
    .custom-cursor {
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform 0.15s ease, opacity 0.15s ease;
      opacity: 0.6;
    }

    .custom-cursor.cursor-hover {
      transform: translate(-50%, -50%) scale(1.8);
      opacity: 1;
    }

    /* Section floating elements */
    .section-float-element {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(212,165,116,0.08) 0%, transparent 70%);
      border-radius: 50%;
      top: 10%;
      right: -100px;
      animation: floatSectionElement 20s infinite ease-in-out;
      pointer-events: none;
      z-index: 0;
    }

    @keyframes floatSectionElement {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(-30px, -50px) rotate(90deg); }
      50% { transform: translate(-60px, 0) rotate(180deg); }
      75% { transform: translate(-30px, 50px) rotate(270deg); }
    }

    /* Gallery items stagger animation */
    .grid__item {
      animation-name: fadeInScale !important;
      animation-duration: 0.8s !important;
      animation-fill-mode: backwards !important;
    }

    .grid__item:nth-child(1) { animation-delay: 0.1s !important; }
    .grid__item:nth-child(2) { animation-delay: 0.15s !important; }
    .grid__item:nth-child(3) { animation-delay: 0.2s !important; }
    .grid__item:nth-child(4) { animation-delay: 0.25s !important; }
    .grid__item:nth-child(5) { animation-delay: 0.3s !important; }
    .grid__item:nth-child(6) { animation-delay: 0.35s !important; }
    .grid__item:nth-child(7) { animation-delay: 0.4s !important; }
    .grid__item:nth-child(8) { animation-delay: 0.45s !important; }
    .grid__item:nth-child(9) { animation-delay: 0.5s !important; }
    .grid__item:nth-child(10) { animation-delay: 0.55s !important; }
    .grid__item:nth-child(11) { animation-delay: 0.6s !important; }
    .grid__item:nth-child(12) { animation-delay: 0.65s !important; }
    .grid__item:nth-child(13) { animation-delay: 0.7s !important; }
    .grid__item:nth-child(14) { animation-delay: 0.75s !important; }
    .grid__item:nth-child(15) { animation-delay: 0.8s !important; }

    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
        filter: blur(10px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
      }
    }

    /* Glowing text effect - REDUCED intensity */
    .hero__title {
      animation: textGlow 4s ease-in-out infinite alternate;
    }

    @keyframes textGlow {
      0% { text-shadow: 0 3px 12px rgba(0,0,0,0.4); }
      100% { text-shadow: 0 3px 16px rgba(255,255,255,0.2), 0 0 25px rgba(212,165,116,0.2); }
    }

    /* Cards lift animation - SMOOTHED */
    .card, .review, .step {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card:hover, .review:hover, .step:hover {
      box-shadow: 0 12px 40px rgba(212,165,116,0.2);
    }

    /* No shadow effect on pricing cards */
    #pricing .card:hover {
      box-shadow: none;
    }

    /* Button ripple effect */
    .btn {
      position: relative;
      overflow: hidden;
    }

    .btn::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn:hover::after {
      width: 300px;
      height: 300px;
    }

    /* Section title underline - STATIC (no animation) */
    .section__title::after {
      /* animation removed - static underline looks cleaner */
    }

    /* Input focus glow */
    .input:focus {
      box-shadow: 0 0 0 3px rgba(212,165,116,0.1), 0 0 30px rgba(212,165,116,0.2);
      transform: translateY(-2px);
    }

    /* Pricing cards special hover */
    .price {
      transition: all 0.3s ease;
    }

    .card:hover .price {
      color: var(--accent-hover);
      text-shadow: 0 0 20px rgba(212,165,116,0.5);
    }

    /* Disable price hover effect in pricing section */
    #pricing .card:hover .price {
      color: var(--accent);
      text-shadow: none;
    }

    /* Navigation link glow on hover */
    .nav__link:hover {
      text-shadow: 0 0 15px rgba(212,165,116,0.6);
    }

    /* Image reveal with clip-path */
    .grid__item img {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      transition: clip-path 0.6s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .grid__item:hover img {
      clip-path: polygon(5% 5%, 95% 5%, 95% 95%, 5% 95%);
    }

    /* Logo pulse - DISABLED (was distracting) */
    .logo {
      /* animation removed for cleaner look */
    }

    /* Smooth scroll with momentum */
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }

    /* Background gradient animation */


    @keyframes backgroundFlow {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(-5%, -5%) rotate(120deg); }
      66% { transform: translate(5%, 5%) rotate(240deg); }
    }

    /* Hide custom cursor on mobile */
    @media (max-width: 980px) {
      .custom-cursor {
        display: none !important;
      }
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
      .particle, .section-float-element, .custom-cursor {
        display: none !important;
      }
      .hero__title, .logo {
        animation: none !important;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════ */
    /* MEGA ADVANCED ANIMATIONS - LEVEL 2 */
    /* ═══════════════════════════════════════════════════════════════════ */

    /* Loading Screen */
    .loading-screen {
      position: fixed;
      inset: 0;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99999;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }

    .loading-screen.loaded {
      opacity: 0;
      visibility: hidden;
    }

    .loader-content {
      text-align: center;
      position: relative;
    }

    .loader-ring {
      width: 150px;
      height: 150px;
      border: 3px solid transparent;
      border-top-color: var(--accent);
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -75px 0 0 -75px;
      animation: spinRing 1.5s linear infinite;
    }

    .loader-ring:nth-child(2) {
      width: 120px;
      height: 120px;
      margin: -60px 0 0 -60px;
      border-top-color: rgba(212,165,116,0.6);
      animation-duration: 2s;
    }

    .loader-ring:nth-child(3) {
      width: 90px;
      height: 90px;
      margin: -45px 0 0 -45px;
      border-top-color: rgba(212,165,116,0.3);
      animation-duration: 2.5s;
    }

    @keyframes spinRing {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .loader-text {
      font-family: "Cormorant Garamond", serif;
      font-size: 32px;
      color: var(--accent);
      margin-top: 100px;
      animation: pulse 2s ease-in-out infinite;
    }

    /* Morphing background blobs */
    .morphing-blob {
      position: fixed;
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      filter: blur(80px);
      opacity: 0.15;
      pointer-events: none;
      z-index: -1;
      animation: morphBlob 20s ease-in-out infinite;
    }

    .blob-1 {
      width: 500px;
      height: 500px;
      background: linear-gradient(135deg, var(--accent) 0%, #ffd89b 100%);
      top: -10%;
      left: -10%;
      animation-delay: 0s;
    }

    .blob-2 {
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      bottom: -5%;
      right: -5%;
      animation-delay: -7s;
    }

    .blob-3 {
      width: 450px;
      height: 450px;
      background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      top: 40%;
      right: 10%;
      animation-delay: -14s;
    }

    @keyframes morphBlob {
      0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
      }
      25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(20px, 40px) rotate(90deg);
      }
      50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(0, 80px) rotate(180deg);
      }
      75% {
        border-radius: 60% 40% 50% 70% / 40% 70% 50% 40%;
        transform: translate(-20px, 40px) rotate(270deg);
      }
    }

    /* Mouse gradient spotlight */
    body::after {
      content: '';
      position: fixed;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(212,165,116,0.08) 0%, transparent 70%);
      left: var(--mouse-x, 50%);
      top: var(--mouse-y, 50%);
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 1;
      transition: opacity 0.3s ease;
    }

    /* Character reveal animation */
    .char-reveal {
      display: inline-block;
      opacity: 0;
      animation: charFadeIn 0.5s ease forwards;
    }

    @keyframes charFadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px) rotate(-10deg);
      }
      to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
      }
    }

    /* Infinite marquee */
    .infinite-marquee {
      position: absolute;
      bottom: 30px;
      left: 0;
      right: 0;
      overflow: hidden;
      background: rgba(0,0,0,0.3);
      backdrop-filter: blur(10px);
      padding: 15px 0;
      z-index: 2;
    }

    .marquee-content {
      display: flex;
      gap: 60px;
      animation: marqueeScroll 30s linear infinite;
      white-space: nowrap;
    }

    .marquee-content span {
      font-size: 18px;
      color: #fff;
      font-weight: 500;
      text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Wave dividers */
    .wave-divider {
      position: absolute;
      top: -1px;
      left: 0;
      width: 100%;
      height: 120px;
      overflow: hidden;
      line-height: 0;
      z-index: 1;
    }

    .wave-divider svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 120px;
      fill: var(--bg);
      animation: wavesMove 15s ease-in-out infinite;
    }

    @keyframes wavesMove {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(-25px); }
    }

    /* 3D Card perspective - SMOOTHED */
    .card, .review, .step {
      transform-style: preserve-3d;
      transition: transform 0.2s ease-out;
    }

    /* Scroll-triggered zoom on images */
    .grid__item img {
      will-change: transform;
    }

    /* Price counter glow */
    .price[data-animated="true"] {
      animation: priceGlow 2s ease-in-out;
    }

    @keyframes priceGlow {
      0%, 100% { text-shadow: none; }
      50% { text-shadow: 0 0 30px var(--accent), 0 0 60px var(--accent); }
    }

    /* Enhanced button effects */
    .btn {
      box-shadow: 0 4px 16px rgba(212,165,116,0.3), inset 0 0 0 1px rgba(255,255,255,0.1);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .btn:hover {
      box-shadow: 0 8px 32px rgba(212,165,116,0.5), inset 0 0 0 2px rgba(255,255,255,0.2);
    }

    /* Gallery hover glow */
    .grid__item {
      position: relative;
    }

    .grid__item::after {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(45deg, var(--accent), transparent, var(--accent));
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.5s ease;
      z-index: -1;
      filter: blur(20px);
    }

    .grid__item:hover::after {
      opacity: 0.6;
    }

    /* Header blur on scroll */
    .header--solid {
      backdrop-filter: saturate(180%) blur(30px);
      box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }

    /* Footer glow line */
    .footer::before {
      box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
      animation: footerGlow 3s ease-in-out infinite;
    }

    @keyframes footerGlow {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    /* Text selection styling */
    ::selection {
      background: var(--accent);
      color: #fff;
      text-shadow: none;
    }

    /* Smooth scroll indicator */
    .section {
      scroll-margin-top: 80px;
    }

    /* Enhanced shadows on elevated elements */
    .card:hover,
    .review:hover,
    .step:hover {
      box-shadow:
        0 20px 60px rgba(212,165,116,0.25),
        0 0 80px rgba(212,165,116,0.1),
        inset 0 1px 0 rgba(255,255,255,0.1);
    }

    /* Input animations */
    .input {
      position: relative;
      background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    }

    .input:focus {
      background: #fff;
      animation: inputPulse 2s ease-in-out infinite;
    }

    @keyframes inputPulse {
      0%, 100% { box-shadow: 0 0 0 3px rgba(212,165,116,0.1), 0 0 30px rgba(212,165,116,0.2); }
      50% { box-shadow: 0 0 0 3px rgba(212,165,116,0.2), 0 0 40px rgba(212,165,116,0.3); }
    }

    /* Pricing card accent line */
    .card::before {
      background: linear-gradient(90deg, var(--accent), #ffd89b, var(--accent));
      background-size: 200% 100%;
      animation: shimmer 3s linear infinite;
    }

    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    /* Portfolio filter active state glow */
    .filter__btn--active {
      box-shadow: 0 4px 20px rgba(212,165,116,0.4), 0 0 40px rgba(212,165,116,0.2);
      animation: filterGlow 2s ease-in-out infinite;
    }

    @keyframes filterGlow {
      0%, 100% { box-shadow: 0 4px 20px rgba(212,165,116,0.4), 0 0 40px rgba(212,165,116,0.2); }
      50% { box-shadow: 0 6px 30px rgba(212,165,116,0.6), 0 0 60px rgba(212,165,116,0.3); }
    }

    /* Hide advanced animations on mobile */
    @media (max-width: 980px) {
      .morphing-blob, body::after, .wave-divider {
        display: none;
      }
      .marquee-content {
        font-size: 14px;
        gap: 40px;
      }
    }

    /* Reduced motion - disable ALL new animations */
    @media (prefers-reduced-motion: reduce) {
      .loading-screen, .morphing-blob, .infinite-marquee, .char-reveal {
        display: none !important;
      }
      body::after {
        display: none !important;
      }
      * {
        animation: none !important;
        transition: none !important;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════ */
    /* SOCIAL PROOF STATS SECTION */
    /* ═══════════════════════════════════════════════════════════════════ */

    .stats-section {
      background: linear-gradient(135deg, rgba(201,168,113,0.06) 0%, rgba(250,250,250,1) 100%);
      padding: 70px 0;
      border-top: 1px solid rgba(201,168,113,0.15);
      border-bottom: 1px solid rgba(201,168,113,0.15);
    }

    .stats-section::before {
      display: none !important;
      content: none !important;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .stat-item {
      padding: 20px 15px;
      position: relative;
    }

    .stat-item::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 1px;
      height: 50%;
      background: rgba(201,168,113,0.3);
    }

    .stat-item:last-child::after {
      display: none;
    }

    .stat-value {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 2px;
    }

    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }

    .stat-plus,
    .stat-percent {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 600;
      color: var(--accent);
    }

    .stat-label {
      font-size: 14px;
      color: var(--muted);
      margin-top: 12px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 500;
    }

    @media (max-width: 980px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .stat-item:nth-child(2)::after {
        display: none;
      }

      .stat-number {
        font-size: 48px;
      }

      .stat-plus,
      .stat-percent {
        font-size: 28px;
      }
    }

    @media (max-width: 560px) {
      .stats-section {
        padding: 60px 0;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }

      .stat-item {
        padding: 20px 10px;
      }

      .stat-item::after {
        display: none;
      }

      .stat-number {
        font-size: 40px;
      }

      .stat-plus,
      .stat-percent {
        font-size: 24px;
      }

      .stat-label {
        font-size: 12px;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════ */
    /* FAQ SECTION */
    /* ═══════════════════════════════════════════════════════════════════ */

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: #fff;
      border: 2px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: var(--accent);
      box-shadow: var(--shadow-md);
    }

    .faq-item[open] {
      border-color: var(--accent);
      box-shadow: var(--shadow-lg);
    }

    .faq-question {
      padding: 20px 24px;
      cursor: pointer;
      font-weight: 600;
      font-size: 17px;
      color: var(--text);
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
      transition: all 0.3s ease;
    }

    .faq-question::-webkit-details-marker {
      display: none;
    }

    .faq-question::after {
      content: '+';
      font-size: 24px;
      color: var(--accent);
      font-weight: 400;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 16px;
    }

    .faq-item[open] .faq-question::after {
      transform: rotate(45deg);
    }

    .faq-question:hover {
      color: var(--accent);
    }

    .faq-answer {
      padding: 0 24px 20px;
      font-size: 16px;
      line-height: 1.7;
      animation: faqFadeIn 0.3s ease;
    }

    @keyframes faqFadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 560px) {
      .faq-question {
        padding: 16px 20px;
        font-size: 15px;
      }
      .faq-answer {
        padding: 0 20px 16px;
        font-size: 14px;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════ */
    /* ACCESSIBILITY: Keyboard Focus Styles */
    /* ═══════════════════════════════════════════════════════════════════ */

    /* Global focus-visible styles */
    :focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
    }

    /* Buttons */
    .btn:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
      box-shadow: 0 0 0 6px rgba(212, 165, 116, 0.2);
    }

    /* Navigation links */
    .nav__link:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
      border-radius: 4px;
    }

    /* Filter buttons */
    .filter__btn:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
      box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.15);
    }

    /* Cards, reviews, steps */
    .card:focus-visible,
    .review:focus-visible,
    .step:focus-visible,
    .faq-item:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
    }

    /* Form inputs already have focus styles, enhance them */
    .input:focus-visible {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2), 0 0 20px rgba(212, 165, 116, 0.1);
    }

    /* Language buttons */
    .lang__btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* Burger menu */
    .burger:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    /* Gallery items */
    .grid__item:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 3px;
    }

    /* Messenger cards */
    .messenger-card:focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 2px;
    }

    /* Lightbox buttons */
    .lightbox__close:focus-visible,
    .lightbox__prev:focus-visible,
    .lightbox__next:focus-visible {
      outline: 3px solid #fff;
      outline-offset: 2px;
      box-shadow: 0 0 0 6px rgba(212, 165, 116, 0.4);
    }

    /* Skip link visible on focus */
    .skip-link:focus {
      left: 12px;
      top: 12px;
      width: auto;
      height: auto;
      background: var(--accent);
      color: #fff;
      padding: 12px 20px;
      border-radius: 8px;
      z-index: 99999;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      font-weight: 600;
    }

    /* ═══════════════════════════════════════════════════════════════════ */
    /* MOBILE: Enhanced Touch Targets (WCAG AAA: 44x44px minimum) */
    /* ═══════════════════════════════════════════════════════════════════ */

    @media (hover: none) and (pointer: coarse) {
      /* Buttons - larger touch area */
      .btn {
        padding: 16px 28px;
        min-height: 48px;
        font-size: 16px;
      }

      /* Form inputs */
      .input {
        padding: 16px 18px;
        min-height: 48px;
        font-size: 16px;
      }

      /* Filter buttons */
      .filter__btn {
        padding: 14px 20px;
        min-height: 44px;
        font-size: 15px;
      }

      /* Navigation links */
      .nav__link {
        padding: 12px 8px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
      }

      /* Language buttons */
      .lang__btn {
        padding: 10px 16px;
        min-height: 44px;
        min-width: 44px;
      }

      /* Burger menu */
      .burger {
        width: 48px;
        height: 48px;
      }

      /* FAQ questions */
      .faq-question {
        padding: 20px 24px;
        min-height: 56px;
      }

      /* Messenger cards */
      .messenger-card {
        padding: 24px 20px;
        min-height: 100px;
      }

      /* Lightbox buttons */
      .lightbox__close,
      .lightbox__prev,
      .lightbox__next {
        width: 56px;
        height: 56px;
        font-size: 24px;
      }

      /* Checkbox */
      .checkbox input[type="checkbox"] {
        width: 24px;
        height: 24px;
      }
    }

    /* ═══════════════════════════════════════════════════════════════════ */
    /* CONTACT MESSENGERS SECTION */
    /* ═══════════════════════════════════════════════════════════════════ */

    .contact-messengers {
      background: linear-gradient(135deg, rgba(201,168,113,0.03) 0%, rgba(255,255,255,0) 100%);
      position: relative;
    }

    .messenger-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 48px;
    }

    .messenger-card {
      background: #fff;
      border: 2px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 18px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .messenger-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--accent), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .messenger-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.12);
      border-color: transparent;
    }

    .messenger-card:hover::before {
      opacity: 0.05;
    }

    .messenger-card__icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      z-index: 1;
    }

    .messenger-card__icon svg {
      width: 24px;
      height: 24px;
      transition: all 0.4s ease;
    }

    .messenger-card--instagram .messenger-card__icon {
      background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
      box-shadow: 0 4px 16px rgba(225,48,108,0.3);
    }

    .messenger-card--instagram .messenger-card__icon svg {
      color: #fff;
    }

    .messenger-card--instagram:hover {
      border-color: #e1306c;
    }

    .messenger-card--telegram .messenger-card__icon {
      background: #0088cc;
      box-shadow: 0 4px 16px rgba(0,136,204,0.3);
    }

    .messenger-card--telegram .messenger-card__icon svg {
      color: #fff;
    }

    .messenger-card--telegram:hover {
      border-color: #0088cc;
    }

    .messenger-card--viber .messenger-card__icon {
      background: #665CAC;
      box-shadow: 0 4px 16px rgba(102,92,172,0.3);
    }

    .messenger-card--viber .messenger-card__icon svg {
      color: #fff;
    }

    .messenger-card--viber:hover {
      border-color: #665CAC;
    }

    .messenger-card:hover .messenger-card__icon {
      transform: scale(1.1) rotate(5deg);
    }

    .messenger-card__label {
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 4px;
      position: relative;
      z-index: 1;
      font-family: 'Playfair Display', serif;
    }

    .messenger-card__handle {
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 980px) {
      .messenger-links {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .messenger-card {
        padding: 24px 20px;
      }
    }

    @media (max-width: 560px) {
      .messenger-card__icon {
        width: 44px;
        height: 44px;
      }

      .messenger-card__icon svg {
        width: 22px;
        height: 22px;
      }

      .messenger-card__label {
        font-size: 15px;
      }

      .messenger-card__handle {
        font-size: 12px;
      }
    }
