/* ============================================================
   Bilder — Classic Architecture 02
   Site styles (used together with Bootstrap 5 and Swiper).
   Palette: dark #0f0f0f · accent #0b3b8c (Unico blue) · light #f9f9f9
============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid-Circular-B-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid-Circular-B-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid-Circular-B-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Euclid Circular B";
  src: url("../fonts/Euclid-Circular-B-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

/* ---------- Tokens & base ---------- */
:root {
  --dark: #0f0f0f;
  --accent: #0b3b8c;
  --light: #f9f9f9;
  --muted: #5f5f5f;
  --line: #e7e7e7;
  --watermark: #f6f6f6;
  --font: "Euclid Circular B", -apple-system, "Segoe UI", sans-serif;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.625;
  color: var(--dark);
  background: #fff;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover {
  color: var(--accent);
}

.section-pad {
  padding: 120px 0;
}
.section-pad-bottom {
  padding-bottom: 130px;
}

.kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.kicker::after {
  content: "";
  width: 56px;
  height: 1px;
  background: var(--dark);
}

.section-title {
  margin-bottom: 24px;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.1;
}

.section-lead {
  margin-bottom: 0;
  color: var(--muted);
}

.text-accent {
  color: var(--accent);
}

/* ---------- Buttons & links ---------- */
.btn-accent,
.btn-dark-pill,
.btn-outline-dark-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  transition:
    background-color 0.25s,
    border-color 0.25s,
    color 0.25s;
}

.btn-accent svg,
.btn-dark-pill svg,
.btn-outline-dark-pill svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.btn-accent {
  background: var(--dark);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent);
  color: #fff;
}

.btn-dark-pill {
  background: var(--dark);
  color: #fff;
}
.btn-dark-pill:hover {
  background: #fff;
  color: var(--dark);
}

.btn-outline-dark-pill {
  border-color: var(--dark);
  color: var(--dark);
}
.btn-outline-dark-pill:hover {
  background: var(--dark);
  color: #fff;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}
.link-arrow svg {
  width: 13px;
  height: 13px;
  transition: transform 0.25s;
}
.link-arrow:hover svg {
  transform: translate(2px, -2px);
}

.link-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
}
.link-underline::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: currentColor;
  transition: background-color 0.25s;
}
.link-underline:hover::after {
  background: var(--accent);
}
.link-underline--light {
  color: #fff;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: opacity 0.4s;
}
.preloader.is-done {
  opacity: 0;
  pointer-events: none;
}
.preloader__spinner {
  width: 56px;
  height: 56px;
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: max(20px, 3vw);
  padding-right: max(20px, 3vw);
}
.site-header__logo {
  display: inline-flex;
  flex-shrink: 0;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.main-nav__list {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav__item {
  position: relative;
}
.main-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
}
.main-nav__link svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}
.main-nav__link.is-active {
  color: var(--accent);
}

.main-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(15, 15, 15, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    visibility 0.25s;
}
.main-nav__dropdown a {
  display: block;
  padding: 9px 24px;
  font-size: 15px;
}
.has-dropdown:hover .main-nav__dropdown,
.has-dropdown:focus-within .main-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-toggle {
  display: inline-flex;
  padding: 8px;
  border: 0;
  background: none;
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: var(--dark);
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  max-width: 320px;
}
.mobile-menu__close {
  padding: 6px;
  border: 0;
  background: none;
}
.mobile-menu__close svg {
  width: 20px;
  height: 20px;
  fill: var(--dark);
}
.mobile-menu__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.mobile-menu__list > li {
  border-bottom: 1px solid var(--line);
}
.mobile-menu__list > li > a,
.mobile-menu__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  border: 0;
  background: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}
