:root {
  --dark: #2b1f17;
  --dark-2: #3a2a1f;
  --light: #f6f3f1;
  --accent: #f2c452;
  --text: #2a2a2a;
  --muted: #7a6f6a;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #f2efec;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }


  .paint-drop,
  .paint-roller {
    animation: none;
  }
  .hero__cta,
  .hero__paint-art,
  .paint-drop,
  .paint-roller {
    animation: none !important;
    transform: none !important;
  }
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

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

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

.btn--primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
  background: #f0b735;
}

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

.btn--dark:hover {
  background: var(--dark-2);
}

.main-header {
  background: #f7f2ed;
  padding: 8px 0 11px;
}

.main-header__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 227px;
  height: auto;
}

.header-social {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: var(--dark);
}

.header-banner {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  width: 61%;
  justify-self: end;
  left: 0;
  transform: translateX(-120px) !important;
}

.header-banner__image {
  height: 81px;
  background: linear-gradient(120deg, #efe1d3, #d6c3b1);
}

.header-banner__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 22px;
  color: #fff;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.header-banner__text strong {
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.main-nav {
  background: var(--dark);
}

.main-nav__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #d9d1cc;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.nav-link__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  color: inherit;
}

.nav-link__icon svg {
  width: 100%;
  height: 100%;
}

.nav-link__icon--home {
  width: 22px;
  height: 22px;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-links .is-active {
  background: #fff;
  color: var(--dark);
}

.hamburger {
  display: none;
  align-items: center;
  gap: 6px;
  z-index: 0;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  font: inherit;
}

.hamburger__icon {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.hamburger__icon span {
  width: 26px;
  height: 3px;
  background: currentColor;
  border-radius: 6px;
}

.hamburger__label {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(43, 42, 40, 0.85), rgba(91, 75, 60, 0.85)),
    url("../img/background.png") center/cover no-repeat;
  min-height: 448px;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero__content {
  position: relative;
  max-width: 520px;
  padding: 35px 0;
  z-index: 1;
  left: -198px;
}

.hero__paint-art {
  position: absolute;
  right: clamp(24px, 7vw, 96px);
  top: 52%;
  transform: translateY(-50%);
  width: min(44vw, 560px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.92;
  animation: heroArtFloat 4.5s ease-in-out infinite;
}

.hero__paint-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.paint-frame {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.24);
  stroke-width: 3;
}

.paint-stroke {
  transform-origin: 104px 62px;
  animation: paintStrokeFill 3.2s ease-in-out infinite;
}

.paint-drop {
  transform-origin: center;
}

.paint-drop--one {
  animation: dropPulse 2.8s ease-in-out infinite;
}

.paint-drop--two {
  animation: dropPulse 2.8s ease-in-out infinite 0.5s;
}

.paint-roller {
  transform-origin: 110px 84px;
  animation: rollerMove 3.2s ease-in-out infinite;
}

@keyframes paintStrokeFill {
  0%,
  100% {
    transform: scaleY(0.18);
    opacity: 0.35;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.95;
  }
}

.hero__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: #f2d49d;
  margin-bottom: 12px;
}

.hero__cta {
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.45);
  animation: whatsappPulse 1.8s ease-in-out infinite;
}

.hero__cta:hover {
  background: #1ebe57;
  border-color: #1ebe57;
}

.hero__cta-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.hero__cta-icon svg {
  width: 100%;
  height: 100%;
}


@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes heroArtFloat {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(calc(-50% - 8px)) translateX(4px);
  }
}

@keyframes dropPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes rollerMove {
  0%,
  100% {
    transform: rotate(-14deg) translateX(0);
  }
  50% {
    transform: rotate(-9deg) translateX(6px);
  }
}


.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

.hero p {
  margin-bottom: 24px;
  color: #f1ede9;
}

.about {
  background: #f4f1ee;
  padding: 56px 0;
}

.about__content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about__title-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #5b4b3c;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.about__title-icon svg {
  width: 30px;
  height: 30px;
}

.about__highlight {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.services {
  background: #f6f4f2;
  padding: 70px 0 90px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.section-header__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-header__title-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #5b4b3c;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.section-header__title-icon svg {
  width: 30px;
  height: 30px;
}

.section-header p {
  color: var(--muted);
  max-width: 650px;
  margin: 0 auto;
}

.services-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-item {
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 28px 28px 28px 52px;
  box-shadow: 0 20px 40px rgba(30, 24, 18, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.service-item__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #5b4b3c;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16), 0 6px 14px rgba(43, 31, 23, 0.22);
}

.service-item__icon svg {
  width: 26px;
  height: 26px;
}

.service-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(242, 196, 82, 0.18);
}

.service-item__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-item h3 {
  font-size: 1.1rem;
}

.service-item p {
  color: var(--muted);
}

.portfolio {
  background: #efe9e4;
  padding: 56px 0;
}

.portfolio__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.portfolio__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}


.portfolio__title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.portfolio__title-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  color: #fff;
  background: #5b4b3c;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.portfolio__title-icon svg {
  width: 100%;
  height: 100%;
}

