:root {
  --accent: #ff6a00;
  --text-on-dark: rgba(255, 255, 255, 0.92);
  --text-on-light: rgba(20, 20, 20, 0.88);
  --muted-on-light: rgba(20, 20, 20, 0.62);

  --container: 1180px;
  --radius: 14px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-on-light);
  background: #ffffff;
}

/* Generic page (non-hero) */
.page main {
  padding-top: 96px;
}

.page .site-header {
  position: fixed;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page .nav__link {
  color: rgba(10, 10, 10, 0.62);
}

.page .nav__link:hover,
.page .nav__link.is-active {
  color: rgba(10, 10, 10, 0.86);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 16px 0;
  transition: background-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand__logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  transform: translateX(-32px) scale(2.24);
  transform-origin: left center;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.55)) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.38));
}

.brand__name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  transition: color 240ms ease;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav__link {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  transition: color 220ms ease, opacity 220ms ease;
  position: relative;
  padding: 10px 2px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  opacity: 0.9;
}

.nav__link:hover {
  color: rgba(255, 255, 255, 0.96);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__link.is-active {
  color: rgba(255, 255, 255, 0.96);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease,
    border-color 200ms ease, color 200ms ease;
  user-select: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.35);
  outline-offset: 3px;
}

.btn--estimate {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.28);
}

.btn--estimate:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 106, 0, 0.34);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.28);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(255, 106, 0, 0.34);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.08) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 170px;
}

.hero__copy {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 22px;
  align-items: start;
  max-width: 650px;
}

.hero__accent {
  width: 2px;
  height: 100%;
  background: var(--accent);
  margin-top: 10px;
}

.hero__title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 62px);
  line-height: 1.08;
  color: var(--text-on-dark);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.hero__line {
  display: block;
  width: fit-content;
  padding: 5px 10px;
  margin: 4px 0;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  transform: none;
}

.services-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 18px;
  color: rgba(0, 0, 0, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 200ms ease, transform 200ms ease;
}

.service + .service {
  border-left: 1px solid rgba(0, 0, 0, 0.09);
}

.service:hover {
  background: rgba(0, 0, 0, 0.02);
  transform: translateY(-1px);
}

.service__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, 0.6);
}

/* About */
.about {
  padding: 120px 0;
  background: #fff;
  scroll-margin-top: 96px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 10px 12px 44px;
}

.about__collage::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 2px;
  width: 150px;
  height: 150px;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.08) 0,
    rgba(0, 0, 0, 0.08) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0.7;
  pointer-events: none;
}

.about__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  transition: transform 420ms ease, box-shadow 420ms ease;
  will-change: transform;
}

.about__img:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.16);
}

.about__img--one {
  aspect-ratio: 3 / 4.2;
}

.about__img--two {
  aspect-ratio: 3 / 4.2;
  margin-top: 58px;
}

.about__content {
  padding-top: 10px;
  max-width: 560px;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(20, 20, 20, 0.78);
}

.about__eyebrow::after {
  content: "";
  width: 64px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms ease;
}

.about__content.aos-animate .about__eyebrow::after {
  transform: scaleX(1);
}

.about__title {
  margin: 18px 0 18px;
  font-weight: 300;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: rgba(10, 10, 10, 0.92);
}

.about__text {
  margin: 0;
  line-height: 1.9;
  color: rgba(20, 20, 20, 0.7);
  font-size: 14px;
}

.about__tagline {
  margin: 16px 0 0;
  color: rgba(20, 20, 20, 0.78);
  line-height: 1.7;
  font-weight: 500;
}

.about__cta {
  margin-top: 30px;
}

/* Services */
.services {
  padding: 110px 0 120px;
  background: #f3efe6;
  scroll-margin-top: 96px;
}

.services__head {
  max-width: 920px;
}

.services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(20, 20, 20, 0.78);
}

.services__eyebrow::after {
  content: "";
  width: 64px;
  height: 2px;
  background: var(--accent);
}

.services__title {
  margin: 18px 0 0;
  font-weight: 300;
  font-size: clamp(46px, 5.8vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: rgba(10, 10, 10, 0.92);
}

.services__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.service-card {
  display: block;
  transform: translateY(0);
  transition: transform 340ms ease;
  will-change: transform;
}

.service-card__media {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.10);
  outline: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 340ms ease;
}

.service-card__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 520ms ease;
}

.service-card__label {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(20, 20, 20, 0.86);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card:hover .service-card__media {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.16);
}

.service-card:hover .service-card__img {
  transform: scale(1.06);
}

/* Why */
.why {
  padding: 120px 0;
  background: #fff;
  scroll-margin-top: 96px;
}

.why__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 46px;
  align-items: start;
}

.why__side {
  position: relative;
  padding-left: 56px;
}

.why__side::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.08) 0,
    rgba(0, 0, 0, 0.08) 2px,
    transparent 2px,
    transparent 10px
  );
  opacity: 0.55;
}