.mobile-menu__sub-toggle svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  transition: transform 0.25s;
}
.mobile-menu__sub-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.mobile-menu__sub {
  margin: 0;
  padding: 0 0 12px 16px;
  list-style: none;
}
.mobile-menu__sub a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
}
.mobile-menu__cta {
  width: 100%;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  --hero-band: 176px; /* white strip above the slide image */
  position: relative;
}
.hero__lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
    to right,
    rgba(15, 15, 15, 0.05) 1px,
    transparent 1px
  );
  background-size: calc(100% / 6) 100%;
  pointer-events: none;
}
.hero__slide {
  position: relative;
  min-height: max(680px, calc(100vh - 90px));
  padding-top: 34px;
}
.hero__slide-bg {
  position: absolute;
  inset: var(--hero-band) 0 0 0;
  background-size: cover;
  background-position: center;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__kicker {
  display: flex;
  gap: 14px;
  max-width: 240px;
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.hero__kicker::before {
  content: "";
  flex: none;
  width: 40px;
  height: 1px;
  margin-top: 0.7em;
  background: var(--dark);
}
.hero__title {
  max-width: 660px;
  margin-bottom: 24px;
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  color: var(--dark);
}
.hero__desc {
  max-width: 420px;
  margin-bottom: 44px;
  color: var(--muted);
}

.btn-square {
  display: inline-flex;
  align-items: center;
  padding: 19px 42px;
  background: var(--dark);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.25s;
}
.btn-square:hover {
  background: var(--accent);
  color: #fff;
}

.hero__pagination {
  position: absolute;
  left: auto;
  right: max(48px, 6vw);
  top: 42px;
  bottom: auto;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: auto;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark);
}
.hero__pagination .swiper-pagination-current {
  font-size: 120px;
  font-weight: 400;
  line-height: 0.95;
}

.hero__thumbs {
  position: absolute;
  right: 0;
  bottom: 34px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 44px;
  width: min(640px, 92vw);
  padding: 38px 44px 42px;
  background: #fff;
}
.hero__thumbs::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  border-style: solid;
  border-width: 16px 16px 0 0;
  border-color: var(--accent) transparent transparent;
}
.hero__thumb {
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  color: #a3a3a3;
  transition: color 0.25s;
}
.hero__thumb.is-active,
.hero__thumb:hover {
  color: var(--dark);
}
.hero__thumb-number {
  display: block;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
}
.hero__thumb-text {
  display: block;
  max-width: 130px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

/* ---------- Expertise ---------- */
.expertise__item {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.expertise__title {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 500;
}
.expertise__text {
  margin: 0;
  color: var(--muted);
}

/* ---------- About ---------- */
.about__image {
  width: 100%;
  object-fit: cover;
}
.about__lead {
  margin-bottom: 28px;
  color: var(--muted);
}
.plus-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.plus-list li {
  padding: 4px 0;
  font-weight: 500;
}
.about__features {
  margin-bottom: 36px;
}
.about__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about__counter,
.about__video {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about__counter .counter-number {
  font-size: 46px;
  font-weight: 600;
  line-height: 1;
}
.about__counter-label {
  max-width: 90px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.play-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  background: transparent;
  transition: border-color 0.25s;
}
.play-btn__triangle {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-left: 11px solid var(--dark);
  transform: translate(-40%, -50%);
  transition: border-left-color 0.25s;
}
.play-btn:hover {
  border-color: var(--accent);
}
.play-btn:hover .play-btn__triangle {
  border-left-color: var(--accent);
}

/* ---------- Counters strip ---------- */
.counters {
  padding: 100px 0;
  background: var(--accent);
  color: #fff;
}
.counter__label {
  margin-bottom: 10px;
  font-size: 16px;
}
.counter__value {
  margin: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
}

/* ---------- Services ---------- */
.services {
  position: relative;
  background: var(--light);
}
.v-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(
    to right,
    rgba(15, 15, 15, 0.04) 1px,
    transparent 1px
  );
  background-size: calc(100% / 6) 100%;
  pointer-events: none;
}
.services .container {
  position: relative;
  z-index: 1;
}
.services__head {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}
.services__head .kicker {
  margin-bottom: 24px;
}
.services__lead {
  margin-top: 20px;
}
.service-card {
  height: 100%;
  padding: 48px 40px;
  background: #fff;
  box-shadow: 14px 14px 0 var(--accent);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 18px 18px 0 var(--accent);
}
.service-card__icon {
  display: block;
  margin-bottom: 32px;
}
.service-card__icon svg {
  width: 75px;
  height: 75px;
  fill: var(--accent);
}
.service-card__title {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 500;
}
.service-card__desc {
  margin-bottom: 26px;
  color: var(--muted);
}

.services__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 88px auto 0;
  padding: 17px 34px;
  border: 1px solid #dcdcdc;
  border-radius: 100px;
  color: var(--muted);
  font-size: 16px;
}
.services__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--dark);
}
.services__cta-link svg {
  width: 12px;
  height: 12px;
}

