:root {
  --bg: #0b0d10;
  --bg-2: #11141a;
  --bg-3: #171b22;
  --steel: #8a97a8;
  --silver: #c9d3de;
  --bright: #eef2f6;
  --muted: #7d8894;
  --line: rgba(201, 211, 222, 0.12);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-brd: rgba(255, 255, 255, 0.09);
  --grad: linear-gradient(135deg, #eef2f6 0%, #9aa8b8 100%);
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--silver);
  line-height: 1.7;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: "Archivo", sans-serif;
  color: var(--bright);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 800; }
h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.section { padding: clamp(70px, 10vw, 120px) 0; position: relative; }

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 64px);
}
.section__head--left { margin-inline: 0; text-align: left; }
.section__tag {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--line);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section__head > p { margin-top: 14px; color: var(--muted); }

.glass {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--grad);
  color: #0b0d10;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 211, 222, 0.25);
}
.btn--ghost {
  border: 1px solid var(--glass-brd);
  color: var(--bright);
  background: var(--glass);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--steel);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.preloader__logo { width: 84px; height: 84px; }
.preloader__logo circle { animation: draw 1.6s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.preloader__text {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  letter-spacing: 0.4em;
  color: var(--bright);
  animation: pulse 1.6s ease infinite alternate;
}
@keyframes pulse { from { opacity: 0.4; } to { opacity: 1; } }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(11, 13, 16, 0.75);
  border-color: var(--line);
}
.navbar.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: -1;
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--bright);
}
.navbar__brand b {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar__icon { width: 26px; height: 26px; color: var(--steel); }
.navbar__nav { display: flex; align-items: center; gap: 28px; }
.navbar__link {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.3s;
}
.navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--grad);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}
.navbar__link:hover, .navbar__link.active { color: var(--bright); }
.navbar__link:hover::after, .navbar__link.active::after { width: 100%; }
.navbar__cta {
  border: 1px solid var(--glass-brd);
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--glass);
}
.navbar__cta::after { display: none; }
.navbar__cta:hover { border-color: var(--steel); }
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__burger span {
  width: 26px;
  height: 2px;
  background: var(--bright);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg, .hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__bg img {
  object-fit: cover;
  filter: grayscale(60%) brightness(0.55) contrast(1.05);
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(11, 13, 16, 0.95) 0%, rgba(11, 13, 16, 0.65) 55%, rgba(11, 13, 16, 0.45) 100%),
    radial-gradient(circle at 80% 20%, rgba(138, 151, 168, 0.15), transparent 50%);
}
.hero__content { position: relative; z-index: 2; }
.hero__kicker {
  display: inline-block;
  font-family: "Archivo", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 20px;
  border-left: 2px solid var(--steel);
  padding-left: 14px;
}
.cursor {
  color: var(--steel);
  animation: blink 0.9s steps(1) infinite;
  font-weight: 300;
}
@keyframes blink { 50% { opacity: 0; } }
.hero__sub {
  max-width: 520px;
  margin: 26px 0 38px;
  color: var(--silver);
  font-size: 1.05rem;
  font-weight: 300;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mouse {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid var(--steel);
  border-radius: 20px;
  position: relative;
}
.wheel {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--silver);
  border-radius: 2px;
  animation: wheel 1.6s ease infinite;
}
@keyframes wheel {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ---------- Services ---------- */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.35;
  pointer-events: none;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  position: relative;
}
.card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.2s ease-out;
  will-change: transform;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(138, 151, 168, 0.1), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover::before { opacity: 1; }
.card:hover { border-color: rgba(138, 151, 168, 0.4); }
.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  margin-bottom: 22px;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.card:hover .card__icon {
  transform: translateY(-4px) rotate(-6deg);
  background: rgba(138, 151, 168, 0.15);
}
.card__icon svg { width: 26px; height: 26px; color: var(--silver); }
.card h3 { font-size: 1.05rem; margin-bottom: 12px; letter-spacing: 0.05em; }
.card p { font-size: 0.92rem; color: var(--muted); }
.card__num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(138, 151, 168, 0.3);
  line-height: 1;
}

