:root{
  --bg: #070707;
  --panel: rgba(255,255,255,.06);
  --line: rgba(255,255,255,.14);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --shadow: 0 18px 70px rgba(0,0,0,.70);
  --radius: 16px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
	padding-top: 70px; /* headera augstums */
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: .2px;
}

a{ color: var(--text); text-decoration:none; }
a:hover{ opacity:.9; }
img{ display:block; max-width:100%; }

.wrap{
  width:min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.sub{ color: var(--muted); line-height:1.7; margin: 10px 0 0; }
.small{ font-size: 12px; }

/* Header */
.header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(7,7,7,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.nav{
  display:flex;
  align-items:center;
  gap: 16px;
}
.nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:11px 16px;
  border-radius:999px;

  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);

  color:var(--muted);
  font-size:13px;
  letter-spacing:.06em;
  text-decoration:none;

  transition:all .25s ease;
}

/* hover */
.nav a:hover{
  border-color:#d4af37;
  color:#d4af37;
  background:transparent;
}

/* aktīvā lapa */
.nav a.is-active{
  border-color:#d4af37;
  background:#d4af37;
  color:#000;
}

/* hover aktīvajai */
.nav a.is-active:hover{
  background:#e6c15a;
}

.lang{ display:flex; gap:8px; }
.lang__btn{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  cursor:pointer;
}
.lang__btn.is-active{
  color: var(--text);
  background: rgba(255,255,255,.10);
}
.brand{
  display: flex;
  align-items: center;
}

.logo{
  height: 45px;       /* vari mainīt uz 32px / 40px pēc vajadzības */
  width: auto;
  display: block;
  filter: brightness(1); /* ja logo ir tumšs – var palielināt */
}
/* Hero */
.hero{
  padding: 10px 0 26px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero h1{
  margin: 0;
  font-size: clamp(20px, 4vw, 30px);
  line-height: 1.05;
  letter-spacing: .02em;
}
.hero__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero__actions2{ 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 16px;
  border-radius:999px;

  border:1px solid #d4af37;
  background:transparent;

  color:#d4af37;
  font-size:13px;
  letter-spacing:.06em;
  cursor:pointer;

  transition:all .25s ease;
  text-decoration:none;
}

.btn:hover{
  background:#d4af37;
  color:#fff;
}
.btn--ghost{
  background: transparent;
  box-shadow:none;
}
.btn--ghost:hover{ background: rgba(255,255,255,.06); }

/* Sections */
.section{ padding: 34px 0 60px; }
.section--tight{ padding: 28px 0 60px; }
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.section__head h2{
  margin:0;
  font-size: 20px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Portfolio gallery — premium editorial layout */
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.shot{
  position: relative;
  margin:0;
  min-height: 360px;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.03);
  cursor: zoom-in;
  box-shadow: 0 22px 70px rgba(0,0,0,.38);
  isolation: isolate;
}

.shot:nth-child(6n + 1){ grid-column: span 7; min-height: 620px; }
.shot:nth-child(6n + 2){ grid-column: span 5; min-height: 620px; }
.shot:nth-child(6n + 3){ grid-column: span 4; min-height: 430px; }
.shot:nth-child(6n + 4){ grid-column: span 4; min-height: 430px; }
.shot:nth-child(6n + 5){ grid-column: span 4; min-height: 430px; }
.shot:nth-child(6n + 6){ grid-column: span 12; min-height: 640px; }

.shot img{
  width:100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transform: scale(1.01);
  transition: transform .5s ease, filter .5s ease;
}

.shot:hover img{
  transform: scale(1.055);
  filter: none;
}

.shot::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.12) 34%, rgba(0,0,0,0) 70%);
  opacity:.9;
  pointer-events:none;
  z-index:1;
}