.why__heading {
  margin: 0;
  font-weight: 300;
  font-size: clamp(34px, 3.2vw, 44px);
  line-height: 1.1;
  color: rgba(10, 10, 10, 0.92);
}

.why__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 64px;
  row-gap: 52px;
  padding-top: 4px;
}

.why-card {
  max-width: 320px;
}

.why-card__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
}

.why-card__icon svg {
  width: 100%;
  height: 100%;
}

.why-card__icon path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
}

.why-card.is-revealed .why-card__icon path {
  animation: icon-draw 900ms ease forwards;
}

@keyframes icon-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.why-card__title {
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(20, 20, 20, 0.9);
}

.why-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(20, 20, 20, 0.62);
}

/* Projects */
.projects {
  padding: 120px 0;
  background: #f3efe6;
  scroll-margin-top: 96px;
}

.projects__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.projects__title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(10, 10, 10, 0.92);
}

.projects__link {
  font-size: 13px;
  color: rgba(20, 20, 20, 0.62);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 200ms ease;
  white-space: nowrap;
}

.projects__link:hover {
  color: rgba(20, 20, 20, 0.88);
}

.projects__grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.project-card {
  display: block;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.02);
  outline: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.07);
  transform: translateZ(0);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.project-card__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.12);
}

.project-card:hover .project-card__img {
  transform: scale(1.06);
}

/* FAQ page */
.faq {
  padding: 70px 0 120px;
  background: #f3efe6;
  scroll-margin-top: 96px;
}

.faq__right {
  scroll-margin-top: 96px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.faq__title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(52px, 5.8vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: rgba(10, 10, 10, 0.92);
}

.faq__intro {
  margin: 18px 0 0;
  max-width: 62ch;
  line-height: 1.9;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.62);
}

.faq__list {
  margin-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  color: rgba(20, 20, 20, 0.86);
  cursor: pointer;
}

.faq-q span:first-child {
  font-size: 15px;
}

.faq-q:focus-visible {
  outline: 3px solid rgba(255, 106, 0, 0.28);
  outline-offset: 6px;
}

.faq-plus {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
  opacity: 0.9;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: rgba(20, 20, 20, 0.72);
  transform: translate(-50%, -50%);
  transition: transform 240ms ease, opacity 240ms ease;
}

.faq-plus::after {
  width: 2px;
  height: 18px;
}

.faq-item.is-open .faq-plus::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.2);
}

.faq-a {
  padding: 0 0 16px;
  color: rgba(20, 20, 20, 0.62);
  line-height: 1.85;
  font-size: 13px;
}

.faq-a p {
  margin: 0;
  max-width: 72ch;
}

.consult {
  background: #fff;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.08);
  outline: 1px solid rgba(0, 0, 0, 0.06);
  padding: 36px 40px 32px;
}

.consult__title {
  margin: 0 0 18px;
  font-weight: 400;
  font-size: 28px;
  color: rgba(10, 10, 10, 0.92);
}

.consult__form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(20, 20, 20, 0.76);
}

.field__input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  padding: 12px 14px;
  font: inherit;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.86);
  background: #fff;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.field__input:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.14);
}

.field__input--textarea {
  resize: vertical;
  min-height: 120px;
}

.consult__btn {
  margin-top: 10px;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 16px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  box-shadow: 0 18px 40px rgba(255, 106, 0, 0.24);
}

.consult__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 56px rgba(255, 106, 0, 0.3);
}

.consult__btn:disabled {
  cursor: not-allowed;
  filter: grayscale(0.1) brightness(0.95);
  box-shadow: none;
  transform: none;
}

/* Testimonials */
.testimonials {
  --testimonials-bg: #fff;
  padding: 120px 0;
  background: var(--testimonials-bg);
  scroll-margin-top: 96px;
}

.testimonials__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.testimonials__title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(36px, 3.4vw, 46px);
  line-height: 1.12;
  color: rgba(10, 10, 10, 0.92);
}

.testimonials__link {
  margin-top: 8px;
  display: inline-block;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.62);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: color 200ms ease;
}

.testimonials__link:hover {
  color: rgba(20, 20, 20, 0.86);
}

.testimonials__grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.t-card {
  position: relative;
  background: rgba(0, 0, 0, 0.03);
  padding: 26px 30px 24px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.t-card__accent {
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform-origin: left;
}

.t-card__quote {
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(20, 20, 20, 0.72);
  max-width: 42ch;
  flex: 1;
}

.t-card__foot {
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
}

.t-card__name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(20, 20, 20, 0.86);
}

.t-card__date {
  font-size: 12px;
  color: rgba(20, 20, 20, 0.55);
}


.t-card {
  transition: transform 320ms ease, box-shadow 320ms ease;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.06);
  outline: 1px solid rgba(0, 0, 0, 0.05);
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.1);
}

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer__top {
  position: relative;
  padding: 76px 0 54px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.95fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.footer__toTop {
  position: absolute;
  right: 0;
  top: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.55);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: color 200ms ease, opacity 200ms ease;
}