/* ---------- About ---------- */
.about { background: var(--bg-2); border-block: 1px solid var(--line); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius);
  filter: grayscale(40%) contrast(1.05);
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
}
.about__badge strong {
  font-family: "Archivo", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about__badge span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--steel);
}
.about__text h2 { margin-bottom: 20px; }
.about__text > p { color: var(--muted); margin-bottom: 24px; }
.about__list { list-style: none; margin-bottom: 36px; }
.about__list li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--silver);
  font-size: 0.95rem;
}
.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
}
.about__list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 19px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--silver);
  border-bottom: 2px solid var(--silver);
  transform: rotate(-45deg);
}
.counters { display: flex; gap: 40px; flex-wrap: wrap; }
.counter__value, .counter__plus {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter small {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ---------- Why ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.why__item { padding: 32px 26px; transition: transform 0.4s var(--ease), border-color 0.4s; }
.why__item:hover { transform: translateY(-8px); border-color: rgba(138, 151, 168, 0.4); }
.why__num {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(138, 151, 168, 0.35);
  display: block;
  margin-bottom: 16px;
}
.why__item h3 { font-size: 1rem; margin-bottom: 10px; letter-spacing: 0.05em; }
.why__item p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-2); border-block: 1px solid var(--line); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.5s;
  filter: grayscale(35%);
}
.gallery__item:hover img { transform: scale(1.08); filter: grayscale(0%); }
.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(11, 13, 16, 0.9), transparent);
  font-family: "Archivo", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bright);
  transform: translateY(100%);
  transition: transform 0.45s var(--ease);
}
.gallery__item:hover figcaption { transform: translateY(0); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(5, 6, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  color: var(--bright);
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.12); }
.lightbox__close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.5rem;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.2rem;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ---------- Reviews ---------- */
.reviews__viewport { overflow: hidden; }
.reviews__track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.review {
  flex: 0 0 calc((100% - 44px) / 3);
  margin-right: 22px;
  padding: 34px 30px;
}
.review__stars { color: var(--silver); letter-spacing: 4px; margin-bottom: 16px; font-size: 1rem; }
.review p { font-size: 0.95rem; color: var(--silver); font-style: italic; }
.review footer {
  margin-top: 18px;
  font-family: "Archivo", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.reviews__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(138, 151, 168, 0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.reviews__dots button.active {
  background: var(--grad);
  transform: scale(1.25);
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-2); border-block: 1px solid var(--line); }
.faq__inner { max-width: 800px; }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq__item[open] { border-color: rgba(138, 151, 168, 0.4); }
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--bright);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-brd);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--steel);
  transition: transform 0.35s var(--ease);
}
.faq__icon::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item p {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.contact__info { display: grid; gap: 16px; align-content: start; }
.contact__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.contact__item:hover { transform: translateX(6px); border-color: rgba(138, 151, 168, 0.4); }
.contact__item svg { width: 26px; height: 26px; flex: 0 0 auto; color: var(--steel); }
.contact__item--wa svg { color: #4fce5d; }
.contact__item small {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.contact__item strong {
  font-size: 0.98rem;
  color: var(--bright);
  font-weight: 600;
  line-height: 1.4;
}
.contact__map {
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--glass-brd);
  filter: grayscale(80%) invert(0.92) contrast(0.9) brightness(0.9);
}
.contact__map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--bg); padding-top: 60px; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
}
.footer__brand span {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--bright);
}
.footer__brand b {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__brand p {
  margin-top: 14px;
  max-width: 320px;
  font-size: 0.9rem;
  color: var(--muted);
}
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--bright); }
.footer__bar { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer__bar a:hover { color: var(--bright); }

/* ---------- Floating ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 2000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.35s var(--ease);
  animation: waPulse 2.4s ease infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}
.totop {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 2000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-brd);
  background: rgba(17, 20, 26, 0.85);
  backdrop-filter: blur(10px);
  color: var(--bright);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s, border-color 0.35s;
}
.totop.show { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { border-color: var(--steel); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .review { flex: 0 0 calc((100% - 22px) / 2); }
  .about__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 320px; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }
  .navbar__burger { display: flex; z-index: 1100; }
  .navbar__nav {
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 16, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
  }
  .navbar__nav.open { opacity: 1; visibility: visible; }
  .navbar__link { font-size: 1.2rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .review { flex: 0 0 100%; margin-right: 0; }
  .about__badge { right: 12px; }
  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .counters { gap: 24px; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
  .wa-float { width: 50px; height: 50px; bottom: 18px; left: 18px; }
  .totop { bottom: 18px; right: 18px; }
}

/* ---------- Info additions ---------- */
.about__owner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 20px;
  margin-bottom: 36px;
}
.about__owner strong { color: var(--silver); font-weight: 600; }

.contact__item--ig svg { color: #d6369b; }
.contact__item--ig:hover { border-color: rgba(214, 54, 155, 0.45); }

.footer__ig { position: relative; padding-left: 22px; }
.footer__ig::before, .footer__ig::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  border-radius: 4px;
  border: 1.5px solid currentColor;
}
.footer__ig::before { width: 14px; height: 14px; }
.footer__ig::after {
  width: 6px;
  height: 6px;
  left: 4px;
  border-width: 1.5px;
}

.footer__credit {
  font-size: 0.75rem;
  opacity: 0.75;
}
.footer__credit a {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--steel);
  transition: color 0.3s;
}
.footer__credit a:hover { color: var(--bright); }