.shot figcaption{
  position:absolute;
  left:18px;
  right:18px;
  bottom:16px;
  z-index:2;
  padding: 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  border-top: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.75);
}
.about__grid{
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.about__photo{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  pointer-events: none; /* neļauj klikāt/zoomot */
}

.about__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
/* ===== About: 3 blocks (photo / text / video) ===== */
.about__media{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  aspect-ratio: 9 / 16;
  width: 100%;
}

.about__photo{ pointer-events: none; }

.about__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.about__videoEl{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;          /* 1080x1920 smuki ieguļ */
}

/* Paslēpt full-screen pogu (Chrome/Safari UI, kur iespējams) */
.about__videoEl::-webkit-media-controls-fullscreen-button{
  display: none !important;
}

/* Mobile: sakrāmējam stabiņā */
@media (max-width: 700px){
  .about__grid{
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .about__media{
    max-width: 220px;
    margin: 0 auto;
  }
}
/* clickable video */
.about__videoEl{
  cursor: pointer;
}

/* play overlay */
.about__video{
  position: relative;
}

.about__video::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;

  background-image: url("video/play-button.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  pointer-events: none;

  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}

/* hover efekts */
.about__video:hover::after{
  transform: translate(-50%, -50%) scale(1.06); /* ~5px lielāks */
  filter: brightness(1.25);
}

/* kad video spēlē */
.about__video.playing::after{
  opacity: 0;
}
/* Teksts */
.about__content h2{
  margin-bottom: 14px;
}

/* Mobile */
@media (max-width: 700px){
  .about__grid{
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .about__photo{
    max-width: 220px;
    margin: 0 auto;
  }
}


/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 28px 0 18px;
}

.footer__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.footer__logo .logo{
  height: 46px;
  width: auto;
  display: block;
}

.footer__contact-buttons{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex-wrap:nowrap;
  width:100%;
}

.footer-contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  padding:12px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background:rgba(255,255,255,.045);
  color:var(--text);
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:none;
  white-space:nowrap;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.footer-contact-btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.32);
  opacity:1;
}

.footer-contact-btn--telegram{
  border-color:#2AABEE;
  background:rgba(42,171,238,.10);
}

.footer-contact-btn--telegram:hover{
  background:#2AABEE;
  color:#000;
}

.footer-contact-btn svg{
  width:18px;
  height:18px;
  fill:currentColor;
  flex:0 0 auto;
}

.footer__copyright{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  text-align:center;
  padding-top:4px;
}

/* old footer compatibility */
.footer__row--3{display:flex;}
.footer__col--left,.footer__col--center,.footer__col--right{justify-self:center;}
.social{display:flex;gap:10px;}
.social__a{width:40px;height:40px;border-radius:999px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.04);}
.social__a svg{width:18px;height:18px;fill:rgba(255,255,255,.85);}

@media (max-width:700px){
  .footer__contact-buttons{
    flex-direction:column;
    gap:10px;
  }
  .footer-contact-btn{
    width:100%;
    max-width:330px;
  }
}

/* Form */
.formhead h1{
  margin: 0;
  font-size: 28px;
  letter-spacing: .02em;
}
.form{
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  max-width: 720px;
}
.field{
  display:block;
  margin-bottom: 12px;
}
.field > span, .field legend{
  display:block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--muted);
}
input{
  width:100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline:none;
}
input:focus{
  border-color: rgba(255,255,255,.28);
  background: rgba(0,0,0,.33);
}
input::placeholder{ color: rgba(255,255,255,.35); }

.field--radio{
  border: 0;
  padding: 0;
  margin: 0 0 12px;
}
.radio{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  margin-bottom: 10px;
}
.radio input{ width:auto; }

.captcha{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.captcha__q{
  

 
  padding: 10px 12px;
  color: var(--text);
  flex: 1;
  font-weight: 600;
  letter-spacing: .06em;
}
.captcha__reload{
  white-space: nowrap;
}

.form__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
/* ===== Genre radio style ===== */

.field--radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field--radio .radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s ease;
}

.field--radio .radio:hover {
  border-color: #999;
  background: #202020;
}

.field--radio input[type="radio"] {
  accent-color: #000;
  width: 18px;
  height: 18px;
}

.field--radio input[type="radio"]:checked + span {
  font-weight: 600;
}
/* ===== Textarea (Comments) ===== */
textarea{
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: var(--text);
  outline: none;
  resize: vertical;          /* ļauj tikai uz augšu/lejā */
  min-height: 110px;         /* lai uzreiz izskatās “smuki” */
  line-height: 1.5;
  font-family: inherit;      /* lai fonts sakrīt ar pārējo */
}