.footer__toTop::before {
  content: "";
  display: block;
  width: 1px;
  height: 64px;
  background: rgba(0, 0, 0, 0.18);
  margin: 0 auto 14px;
}

.footer__toTop:hover {
  color: rgba(20, 20, 20, 0.82);
}

.footer__brandTop {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__brandLogo {
  width: 108px;
  height: 108px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.footer__brandName {
  font-size: 13px;
  font-weight: 700;
  color: rgba(10, 10, 10, 0.88);
}

.footer__trust {
  margin-top: 26px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.footer__trustTitle {
  font-weight: 300;
  font-size: 30px;
  line-height: 1.16;
  color: rgba(10, 10, 10, 0.92);
}

.footer__trustRule {
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.footer__ctaRow {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.92);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}

.footer-btn svg {
  width: 16px;
  height: 16px;
}

.footer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

.footer-btn--outline {
  background: transparent;
  color: rgba(10, 10, 10, 0.82);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: none;
}

.footer-btn--outline:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-1px);
}

.footer__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.86);
}

.footer__meta {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.footer__metaRow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(20, 20, 20, 0.66);
  transition: color 200ms ease;
}

.footer__metaRow:hover {
  color: rgba(20, 20, 20, 0.86);
}

.footer__metaRow svg {
  width: 16px;
  height: 16px;
  color: rgba(20, 20, 20, 0.6);
}

.footer__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer__list a {
  font-size: 13px;
  color: rgba(20, 20, 20, 0.66);
  transition: color 200ms ease;
}

.footer__list a:hover {
  color: rgba(20, 20, 20, 0.86);
}

.footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer__bottomInner {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(20, 20, 20, 0.56);
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer__socialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  outline: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
  color: rgba(20, 20, 20, 0.7);
  transition: transform 200ms ease, background-color 200ms ease, color 200ms ease;
}

.footer__socialLink svg {
  width: 16px;
  height: 16px;
}

.footer__socialLink:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.05);
  color: rgba(20, 20, 20, 0.9);
}

.footer__legal {
  display: inline-flex;
  gap: 22px;
  justify-content: flex-end;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(20, 20, 20, 0.56);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 200ms ease;
}

.footer__legal a:hover {
  color: rgba(20, 20, 20, 0.86);
}

/* Anime.js initial state (only when anime is available) */
.can-anime .testimonials [data-tm] {
  opacity: 0;
  transform: translateY(16px);
}

.can-anime .testimonials .t-card__accent {
  transform: scaleX(0);
}

/* Header color swap after scroll */
.site-header.is-scrolled .brand__name {
  color: rgba(10, 10, 10, 0.86);
}

.site-header.is-scrolled .nav__link {
  color: rgba(10, 10, 10, 0.62);
}

.site-header.is-scrolled .nav__link:hover,
.site-header.is-scrolled .nav__link.is-active {
  color: rgba(10, 10, 10, 0.86);
}

/* Motion safety */
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .hero__bg {
    transform: none;
    animation: none;
  }

  .about__img:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .header__inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .btn--estimate {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 18px;
  }

  .hero__content {
    padding: 120px 0 185px;
  }

  .about {
    padding: 96px 0;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__content {
    max-width: none;
  }

  .services {
    padding: 96px 0 104px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .why {
    padding: 96px 0;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .why__side {
    padding-left: 52px;
  }

  .why__cards {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 34px;
    row-gap: 40px;
  }

  .why-card {
    max-width: none;
  }

  .projects {
    padding: 96px 0;
  }

  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .testimonials {
    padding: 96px 0;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .t-card {
    min-height: auto;
  }

  .faq {
    padding: 54px 0 96px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .consult {
    padding: 30px 26px 26px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer__toTop {
    display: none;
  }

  .footer__bottomInner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(var(--container), calc(100% - 34px));
  }

  .brand__name {
    display: none;
  }

  .brand__logo {
    width: 48px;
    height: 48px;
    transform: translateX(-24px) scale(2.12);
  }

  .nav {
    gap: 14px;
  }

  .hero__copy {
    grid-template-columns: 4px 1fr;
    gap: 16px;
  }

  .hero__content {
    padding: 112px 0 210px;
  }

  .hero__bottom {
    bottom: 14px;
  }

  .services-strip {
    grid-template-columns: 1fr;
  }

  .about {
    padding: 84px 0;
  }

  .about__collage {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 0 24px;
  }

  .about__img--two {
    margin-top: 0;
  }

  .services {
    padding: 84px 0 96px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why {
    padding: 84px 0;
  }

  .why__cards {
    grid-template-columns: 1fr;
    row-gap: 34px;
  }

  .projects {
    padding: 84px 0;
  }

  .projects__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects__grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding: 84px 0;
  }

  .faq {
    padding: 44px 0 84px;
  }


@media (prefers-reduced-motion: reduce) {
  .can-anime .testimonials [data-tm] {
    opacity: 1;
    transform: none;
  }

  .can-anime .testimonials .t-card__accent {
    transform: scaleX(1);
  }
}
  .service + .service {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
  }
}