/* ---------- Projects (case studies) ---------- */
.projects__head {
  margin-bottom: 56px;
}
.projects__slider {
  padding: 0 max(20px, calc((100vw - 1320px) / 2));
}
.project-card {
  position: relative;
  width: auto;
  overflow: hidden;
}
.project-card__media {
  display: block;
  overflow: hidden;
}
.project-card__media img {
  display: block;
  width: auto;
  height: 650px;
  object-fit: cover;
  transition: transform 0.6s;
}
.project-card:hover .project-card__media img {
  transform: scale(1.04);
}
.project-card__body {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 280px;
  padding: 16px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.5s;
}
.project-card:hover .project-card__body {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.project-card__title {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 500;
}
.project-card__meta {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.project-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--dark);
  border-radius: 50%;
  transition:
    background-color 0.25s,
    border-color 0.25s;
}
.project-card__link svg {
  width: 12px;
  height: 14px;
  fill: var(--dark);
  transition: fill 0.25s;
}
.project-card__link:hover {
  background: var(--accent);
  border-color: var(--accent);
}
.project-card__link:hover svg {
  fill: #fff;
}

/* ---------- Workflow ---------- */
.workflow {
  position: relative;
  overflow: hidden;
}
.workflow__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  font-size: clamp(280px, 42vw, 800px);
  font-weight: 700;
  line-height: 0.76;
  color: var(--watermark);
  transform: translate(-50%, -50%);
  user-select: none;
}
.workflow__images {
  display: flex;
  gap: 24px;
}
.workflow__img {
  width: calc(50% - 12px);
  object-fit: cover;
}
.workflow__img--second {
  margin-top: 64px;
}
.workflow__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 36px;
}
.workflow__call {
  margin: 0;
  font-weight: 500;
}
.workflow__call span {
  color: var(--muted);
  margin-right: 6px;
}

/* ---------- Process steps ---------- */
.step-card {
  position: relative;
  padding-top: 48px;
}
.step-card__number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  font-size: 120px;
  font-weight: 700;
  line-height: 0.75;
  color: var(--watermark);
}
.step-card__icon {
  display: block;
  margin-bottom: 24px;
}
.step-card__icon svg {
  width: 48px;
  height: 48px;
  fill: var(--dark);
}
.step-card__title {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 500;
}
.step-card__desc {
  margin: 0;
  color: var(--muted);
}

/* ---------- Video banner ---------- */
.video-banner {
  position: relative;
}
.video-banner img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.video-banner__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  transform: translate(-50%, -50%);
  transition:
    background-color 0.25s,
    transform 0.25s;
}
.video-banner__play:hover {
  background: var(--dark);
  transform: translate(-50%, -50%) scale(1.06);
}

/* ---------- Brands ---------- */
.brands__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px 90px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.brands__list img {
  opacity: 0.85;
  transition: opacity 0.25s;
}
.brands__list img:hover {
  opacity: 1;
}