textarea:focus{
  border-color: rgba(255,255,255,.28);
  background: rgba(0,0,0,.33);
}

textarea::placeholder{
  color: rgba(255,255,255,.35);
}
/* Lightbox */
/* ===== Lightbox (iOS safe) ===== */
.no-scroll { overflow: hidden; }

.lightbox{
  position: fixed;
  left: 0; top: 0;
  width: 100vw;

  /* iOS fix: izmanto JS iestatītu augstumu, fallback uz 100dvh/100vh */
  height: var(--lbvh, 100dvh);
  min-height: var(--lbvh, 100dvh);

  display: none;
  align-items: center;
  justify-content: center;

  background: #000;           /* OPAQUE, lai neredz fonu apakšā */
  z-index: 9999;

  overflow: hidden;
  padding: 0;
}

.lightbox.is-open{ display: flex; }

.lightbox__img{
  width: 100vw;
  max-width: 100vw;

  /* lai bilde neuzkāpj zem X un lai nav “par augstu” */
  max-height: calc(var(--lbvh, 100dvh) - 110px);
  height: auto;

  object-fit: contain;

  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

.lightbox__caption{
  position: fixed;
  left: 0; right: 0;
  bottom: calc(10px + env(safe-area-inset-bottom));
  text-align: center;

  color: rgba(255,255,255,.70);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;

  padding: 8px 12px;
  pointer-events: none;
}

/* close button */
.lightbox__close{
  position: fixed;
  top: calc(12px + env(safe-area-inset-top));
  right: 12px;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);

  font-size: 26px;
  line-height: 0;
  cursor: pointer;
}

/* nav buttons */
.lightbox__nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);

  width: 46px;
  height: 46px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);

  font-size: 28px;
  cursor: pointer;
}

.lightbox__nav--prev{ left: 10px; }
.lightbox__nav--next{ right: 10px; }

/* Responsive */
@media (max-width: 920px){
  .grid{ grid-template-columns: repeat(6, 1fr); }
  .shot,
  .shot:nth-child(n){
    grid-column: span 3;
    min-height: 430px;
  }
  .shot:nth-child(5n + 1){
    grid-column: span 6;
    min-height: 540px;
  }
}
@media (max-width: 620px){
  .wrap{ width: min(var(--max), calc(100% - 28px)); }
  .nav{ display:none; } /* minimalist mobile */
  .grid{ grid-template-columns: 1fr; gap: 18px; }
  .shot,
  .shot:nth-child(n){
    grid-column: auto;
    min-height: min(125vw, 560px);
    border-radius: 20px;
  }
  .shot:nth-child(3n + 1){
    min-height: min(145vw, 640px);
  }
  .shot figcaption{
    left:14px;
    right:14px;
    bottom:14px;
    font-size:11px;
  }
  .footer__row{ flex-direction: column; align-items:flex-start; }
}
/* Mobile */
@media (max-width: 620px){
  .footer__row--3{
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }
  .footer__col--left,
  .footer__col--center,
  .footer__col--right{
    justify-self: center;
  }
}
@media (max-width: 700px){
  .about__video::after{ display:none; }
}
.cookie-bar{
position:fixed;
bottom:0;
left:0;
right:0;
background:#830000;
color:#fff;
padding:12px 20px;
display:flex;
justify-content:center;
align-items:center;
gap:20px;
font-size:14px;
z-index:9999;
flex-wrap:wrap;
}

.cookie-bar button{
background:transparent;
color:#fff;
border:1px solid #fff;
padding:6px 16px;
cursor:pointer;
font-size:13px;
	border-radius: 10px;
letter-spacing:.05em;
transition:all .25s ease;
}

.cookie-bar button:hover{
background:#fff;
color:#000;
}
.join-btn{
display:inline-block;
padding:6px 14px;
margin-right:10px;
border:1px solid #d4af37;
border-radius:20px;
color:#d4af37;
font-size:13px;
text-decoration:none;
font-weight:600;
transition:0.2s;
}

.join-btn:hover{
background:#d4af37;
color:#000;
}
@media (min-width:769px){
.join-btn{
display:none;
}
}

