:root {
  --dark: #2d2624;
  --dark-2: #221d1b;
  --accent: #f7a53a;
  --accent-2: #ffb755;
  --accent-soft: rgba(247, 165, 58, 0.3);
  --text: #181818;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --title: "Oswald", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--dark);
  color: #f1e9e5;
  font-size: 14px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
}

.topbar__contact,
.topbar__social {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__item svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.95;
}

.topbar__social {
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar__social a {
  width: 48px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.topbar__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.95;
}

.navwrap {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
  overflow: visible;
}

.brand__logo {
  display: block;
  width: auto;
  height: 58px;
  max-width: 100%;
  object-fit: contain;
  transform: scale(1.72);
  transform-origin: left center;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 999px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--title);
  letter-spacing: 0.2px;
}

.main-nav a {
  color: #161616;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: calc(100vh - 146px);
  overflow: hidden;
  background: #1a140f;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  inset: auto auto -190px -140px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(247, 165, 58, 0.34) 0%, rgba(247, 165, 58, 0) 72%);
}

.hero::after {
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 2px, transparent 2px, transparent 26px);
  opacity: 0.16;
}

.hero__slides {
  position: relative;
  min-height: inherit;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  animation: heroZoom 11s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  padding: 80px 0 110px;
  width: min(960px, 100%);
}

.hero__kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.77rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.33);
}