/* ---------- Instagram ---------- */
.instagram__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-bottom: 56px;
}
.instagram__cta-text {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}
.instagram__gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.instagram__gallery a {
  position: relative;
  display: block;
}
.instagram__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instagram__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 15, 0.55);
  opacity: 0;
  transition: opacity 0.3s;
}
.instagram__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.instagram__gallery a:hover .instagram__icon {
  opacity: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #fff;
}
.site-footer__cta {
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.site-footer__note {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}
.site-footer__talk {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid #fff;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}
.site-footer__talk:hover {
  color: #9fc0f5;
  border-color: #9fc0f5;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0 44px;
}
.site-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}
.site-footer__copy a {
  color: #fff;
}
.site-footer__copy a:hover {
  color: var(--accent);
}

.subscribe-form {
  position: relative;
  display: flex;
  align-items: center;
  min-width: min(320px, 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.subscribe-form input {
  flex: 1;
  padding: 10px 0;
  border: 0;
  background: none;
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  outline: none;
}
.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.subscribe-form button {
  padding: 8px;
  border: 0;
  background: none;
}
.subscribe-form button svg {
  width: 16px;
  height: 16px;
  fill: #fff;
  transition: fill 0.25s;
}
.subscribe-form button:hover svg {
  fill: var(--accent);
}
.subscribe-form__message {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transition:
    background-color 0.25s,
    border-color 0.25s;
}
.social-links svg {
  width: 15px;
  height: 15px;
  fill: #fff;
}
.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 15, 15, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.3s,
    transform 0.3s,
    visibility 0.3s;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top__progress {
  position: absolute;
  inset: 0;
}
.scroll-top__progress path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4;
}
.scroll-top > svg:not(.scroll-top__progress) {
  width: 14px;
  height: 14px;
  fill: var(--dark);
  transform: rotate(-45deg);
}

/* ---------- Video modal ---------- */
.video-modal .modal-content {
  background: #000;
  border: 0;
}
.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  padding: 6px;
  border: 0;
  background: none;
}
.video-modal__close svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease var(--reveal-delay, 0s),
    transform 0.8s ease var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .preloader {
    display: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .hero__title {
    font-size: 72px;
  }
  .hero__pagination .swiper-pagination-current {
    font-size: 90px;
  }
  .project-card__media img {
    height: 520px;
  }
  .site-footer__talk {
    font-size: 60px;
  }
  .section-title {
    font-size: 42px;
  }
  .workflow__watermark {
    font-size: clamp(220px, 45vw, 520px);
  }
  .instagram__gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 80px 0;
  }
  .section-pad-bottom {
    padding-bottom: 90px;
  }
  .hero {
    --hero-band: 130px;
  }
  .hero__slide {
    min-height: 620px;
  }
  .hero__title {
    font-size: 56px;
  }
  .hero__pagination {
    font-size: 18px;
  }
  .hero__pagination .swiper-pagination-current {
    font-size: 64px;
  }
  .hero__thumbs {
    width: min(560px, 94vw);
    padding: 28px 30px 30px;
    gap: 0 28px;
  }
  .project-card__media img {
    height: 420px;
  }
  .counter__value {
    font-size: 46px;
  }
  .site-footer__talk {
    font-size: 50px;
  }
  .workflow__img--second {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 60px 0;
  }
  .section-pad-bottom {
    padding-bottom: 70px;
  }
  .hero {
    --hero-band: 100px;
  }
  .hero__title {
    font-size: 40px;
  }
  .section-title {
    font-size: 32px;
  }
  .hero__pagination {
    right: 20px;
    top: 24px;
    font-size: 15px;
  }
  .hero__pagination .swiper-pagination-current {
    font-size: 44px;
  }
  .hero__slide {
    min-height: 560px;
  }
  .hero__thumbs {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 20px;
    border-top: 1px solid var(--line);
  }
  .hero__thumbs::before {
    top: 6px;
    left: 6px;
    border-width: 12px 12px 0 0;
  }
  .hero__thumb {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .hero__thumb-number {
    margin-bottom: 0;
  }
  .hero__thumb-text {
    max-width: none;
  }
  .expertise__item {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .video-banner__play {
    width: 88px;
    height: 88px;
    font-size: 13px;
  }
  .instagram__gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer__cta {
    padding: 70px 0 56px;
  }
  .site-footer__talk {
    font-size: 40px;
  }
  .project-card__media img {
    height: 320px;
  }
}