/* ===== Premium hero image slider ===== */
.hero-banner{
  position: relative;
  height: clamp(360px, 48vw, 560px);
  margin: 28px 0 34px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: #050505;
  box-shadow: 0 28px 90px rgba(0,0,0,.58);
}

.hero-banner__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 5.5s ease;
}

.hero-banner__slide.is-active{
  opacity: 1;
  pointer-events: auto;
  transform: scale(1.10);
}

.hero-banner__slide--1{ background-image: url("images/slider_1.webp"); }
.hero-banner__slide--2{ background-image: url("images/slider_2.webp"); }
.hero-banner__slide--3{ background-image: url("images/slider_3.webp"); }

.hero-banner__shade{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.48) 38%, rgba(0,0,0,.10) 72%),
    linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.05) 48%);
}

.hero-banner__content{
  position: absolute;
  left: clamp(24px, 4vw, 54px);
  bottom: clamp(34px, 5vw, 66px);
  z-index: 2;
  max-width: 480px;
}

.hero-banner__kicker{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #d4af37;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}



.hero-banner__content h2{
  margin: 0;
  max-width: 430px;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.03em;
}

.hero-banner__content p{
  margin: 16px 0 24px;
  max-width: 440px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.65;
}

.hero-banner__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 54px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 2px solid #d4af37;
  color: #d4af37;
  background: rgba(0,0,0,.16);
  font-weight: 800;
  letter-spacing: .08em;
  transition: .25s ease;
}

.hero-banner__btn:hover{
  background: #d4af37;
  color: #000;
}

.hero-banner__arrow{
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.hero-banner__arrow--prev{ left: 18px; }
.hero-banner__arrow--next{ right: 18px; }

.hero-banner__dots{
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-banner__dots button{
  width: 13px;
  height: 13px;
  padding: 0;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.85);
  background: transparent;
  cursor: pointer;
}

.hero-banner__dots button.is-active{
  width: 38px;
  border-color: #d4af37;
  background: #d4af37;
}

@media (max-width: 700px){
  .hero{
    padding-top: 26px;
  }

  .hero-banner{
    height: min(108vw, 520px);
    margin: 22px 0 30px;
    border-radius: 22px;
  }

  .hero-banner__slide{
    transform: scale(1.01);
  }

  .hero-banner__slide.is-active{
    transform: scale(1.045);
  }

  /* Mobile: keep the model more visible and place copy low-left */
  .hero-banner__slide--1{ background-position: 63% center; }
  .hero-banner__slide--2{ background-position: 58% center; }
  .hero-banner__slide--3{ background-position: 62% center; }

  .hero-banner__shade{
    background:
      linear-gradient(90deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.42) 36%, rgba(0,0,0,.06) 68%),
      linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.24) 42%, rgba(0,0,0,.02) 72%);
  }

  .hero-banner__content{
    left: 26px;
    right: auto;
    bottom: 92px;
    max-width: 47%;
  }

  .hero-banner__kicker{
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: .18em;
    line-height: 1.35;
  }

  .hero-banner__kicker::after{
    width: 34px;
  }

  .hero-banner__content h2{
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.08;
  }

  .hero-banner__content p{
    margin: 12px 0 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-banner__btn{
    min-width: 0;
    min-height: 46px;
    padding: 11px 22px;
    font-size: 14px;
    white-space: nowrap;
  }

  .hero-banner__arrow{
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    transform: none;
    font-size: 38px;
  }

  .hero-banner__arrow--prev{ left: 18px; }
  .hero-banner__arrow--next{ right: 18px; }

  .hero-banner__dots{
    bottom: 33px;
  }
}