.hero__title {
  margin: 0;
  width: min(930px, 100%);
  margin-top: 14px;
  font-family: var(--title);
  font-size: clamp(2.5rem, 6.2vw, 5.8rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.hero__title span {
  display: block;
}

.hero__lead {
  margin: 20px 0 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.72;
  color: var(--muted);
}

.hero__kicker,
.hero__title span,
.hero__lead,
.hero__actions {
  opacity: 0;
  transform: translateY(26px);
}

.hero__slide.is-active .hero__kicker {
  animation: riseIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.08s both;
}

.hero__slide.is-active .hero__title span:nth-child(1) {
  animation: riseIn 0.78s cubic-bezier(0.19, 1, 0.22, 1) 0.18s both;
}

.hero__slide.is-active .hero__title span:nth-child(2) {
  animation: riseIn 0.78s cubic-bezier(0.19, 1, 0.22, 1) 0.32s both;
}

.hero__slide.is-active .hero__lead {
  animation: riseIn 0.74s cubic-bezier(0.19, 1, 0.22, 1) 0.46s both;
}

.hero__slide.is-active .hero__actions {
  animation: riseIn 0.72s cubic-bezier(0.19, 1, 0.22, 1) 0.58s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  min-width: 220px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--title);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.hero__arrow:hover,
.topbar__social a:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--primary {
  color: #fff;
  border: 2px solid var(--accent);
  background: linear-gradient(120deg, #ef972a, #ffb755);
  box-shadow: 0 14px 30px rgba(247, 165, 58, 0.34);
}

.btn--primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  background: rgba(18, 14, 11, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #f1a241;
  font-size: 48px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: grid;
  place-items: center;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
}

.hero__arrow--left {
  left: 26px;
}

.hero__arrow--right {
  right: 26px;
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.hero__dot.is-active {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.feature-band {
  background: #ececec;
  padding: 96px 0 102px;
}

.feature-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-band__item {
  position: relative;
  padding: 0 48px;
  text-align: center;
  opacity: 0;
  transform: translateY(38px);
  transition: transform 0.48s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.feature-band__item.is-visible {
  animation: featureReveal 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0s) both;
}

.feature-band__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: #d3d3d3;
}

.feature-band__icon {
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: #f2a33b;
  display: grid;
  place-items: center;
  margin: 0 auto 36px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.feature-band__icon::before {
  content: "";
  position: absolute;
  inset: -9px;
  border-radius: inherit;
  border: 1px solid rgba(242, 163, 59, 0.42);
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.feature-band__icon svg {
  width: 44px;
  height: 44px;
  stroke: #fff;
  stroke-width: 1.15;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(0);
  transition: transform 0.32s ease;
}

.feature-band__item h2 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(2rem, 2.1vw, 2.35rem);
  letter-spacing: 0.03em;
  color: #111;
}

.feature-band__item p {
  margin: 20px auto 0;
  max-width: 440px;
  color: #5d7485;
  font-size: 1.02rem;
  line-height: 1.7;
}

.feature-band__item.is-visible .feature-band__icon {
  animation: iconFloat 4.6s ease-in-out infinite;
  animation-delay: var(--reveal-delay, 0s);
}

.feature-band__item:hover .feature-band__icon {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.14);
}

.feature-band__item:hover .feature-band__icon::before {
  opacity: 1;
  transform: scale(1);
}

.feature-band__item:hover .feature-band__icon svg {
  transform: translateY(-1px);
}

.welcome-block {
  position: relative;
  background: #e9e9e9;
  padding: 42px 0 118px;
  overflow: hidden;
}

.welcome-block::before,
.welcome-block::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.welcome-block::before {
  left: -122px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff9b4a 0%, #ef622a 40%, #de2e1a 70%, #de2e1a 100%);
  box-shadow: inset -20px -26px 0 rgba(0, 0, 0, 0.09);
}

.welcome-block::after {
  right: -120px;
  bottom: -176px;
  width: 370px;
  height: 370px;
  border-radius: 52% 48% 0 0;
  background:
    repeating-linear-gradient(80deg, #ffe87f 0, #ffe87f 3px, #ecd965 3px, #ecd965 20px),
    linear-gradient(155deg, #ffffff 0%, #f4f4f4 58%, #d5d5d5 100%);
  border: 8px solid #f3f3f3;
}

.welcome-block .container,
.welcome-block__media {
  position: relative;
  z-index: 1;
}

.welcome-block__media {
  width: min(1420px, calc(100% - 34px));
  margin: 0 auto;
  border: 18px solid #efefef;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.welcome-block__media img {
  width: 100%;
  height: min(700px, 46vw);
  min-height: 280px;
  display: block;
  object-fit: cover;
}

.welcome-block__intro {
  margin: 88px auto 0;
  max-width: 920px;
  text-align: center;
}

.welcome-block__kicker {
  margin: 0;
  color: #2f3f4b;
  font-family: var(--title);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.welcome-block__title {
  margin: 16px 0 0;
  color: #151515;
  font-family: var(--title);
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.welcome-block__title span {
  color: #f3a13b;
}

.welcome-block__text {
  margin: 34px auto 0;
  max-width: 980px;
  color: #617a8d;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.78;
}

.welcome-block__stats {
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 980px;
}

.welcome-block__stat {
  background: #f0f0f0;
  border-radius: 44px;
  padding: 34px 22px 30px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.welcome-block__number {
  margin: 0;
  color: #f3a13b;
  font-family: var(--title);
  font-size: clamp(2.8rem, 4vw, 4.3rem);
  line-height: 1;
  font-weight: 700;
}

.welcome-block__label {
  margin: 10px 0 0;
  color: #131313;
  font-size: clamp(1.3rem, 1.5vw, 1.95rem);
  font-family: var(--title);
}

.welcome-block__media[data-reveal],
.welcome-block__intro[data-reveal],
.welcome-block__stat[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
}

.welcome-block__media.is-visible,
.welcome-block__intro.is-visible,
.welcome-block__stat.is-visible {
  animation: featureReveal 0.78s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0s) both;
}

.services-showcase {
  background:
    linear-gradient(rgba(247, 247, 247, 0.94), rgba(247, 247, 247, 0.94)),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.015), rgba(0, 0, 0, 0.015) 1px, transparent 1px, transparent 7px);
  padding: 92px 0 114px;
}

.services-showcase__title-wrap {
  text-align: center;
}

.services-showcase__title-wrap h2 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(2.8rem, 4.4vw, 4.6rem);
  letter-spacing: 0.02em;
  color: #101010;
  line-height: 1;
}

.services-showcase__title-wrap h2 .is-accent {
  color: #f2a23b;
}

.services-showcase__divider {
  margin: 24px auto 0;
  width: min(100%, 760px);
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  position: relative;
}

.services-showcase__divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: #f2a23b;
}

.services-showcase__grid {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(34px);
}

.service-card.is-visible {
  animation: featureReveal 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0s) both;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex: 0 0 auto;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__body {
  background: #f4f4f4;
  padding: 32px 26px 34px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

.service-card h3 {
  margin: 0;
  color: #111;
  font-family: var(--title);
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  letter-spacing: 0.02em;
  line-height: 1.03;
  min-height: 2.15em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  margin: 18px 0 0;
  color: #5f788a;
  font-size: 1.01rem;
  line-height: 1.62;
  min-height: 6.5em;
}

.projects-recent {
  background: #e9e9e9;
  padding: 96px 0 138px;
}

.projects-recent__title-wrap {
  text-align: center;
}

.projects-recent__title-wrap h2 {
  margin: 0;
  color: #111;
  font-family: var(--title);
  font-size: clamp(2.8rem, 4.6vw, 4.6rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.projects-recent__title-wrap h2 .is-accent {
  color: #f2a23b;
}

.projects-recent__divider {
  margin: 24px auto 0;
  width: min(100%, 780px);
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  position: relative;
}

.projects-recent__divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: #f2a23b;
}

.project-tabs {
  margin: 58px auto 0;
  width: min(780px, 100%);
  padding: 0 14px;
  min-height: 96px;
  background: #f1f1f1;
  border: 1px solid #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 46px);
  flex-wrap: wrap;
}

.project-tab {
  border: 0;
  background: transparent;
  color: #7e8a93;
  font-family: var(--title);
  font-size: clamp(1.16rem, 1.3vw, 1.5rem);
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 0;
  transition: color 0.22s ease;
}

.project-tab.is-active,
.project-tab:hover {
  color: #f2a23b;
}

.projects-recent__grid {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.project-photo-card {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.34s ease;
}

.project-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.42s ease;
}

.project-photo-card:hover img {
  transform: scale(1.08);
}

.project-photo-card.is-hidden {
  display: none;
}

.projects-recent__actions {
  margin-top: 66px;
  display: flex;
  justify-content: center;
}

.projects-recent__button {
  min-width: 230px;
  min-height: 68px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f2a23b;
  color: #fff;
  font-family: var(--title);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.projects-recent__button:hover {
  transform: translateY(-2px);
  background: #f7af4f;
}

.projects-recent__title-wrap[data-reveal],
.project-tabs[data-reveal],
.projects-recent__grid[data-reveal],
.projects-recent__actions[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
}

.projects-recent__title-wrap.is-visible,
.project-tabs.is-visible,
.projects-recent__grid.is-visible,
.projects-recent__actions.is-visible {
  animation: featureReveal 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0s) both;
}

.testimonials-section {
  position: relative;
  padding: 96px 0 100px;
  background:
    linear-gradient(rgba(28, 22, 15, 0.62), rgba(28, 22, 15, 0.62)),
    url("https://images.unsplash.com/photo-1513467655676-561b7d489a88?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.testimonials-section__inner {
  position: relative;
  z-index: 1;
}

.testimonials-section__title-wrap {
  text-align: center;
}

.testimonials-section__title-wrap h2 {
  margin: 0;
  color: #fff;
  font-family: var(--title);
  font-size: clamp(2.6rem, 4.5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.testimonials-section__title-wrap h2 .is-accent {
  color: #f2a23b;
}

.testimonials-section__divider {
  width: min(100%, 780px);
  height: 1px;
  margin: 22px auto 0;
  background: rgba(255, 255, 255, 0.24);
  position: relative;
}

.testimonials-section__divider span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 136px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.78);
}

.testimonials-slider {
  margin: 68px auto 0;
  width: min(1120px, 100%);
  position: relative;
}

.testimonials-slider__track {
  max-width: 880px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  text-align: center;
  color: #f4f1eb;
}

.testimonial-slide.is-active {
  display: block;
  animation: fadeUpIn 0.52s ease both;
}

.testimonial-slide__quote {
  margin: 0;
  font-size: clamp(1.14rem, 1.5vw, 1.85rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-slide__avatar {
  width: 96px;
  height: 96px;
  margin-top: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.9);
}

.testimonial-slide h3 {
  margin: 20px 0 0;
  color: #f4f1eb;
  font-family: var(--title);
  font-size: clamp(2.1rem, 2.5vw, 3rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

.testimonial-slide__role {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.2rem, 1.35vw, 1.55rem);
}

.testimonial-arrow {
  position: absolute;
  top: 58%;
  width: 58px;
  height: 58px;
  border: 0;
  background: #f2a23b;
  color: #fff;
  font-family: var(--title);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.testimonial-arrow:hover {
  transform: translateY(-53%);
  background: #f8b359;
}

.testimonial-arrow--left {
  left: 0;
}

.testimonial-arrow--right {
  right: 0;
}

.testimonials-section__title-wrap[data-reveal],
.testimonials-slider[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
}

.testimonials-section__title-wrap.is-visible,
.testimonials-slider.is-visible {
  animation: featureReveal 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0s) both;
}

.quote-strip {
  background: linear-gradient(180deg, #efefef 0%, #e8e8e8 100%);
  padding: 36px 0;
}

.quote-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  padding: 22px 26px;
}

.quote-strip__inner h2 {
  margin: 0;
  color: #101010;
  font-family: var(--title);
  font-size: clamp(1.72rem, 2.5vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.quote-strip__inner h2 .is-accent {
  color: #f2a23b;
}

.quote-strip__button {
  min-width: 268px;
  min-height: 68px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #ef972a, #ffb755);
  color: #fff;
  font-family: var(--title);
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(242, 162, 59, 0.28);
  transition: transform 0.24s ease, background-color 0.24s ease;
}

.quote-strip__button:hover {
  transform: translateY(-2px);
  background: #f7af4f;
}

.quote-strip__inner[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
}

.quote-strip__inner.is-visible {
  animation: featureReveal 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0s) both;
}

.site-footer {
  background: linear-gradient(90deg, #2f2a2a 0%, #343032 100%);
  color: #ece7e2;
}

.site-footer__top {
  padding: 84px 0 74px;
  display: grid;
  grid-template-columns: 1.18fr 1.1fr 0.92fr 1.1fr;
  gap: 44px;
}

.footer-block h3 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  color: #fff;
  line-height: 1;
}

.footer-block h3::after {
  content: "";
  display: block;
  width: 76px;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
  margin-top: 22px;
}

.site-footer__brand p {
  margin: 28px 0 0;
  color: #cdc5bf;
  font-size: 1.01rem;
  line-height: 1.74;
  max-width: 420px;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
}

.site-footer__logo-img {
  width: auto;
  max-width: min(260px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
}

.site-footer__contact-list,
.site-footer__links {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.site-footer__contact-list {
  display: grid;
  gap: 16px;
}

.site-footer__contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
}

.site-footer__icon {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: #f2a23b;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
  margin-top: 0;
}

.site-footer__contact-text {
  display: block;
}

.site-footer__contact-text span {
  display: block;
  color: #d7d0ca;
  font-size: 1.02rem;
  line-height: 1.56;
}

.site-footer__links {
  display: grid;
  gap: 10px;
}

.site-footer__links li {
  position: relative;
  padding-left: 18px;
}

.site-footer__links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #e2dad4;
}

.site-footer__links a {
  color: #d8d1cb;
  font-size: 1.01rem;
  transition: color 0.22s ease, transform 0.22s ease;
  display: inline-block;
}

.site-footer__links a:hover {
  color: #f2a23b;
  transform: translateX(2px);
}

.site-footer__news-text {
  margin: 28px 0 0;
  color: #d2cbc5;
  font-size: 1.01rem;
  line-height: 1.68;
}

.site-footer__newsletter {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 64px;
}

.site-footer__newsletter input {
  border: 0;
  min-height: 56px;
  padding: 0 16px;
  font-size: 1rem;
  color: #30363a;
  background: #f0f0f0;
}

.site-footer__newsletter input:focus {
  outline: 2px solid #f2a23b;
  outline-offset: -2px;
}

.site-footer__newsletter button {
  border: 0;
  background: #f2a23b;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.22s ease;
}

.site-footer__newsletter button:hover {
  background: #f7af4f;
}

.site-footer__newsletter svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__socials {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__socials a {
  width: 46px;
  height: 46px;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.site-footer__socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.site-footer__socials a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.site-footer__socials .is-fb { background: #3b5998; }
.site-footer__socials .is-ig { background: #e1306c; }
.site-footer__socials .is-tw { background: #00aced; }

.site-footer__bottom {
  background: rgba(0, 0, 0, 0.17);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__bottom p {
  margin: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #d6cec8;
  font-size: 1.01rem;
}

.site-footer [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

.site-footer .is-visible {
  animation: featureReveal 0.74s cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0s) both;
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes featureReveal {
  from {
    opacity: 0;
    transform: translateY(38px);
    filter: blur(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes iconFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-band__item,
  .feature-band__item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .feature-band__item.is-visible .feature-band__icon {
    animation: none;
  }

  .welcome-block__media[data-reveal],
  .welcome-block__intro[data-reveal],
  .welcome-block__stat[data-reveal],
  .welcome-block__media.is-visible,
  .welcome-block__intro.is-visible,
  .welcome-block__stat.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .service-card,
  .service-card.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .projects-recent__title-wrap[data-reveal],
  .project-tabs[data-reveal],
  .projects-recent__grid[data-reveal],
  .projects-recent__actions[data-reveal],
  .projects-recent__title-wrap.is-visible,
  .project-tabs.is-visible,
  .projects-recent__grid.is-visible,
  .projects-recent__actions.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .testimonial-slide.is-active {
    animation: none;
  }

  .testimonials-section__title-wrap[data-reveal],
  .testimonials-slider[data-reveal],
  .testimonials-section__title-wrap.is-visible,
  .testimonials-slider.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .quote-strip__inner[data-reveal],
  .quote-strip__inner.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .site-footer [data-reveal],
  .site-footer .is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1080px) {
  .topbar__inner,
  .navbar {
    gap: 14px;
  }

  .main-nav {
    gap: 20px;
    font-size: 15px;
  }

  .hero__title {
    font-size: clamp(2.35rem, 6vw, 5rem);
  }

  .feature-band__item {
    padding: 0 34px;
  }

  .welcome-block__media {
    width: min(1380px, calc(100% - 26px));
  }

  .welcome-block__intro {
    max-width: 870px;
  }

  .services-showcase__grid {
    gap: 26px;
  }

  .project-tabs {
    min-height: 88px;
    gap: 20px;
  }

  .projects-recent__grid {
    margin-top: 62px;
  }

  .testimonial-arrow {
    width: 54px;
    height: 54px;
  }

  .quote-strip__button {
    min-width: 244px;
    min-height: 64px;
    font-size: 0.94rem;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 36px;
  }
}

@media (max-width: 900px) {
  .topbar {
    font-size: 13px;
  }

  .topbar__inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .topbar__social {
    border-left: 0;
  }

  .navbar {
    min-height: 82px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    display: grid;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
    z-index: 15;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .main-nav.is-open {
    max-height: 540px;
  }

  .main-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .hero {
    min-height: calc(100vh - 186px);
  }

  .hero__content {
    padding: 70px 0 120px;
  }

  .hero__kicker {
    letter-spacing: 0.3em;
  }

  .hero__title {
    font-size: clamp(2.2rem, 7vw, 4.1rem);
  }

  .hero__lead {
    max-width: 640px;
  }

  .hero__arrow {
    width: 46px;
    height: 46px;
    font-size: 38px;
  }

  .hero__arrow--left {
    left: 12px;
  }

  .hero__arrow--right {
    right: 12px;
  }

  .feature-band {
    padding: 76px 0 82px;
  }

  .feature-band__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .feature-band__item {
    padding: 0;
  }

  .feature-band__item:not(:last-child)::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -22px;
    width: 160px;
    height: 1px;
    transform: translateX(-50%);
  }

  .welcome-block {
    padding: 28px 0 88px;
  }

  .welcome-block::before,
  .welcome-block::after {
    display: none;
  }

  .welcome-block__media {
    width: min(100%, calc(100% - 22px));
    border-width: 12px;
  }

  .welcome-block__media img {
    height: min(540px, 58vw);
  }

  .welcome-block__intro {
    margin-top: 68px;
  }

  .welcome-block__stats {
    margin-top: 42px;
    grid-template-columns: 1fr;
    max-width: 440px;
    gap: 18px;
  }

  .services-showcase {
    padding: 78px 0 86px;
  }

  .services-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 56px;
    gap: 22px;
  }

  .projects-recent {
    padding: 80px 0 108px;
  }

  .project-tabs {
    width: min(780px, 100%);
    min-height: 78px;
    gap: 16px 28px;
  }

  .projects-recent__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .projects-recent__actions {
    margin-top: 50px;
  }

  .testimonials-section {
    padding: 78px 0 84px;
  }

  .testimonials-slider {
    margin-top: 54px;
  }

  .testimonial-slide__quote {
    font-size: clamp(1.08rem, 2.3vw, 1.45rem);
  }

  .testimonial-slide__avatar {
    width: 86px;
    height: 86px;
    margin-top: 42px;
  }

  .testimonial-arrow {
    top: 62%;
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }

  .quote-strip {
    padding: 28px 0;
  }

  .quote-strip__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 18px 16px;
  }

  .quote-strip__button {
    min-width: 236px;
    min-height: 60px;
  }

  .site-footer__top {
    padding: 62px 0 56px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-block h3::after {
    margin-top: 14px;
  }

  .site-footer__bottom p {
    min-height: 70px;
    font-size: 0.96rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    height: 50px;
    transform: scale(1.45);
  }

  .hero {
    min-height: 640px;
  }

  .hero__content {
    padding: 84px 0 120px;
  }

  .hero__kicker {
    letter-spacing: 0.2em;
    font-size: 0.68rem;
  }

  .hero__title {
    margin-top: 11px;
    font-size: clamp(2rem, 11vw, 3.2rem);
    line-height: 0.96;
  }

  .hero__lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .btn {
    width: min(100%, 320px);
    min-width: 0;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__arrow {
    top: auto;
    bottom: 72px;
    transform: none;
  }

  .hero__arrow--left {
    left: 20px;
  }

  .hero__arrow--right {
    right: 20px;
  }

  .hero__dots {
    bottom: 30px;
  }

  .feature-band {
    padding: 66px 0 72px;
  }

  .feature-band__icon {
    width: 92px;
    height: 92px;
    margin-bottom: 30px;
  }

  .feature-band__icon svg {
    width: 40px;
    height: 40px;
  }

  .feature-band__item h2 {
    font-size: clamp(1.75rem, 9vw, 2.2rem);
  }

  .feature-band__item p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .welcome-block {
    padding: 20px 0 74px;
  }

  .welcome-block__media {
    width: calc(100% - 14px);
    border-width: 8px;
  }

  .welcome-block__media img {
    min-height: 220px;
    height: 60vw;
  }

  .welcome-block__intro {
    margin-top: 52px;
  }

  .welcome-block__title {
    margin-top: 12px;
    line-height: 0.98;
  }

  .welcome-block__text {
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .welcome-block__stats {
    margin-top: 34px;
  }

  .welcome-block__stat {
    border-radius: 36px;
    padding: 28px 18px 24px;
  }

  .services-showcase {
    padding: 62px 0 72px;
  }

  .services-showcase__title-wrap h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .services-showcase__divider {
    margin-top: 16px;
  }

  .services-showcase__divider span {
    width: 110px;
  }

  .services-showcase__grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 16px;
  }

  .service-card__body {
    padding: 26px 18px 28px;
  }

  .service-card h3 {
    font-size: 1.52rem;
  }

  .service-card p {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .projects-recent {
    padding: 62px 0 80px;
  }

  .projects-recent__title-wrap h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .projects-recent__divider {
    margin-top: 16px;
  }

  .projects-recent__divider span {
    width: 108px;
  }

  .project-tabs {
    margin-top: 34px;
    min-height: auto;
    padding: 14px 10px;
    gap: 12px 22px;
  }

  .project-tab {
    font-size: 1.02rem;
  }

  .projects-recent__grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .projects-recent__actions {
    margin-top: 36px;
  }

  .projects-recent__button {
    min-width: 196px;
    min-height: 60px;
    font-size: 1rem;
  }

  .testimonials-section {
    padding: 62px 0 70px;
  }

  .testimonials-section__title-wrap h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .testimonials-section__divider {
    margin-top: 16px;
  }

  .testimonials-section__divider span {
    width: 102px;
  }

  .testimonials-slider {
    margin-top: 40px;
    padding: 0 56px;
  }

  .testimonial-slide__quote {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .testimonial-slide__avatar {
    margin-top: 30px;
    width: 74px;
    height: 74px;
  }

  .testimonial-slide h3 {
    margin-top: 14px;
    font-size: 1.92rem;
  }

  .testimonial-slide__role {
    font-size: 1.06rem;
  }

  .testimonial-arrow {
    top: 58%;
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
  }

  .testimonial-arrow--left {
    left: 0;
  }

  .testimonial-arrow--right {
    right: 0;
  }

  .quote-strip {
    padding: 22px 0;
  }

  .quote-strip__inner h2 {
    font-size: clamp(1.35rem, 7.8vw, 2.05rem);
  }

  .quote-strip__inner h2 .is-accent {
    display: block;
    margin-top: 6px;
  }

  .quote-strip__button {
    min-width: 196px;
    min-height: 54px;
    font-size: 0.9rem;
    padding: 0 16px;
  }

  .site-footer__top {
    padding: 52px 0 46px;
  }

  .footer-block h3 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .site-footer__brand p,
  .site-footer__contact-text span,
  .site-footer__links a,
  .site-footer__news-text {
    font-size: 0.97rem;
  }

  .site-footer__newsletter {
    grid-template-columns: 1fr 56px;
  }

  .site-footer__newsletter input {
    min-height: 50px;
  }

  .site-footer__socials a {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .site-footer__bottom p {
    min-height: 64px;
    font-size: 0.9rem;
  }
}