.portfolio-carousel {
  position: relative;
  --carousel-width: 76.3%;
  padding-bottom: 24px;
}

.portfolio-carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #fff;
  max-width: var(--carousel-width);
  margin: 0 auto;
}

.portfolio-carousel__track {
  display: flex;
  transition: transform 0.5s ease;
}

.portfolio-carousel__slide {
  flex: 0 0 100%;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f2ece6;
}

.portfolio-carousel__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
  filter: blur(30px) saturate(1.15);
  opacity: 0.45;
  transform: scale(1.1);
  z-index: 0;
}

.portfolio-carousel__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255, 236, 225, 0.5), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(219, 196, 178, 0.35), transparent 60%);
  opacity: 0.6;
  z-index: 1;
}

.portfolio-carousel__slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--dark);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-button--prev {
  left: calc((100% - var(--carousel-width)) / 2 - 12px);
}

.carousel-button--next {
  right: calc((100% - var(--carousel-width)) / 2 - 12px);
}

.carousel-button:hover {
  background: var(--dark-2);
  transform: translateY(calc(-50% - 2px));
}

.portfolio-carousel__dots {
  position: absolute;
  left: 50%;
  top: calc(100% + 6px);
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  gap: 8px;
}

.portfolio-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(51, 35, 22, 0.35);
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease;
}

.portfolio-carousel__dot.is-active {
  background: #3a2a1e;
  transform: scale(1.2);
}

.portfolio-showcase {
  margin-top: 26px;
}

.portfolio-showcase__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.portfolio-showcase__copy {
  text-align: center;
  margin: -4px auto 18px;
  max-width: 780px;
}

.portfolio-showcase__copy h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  color: #3d2f23;
  margin-bottom: 4px;
}

.portfolio-showcase__copy p {
  color: #676a70;
}

.portfolio-filter {
  border: 1px solid #c9c1b9;
  color: #4a4a4a;
  background: #f2f2f2;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.portfolio-filter:hover {
  background: #ece6df;
}

.portfolio-filter.is-active {
  color: #413327;
  border-color: #c8b39d;
  background: #f6f0ea;
}

.portfolio-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.portfolio-service-card {
  --service-card-media-height: clamp(167px, 16.7vw, 292px);
  background: #f9f9f9;
  border: 1px solid #e4e8ef;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(41, 44, 50, 0.08);
}

.portfolio-service-card[hidden] {
  display: none;
}

.portfolio-showcase__grid > .portfolio-service-card:not([hidden]):only-child {
  --service-card-media-height: clamp(240px, 24vw, 420px);
}

.portfolio-service-card__media {
  height: var(--service-card-media-height);
  min-height: var(--service-card-media-height);
  background: linear-gradient(160deg, #eeece9, #e4e0db);
}

.portfolio-service-card__carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-service-card__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s ease;
}