@media (max-width: 420px){
  .hero-banner__content{
    left: 24px;
    bottom: 82px;
    max-width: 52%;
  }

  .hero-banner__content h2{
    font-size: 32px;
  }

  .hero-banner__content p{
    font-size: 14px;
  }

  .hero-banner__btn{
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* Hide hero slider arrows on desktop, keep them on mobile/tablet */
@media (min-width: 769px){
  .hero-banner__arrow{
    display: none !important;
  }
}


/* ===== Multilingual SEO build additions ===== */
.faq__list{display:grid;gap:12px;max-width:820px;margin:0 auto;}
.faq__item{border:1px solid rgba(255,255,255,.12);border-radius:16px;background:rgba(255,255,255,.035);padding:14px 16px;}
.faq__item summary{cursor:pointer;font-weight:700;letter-spacing:.03em;}
.faq__item p{color:var(--muted);line-height:1.7;margin:12px 0 0;}
.lang a.lang__btn{text-decoration:none;}
.lang a.lang__btn.is-active{pointer-events:none;}



/* Instagram */
.social-btn--instagram:hover{
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  border-color: #dc2743;
  color:#fff;
}

/* WhatsApp */
.social-btn--whatsapp:hover{
  background:#25D366;
  border-color:#25D366;
  color:#fff;
}

/* Telegram */
.social-btn--telegram:hover{
  background:#229ED9;
  border-color:#229ED9;
  color:#fff;
}


/* Branded footer contact hover buttons - forced by href */
.footer-contact-btn[href*="instagram.com"]:hover{
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important;
  border-color:#dc2743 !important;
  color:#fff !important;
}

.footer-contact-btn[href*="wa.me"]:hover,
.footer-contact-btn[href*="whatsapp"]:hover{
  background:#25D366 !important;
  border-color:#25D366 !important;
  color:#fff !important;
}

.footer-contact-btn[href*="t.me"]:hover,
.footer-contact-btn--telegram:hover{
  background:#229ED9 !important;
  border-color:#229ED9 !important;
  color:#fff !important;
}


/* Default branded buttons */
.footer-contact-btn[href*="instagram.com"]{
  background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888) !important;
  border-color:#dc2743 !important;
  color:#fff !important;
}

.footer-contact-btn[href*="wa.me"],
.footer-contact-btn[href*="whatsapp"]{
  background:#25D366 !important;
  border-color:#25D366 !important;
  color:#fff !important;
}

.footer-contact-btn[href*="t.me"]{
  background:#229ED9 !important;
  border-color:#229ED9 !important;
  color:#fff !important;
}

/* Hover glow */
.footer-contact-btn[href*="instagram.com"]:hover{
  filter: brightness(1.08);
  box-shadow: 0 0 18px rgba(220,39,67,.45);
}

.footer-contact-btn[href*="wa.me"]:hover,
.footer-contact-btn[href*="whatsapp"]:hover{
  filter: brightness(1.08);
  box-shadow: 0 0 18px rgba(37,211,102,.45);
}

.footer-contact-btn[href*="t.me"]:hover{
  filter: brightness(1.08);
  box-shadow: 0 0 18px rgba(34,158,217,.45);
}


/* Updated About layout */
.about__content{
  width: 100%;
}

.about__video{
  width: 100%;
}

.about__videoEl{
  min-height: 780px;
  object-fit: cover;
}

@media (max-width: 900px){
  .about__grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about__video{
    max-width: 420px;
    margin: 0 auto;
  }

  .about__videoEl{
    min-height: auto;
  }
}




/* ===== Instant photo upload list with thumbnails ===== */
.upload-list{
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.upload-row{
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 42px 10px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}

.upload-row__thumb{
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
}

.upload-row__body{
  min-width: 0;
}

.upload-row__top{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  font-size: 12px;
  color: var(--text);
}

.upload-row__name{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-row__size,
.upload-row__status{
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.upload-row__bar{
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.upload-row__fill{
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: #d4af37;
  transition: width .18s ease;
}

.upload-row__status{
  margin-top: 6px;
}

.upload-row__remove{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.92);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.upload-row__remove:hover{
  background: #ff6b6b;
  border-color: #ff6b6b;
  color: #000;
}

.upload-row.is-done .upload-row__fill{
  background: #25D366;
}

.upload-row.is-error{
  border-color: rgba(255,107,107,.75);
}

.upload-row.is-error .upload-row__fill{
  background: #ff6b6b;
}

.upload-row.is-error .upload-row__status{
  color: #ff6b6b;
}

button:disabled{
  opacity: .45;
  cursor: not-allowed;
}

@media (max-width: 480px){
  .upload-row{
    grid-template-columns: 56px 1fr;
    padding-right: 38px;
  }

  .upload-row__thumb{
    width: 56px;
    height: 56px;
  }

  .upload-row__top{
    flex-direction: column;
    gap: 2px;
  }
}