.portfolio-service-card__controls {
  position: absolute;
  inset: auto 10px 10px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.portfolio-service-card__nav {
  pointer-events: auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(23, 27, 33, 0.5);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.portfolio-service-card__nav:hover {
  background: rgba(23, 27, 33, 0.72);
}

.portfolio-service-card__slide {
  flex: 0 0 100%;
  height: var(--service-card-media-height);
  min-height: var(--service-card-media-height);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px;
}

.portfolio-service-card__slide:nth-child(even):not(.portfolio-service-card__slide--preview) {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(214, 205, 194, 0.25));
}

.portfolio-service-card__icon {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: #5b4b3c;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.portfolio-service-card__icon svg {
  width: 38px;
  height: 38px;
}

.portfolio-service-card__media h3 {
  color: #1f2938;
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.2;
}

.portfolio-service-card__body {
  padding: 18px 22px 20px;
}

.portfolio-service-card__name {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #7b6b5b;
}

.portfolio-service-card__body h4 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.portfolio-service-card__body p {
  color: #6b6e74;
}


.portfolio-service-card__slide--preview {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-color: #5b4b3c;
  background-image: var(--preview-image, linear-gradient(140deg, #8f7a66, #5b4b3c));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.portfolio-service-card__slide--preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}

.portfolio-service-card__slide--preview h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}


.portfolio-service-card--colorable {
  --selected-tint: rgba(255, 255, 255, 0.18);
}

.portfolio-service-card--colorable .portfolio-service-card__slide--preview::after {
  background: linear-gradient(0deg, var(--selected-tint), var(--selected-tint));
}

.portfolio-color-picker {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portfolio-color-picker__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6f6154;
  font-weight: 700;
}

.portfolio-color-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-color-input {
  width: 42px;
  height: 34px;
  border: 1px solid #cfc4b7;
  border-radius: 10px;
  padding: 2px;
  background: #fff;
  cursor: pointer;
}

.portfolio-color-hex {
  width: 108px;
  height: 34px;
  border: 1px solid #d7d0c8;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: #4d4136;
  background: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portfolio-color-hex:focus-visible,
.portfolio-color-input:focus-visible {
  outline: 2px solid #8a7764;
  outline-offset: 1px;
}

.portfolio-color-rgb {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.portfolio-color-rgb label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6f6154;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.portfolio-color-rgb-input {
  height: 38px;
  border: 1px solid #d7d0c8;
  border-radius: 10px;
  padding: 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  color: #2b3443;
  background: #fff;
}

.footer {
  background: var(--dark);
  color: #f3ede8;
  padding: 42px 0 0;
}

.footer-logo {
  width: 140px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 32px;
}

.footer h4 {
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 8px;
  color: #d2c5bf;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d2c5bf;
  margin-bottom: 6px;
  max-width: 360px;
  line-height: 1.35;
}

.footer-address--secondary {
  padding-left: 36px;
  margin-top: -2px;
}

.footer-address__icon {
  width: 26px;
  height: 26px;
  color: #d7c7b8;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 640px) {
  .hero__paint-art {
    width: min(56vw, 220px);
    right: -6px;
    bottom: 6px;
    opacity: 0.72;
  }
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-phone__icon {
  width: 24px;
  height: 24px;
  color: #d7c7b8;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-email__icon {
  width: 24px;
  height: 24px;
  color: #d7c7b8;
}

.footer a:hover {
  color: #fff;
}

.footer__bottom {
  background: #231810;
  text-align: center;
  padding: 14px 0;
  font-size: 0.85rem;
}

.footer__bottom a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer__bottom a:hover {
  color: #fff;
}

@media (max-width: 980px) {
  .main-header__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .logo {
    justify-content: center;
  }

  .header-social {
    justify-content: center;
  }

  .header-banner__image {
    height: 140px;
  }

  .header-banner {
    width: 100%;
    justify-self: stretch;
    transform: none !important;
  }

  .about__content {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__paint-art {
    display: none;
  }
}

@media (max-width: 720px) {
  .main-header {
    padding: 5px 0 8px;
  }

  .logo {
    transform: translateY(3px);
  }

  .header-social {
    transform: translateY(-6px);
  }

  .header-social .social-link {
    width: 46px;
    height: 46px;
  }

  .header-social .social-link svg {
    width: 26px;
    height: 26px;
  }

  .main-nav__content {
    flex-direction: column;
    align-items: stretch;
  }

  .hamburger {
    display: inline-flex;
    margin-left: 0;
    margin-right: auto;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: none;
    padding-top: 12px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: fit-content;
  }

  .hero {
    min-height: 416px;
  }

  .hero__content {
    left: 0;
  }

  .service-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header__title,
  .about__title {
    width: fit-content;
    margin: 0 auto;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
  }

  .section-header h2,
  .about h2 {
    font-size: clamp(1.9rem, 7.6vw, 2.3rem);
    line-height: 1.1;
  }

  .section-header__title-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .section-header__title-icon svg {
    width: 26px;
    height: 26px;
  }

  .about__title-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .about__title-icon svg {
    width: 26px;
    height: 26px;
  }

  .footer__content {
    grid-template-columns: 1fr;
  }

  .portfolio-carousel {
    padding: 0 0 20px;
    gap: 8px;
    --carousel-width: 100%;
  }

  .carousel-button {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    transform: none;
  }

  .carousel-button:hover {
    transform: translateY(-1px);
  }

  .portfolio-carousel__slide {
    padding: 10px;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .portfolio-carousel__slide img {
    height: 100%;
  }

  .portfolio-carousel__dots {
    top: calc(100% + 6px);
    gap: 6px;
  }

  .portfolio-carousel__dot {
    width: 8px;
    height: 8px;
  }

  .portfolio-showcase__filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .portfolio-showcase__copy {
    text-align: left;
    margin: 4px 0 14px;
  }

  .portfolio-showcase__copy h3 {
    font-size: 1.02rem;
  }

  .portfolio-showcase__copy p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .portfolio-filter {
    padding: 8px 16px;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .portfolio-showcase__grid {
    grid-template-columns: 1fr;
  }

  .portfolio-color-picker {
    gap: 10px;
  }

  .portfolio-color-custom {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    gap: 12px;
  }

  .portfolio-color-input {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    padding: 0;
    border: 2px solid #bfb6ac;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  }

  .portfolio-color-hex {
    width: 100%;
    height: 44px;
    font-size: 1rem;
  }

  .portfolio-color-rgb {
    display: grid;
  }

  .portfolio-color-rgb-input {
    height: 50px;
    font-size: 1.55rem;
  }

  .portfolio-service-card {
    --service-card-media-height: 308px;
  }

  .portfolio-service-card__media,
  .portfolio-service-card__slide {
    height: var(--service-card-media-height);
    min-height: var(--service-card-media-height);
  }

  .portfolio-service-card__slide--preview {
    background-size: cover;
    background-position: center;
    image-rendering: auto;
  }

  .portfolio-service-card__icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .portfolio-service-card__icon svg {
    width: 32px;
    height: 32px;
  }

  .carousel-button--prev {
    left: -12px;
  }

  .carousel-button--next {
    right: -12px;
  }

}

@media (max-width: 480px) {
  .portfolio-service-card {
    --service-card-media-height: 341px;
  }

  .portfolio-service-card__media,
  .portfolio-service-card__slide {
    height: var(--service-card-media-height);
    min-height: var(--service-card-media-height);
  }
}
