:root {
  --bg-base: #0d0c0b;
  --bg-elevate: #1a1714;
  --orange: #e8611c;
  --orange-light: #ff8a3d;
  --white-soft: #f5f1ea;
  --white-dim: rgba(245, 241, 234, 0.65);

  --ease-organic: cubic-bezier(0.34, 0.02, 0.24, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--white-soft);
  font-family: 'Heebo', sans-serif;
  overflow-x: hidden;
}

/* ===== Reveal on scroll ===== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease-soft);
}

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

/* ===== Hero ===== */

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-block: clamp(2.5rem, 6vh, 4rem);
}

.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 50% 42%, var(--bg-elevate) 0%, var(--bg-base) 65%);
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

/* Glowing particles */

.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  bottom: -5%;
  width: var(--size, 5px);
  height: var(--size, 5px);
  border-radius: 50%;
  background: var(--orange-light);
  box-shadow: 0 0 6px 2px rgba(255, 138, 61, 0.85), 0 0 14px 4px rgba(232, 97, 28, 0.45);
  opacity: 0;
  animation: particle-rise var(--duration, 3.2s) linear infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes particle-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 0.9; }
  100% { transform: translateY(-108vh) translateX(var(--drift, 20px)); opacity: 0; }
}

/* ===== Content ===== */

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 780px;
}

.hero__logo-wrap {
  position: relative;
  width: clamp(240px, 32vw, 400px);
  height: clamp(240px, 32vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.hero__halo {
  position: absolute;
  inset: -35%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 97, 28, 0.55) 0%, rgba(232, 97, 28, 0.18) 45%, transparent 72%);
  filter: blur(6px);
  animation: breathe 5.5s var(--ease-organic) infinite;
}

.hero__halo::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 61, 0.4) 0%, transparent 70%);
  animation: breathe-inner 4.2s var(--ease-organic) infinite;
  animation-delay: -1.1s;
}

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

@keyframes breathe-inner {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.12); opacity: 0.95; }
}

.hero__logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__services {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--orange-light);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid rgba(232, 97, 28, 0.5);
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
}

.hero__services li {
  position: relative;
  padding-inline-start: 1rem;
}

.hero__services li:first-child {
  padding-inline-start: 0;
}

.hero__services li:not(:first-child)::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.9em;
  background: rgba(255, 138, 61, 0.4);
}

.hero__title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.25;
  color: var(--white-soft);
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
}

.hero__title-highlight {
  color: var(--orange-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 560px;
  line-height: 1.6;
}

/* ===== Social Proof ===== */

.proof {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: clamp(2rem, 5vh, 3rem) clamp(4rem, 9vh, 6.5rem);
  padding-inline: 1.5rem;
}

.video-embed {
  position: relative;
  width: clamp(220px, 60vw, 300px);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(232, 97, 28, 0.4);
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 3rem;
}

.video-embed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 12, 11, 0.1) 0%, rgba(13, 12, 11, 0.45) 100%);
  pointer-events: none;
}

.video-embed__play {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--orange-light);
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px 4px rgba(232, 97, 28, 0.25);
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.video-embed__play:hover {
  transform: scale(1.06);
  box-shadow: 0 0 26px 6px rgba(232, 97, 28, 0.35);
}

.video-embed__play::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--orange-light);
  margin-left: 4px;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.proof__heading {
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--white-soft);
  max-width: 620px;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.proof__heading-highlight {
  color: var(--orange-light);
}

.proof__logos-wrap {
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  padding-block: 0.25rem;
}

.proof__logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  direction: ltr;
  animation: logos-marquee 20s linear infinite;
}

.proof__logo-slide {
  flex: 0 0 auto;
  width: 96px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s var(--ease-soft);
}

.proof__logo-slide--large {
  width: 110px;
  height: 52px;
}

.proof__logo-slide:hover {
  opacity: 1;
}

.proof__logo-slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/* מרחק מחושב ידנית: 5 לוגואים (96+96+110+96+96=494px) + 4 מרווחים פנימיים (4*40=160px) = 654px לסט אחד,
   חצי מסך הרצועה המלאה (2 סטים + מרווח מחבר 40px = 1348px) */
@keyframes logos-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-674px);
  }
}

/* ===== Portfolio ===== */

.portfolio {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: clamp(2rem, 5vh, 3rem) clamp(4rem, 9vh, 6.5rem);
  padding-inline: 1.5rem;
}

.portfolio__header {
  margin-bottom: 2.25rem;
}

.portfolio__title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white-soft);
  margin-bottom: 0.6rem;
}

.portfolio__title-letter {
  display: inline-block;
  color: var(--white-soft);
}

.portfolio__title.is-filling .portfolio__title-letter {
  animation: letter-fill 0.4s ease forwards;
}

@keyframes letter-fill {
  to {
    color: var(--orange-light);
    text-shadow: 0 0 14px rgba(232, 97, 28, 0.5);
  }
}

.portfolio__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 520px;
  margin-inline: auto;
}

.carousel-arrow {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.3);
  background: transparent;
  color: var(--white-soft);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.carousel-arrow:hover {
  border-color: var(--orange-light);
  color: var(--orange-light);
}

@media (hover: hover) and (pointer: fine) {
  .carousel-arrow {
    display: flex;
  }
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.portfolio__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 960px;
  height: clamp(220px, 34vw, 380px);
}

.portfolio__carousel-wrap .carousel-track {
  height: 100%;
  gap: 0.75rem;
  padding-inline: 32%;
}

.portfolio__carousel-slide {
  flex: 0 0 auto;
  height: 100%;
  scroll-snap-align: center;
  border: 1px solid rgba(232, 97, 28, 0.25);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.portfolio__carousel-slide img {
  display: block;
  height: 100%;
  width: auto;
  filter: blur(5px) brightness(0.55);
  transform: scale(0.94);
  transition: filter 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}

.portfolio__carousel-slide.is-active img {
  filter: none;
  transform: scale(1);
}

/* ===== About ===== */

.about {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: clamp(2rem, 5vh, 3rem) clamp(2rem, 5vh, 3rem);
  padding-inline: 1.5rem;
}

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--orange-light);
  border: 1px solid rgba(232, 97, 28, 0.5);
  border-radius: 999px;
  padding: 0.5rem 1.4rem;
  margin-bottom: 1.5rem;
}

.about__heading {
  margin-bottom: 2rem;
}

.about__name {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white-soft);
  margin-bottom: 0.15rem;
}

.about__role {
  display: inline-block;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--orange-light);
  border: 1px solid rgba(232, 97, 28, 0.5);
  border-radius: 999px;
  padding: 0.5rem 1.4rem;
  margin-bottom: 0.9rem;
}

.about__tagline {
  font-size: clamp(0.68rem, 1.5vw, 0.8rem);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 640px;
  line-height: 1.5;
  margin-inline: auto;
}

.about__photo {
  width: clamp(180px, 40vw, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(232, 97, 28, 0.4);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.about__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__vision {
  width: 100%;
  max-width: 640px;
  padding: 2rem 1.5rem;
  color: var(--white-dim);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
}

.about__vision p {
  margin-bottom: 1.5rem;
}

.about__vision p:last-child {
  margin-bottom: 0;
}

.about__vision p.about__vision-intro {
  font-size: clamp(0.95rem, 1.85vw, 1.15rem);
  color: var(--white-soft);
  margin-bottom: 2.25rem;
}

.about__roof-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-block: 3rem 1.25rem;
}

.about__roof-icon {
  width: 42px;
  height: 21px;
  color: var(--orange-light);
}

.about__roof-icon path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.about__roof-heading.is-visible .about__roof-icon path {
  animation: roof-draw 0.9s var(--ease-soft) forwards;
}

@keyframes roof-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.about__roof-title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--orange-light);
}

.about__services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.about__service-chip--wide {
  grid-column: span 2;
  flex-direction: row;
  justify-content: center;
  gap: 0.6rem;
}

.about__service-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.35rem;
  border: 1px solid rgba(232, 97, 28, 0.3);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-soft), transform 0.5s var(--ease-soft);
}

.about__services-grid.is-visible .about__service-chip {
  opacity: 1;
  transform: translateY(0);
}

.about__services-grid.is-visible .about__service-chip:nth-child(1) { transition-delay: 0s; }
.about__services-grid.is-visible .about__service-chip:nth-child(2) { transition-delay: 0.08s; }
.about__services-grid.is-visible .about__service-chip:nth-child(3) { transition-delay: 0.16s; }
.about__services-grid.is-visible .about__service-chip:nth-child(4) { transition-delay: 0.24s; }
.about__services-grid.is-visible .about__service-chip:nth-child(5) { transition-delay: 0.32s; }
.about__services-grid.is-visible .about__service-chip:nth-child(6) { transition-delay: 0.4s; }
.about__services-grid.is-visible .about__service-chip:nth-child(7) { transition-delay: 0.48s; }

.about__service-icon {
  width: 28px;
  height: 28px;
  color: var(--orange-light);
}

.about__service-icon--img {
  display: block;
  object-fit: contain;
}

.about__service-icon--construction {
  width: 36px;
  height: 36px;
}

.about__service-icon path,
.about__service-icon rect {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.about__services-grid.is-visible .about__service-chip .about__service-icon * {
  animation: service-draw 0.6s var(--ease-soft) forwards;
}

.about__services-grid.is-visible .about__service-chip:nth-child(1) .about__service-icon * { animation-delay: 0.15s; }
.about__services-grid.is-visible .about__service-chip:nth-child(2) .about__service-icon * { animation-delay: 0.23s; }
.about__services-grid.is-visible .about__service-chip:nth-child(3) .about__service-icon * { animation-delay: 0.31s; }
.about__services-grid.is-visible .about__service-chip:nth-child(4) .about__service-icon * { animation-delay: 0.39s; }
.about__services-grid.is-visible .about__service-chip:nth-child(5) .about__service-icon * { animation-delay: 0.47s; }
.about__services-grid.is-visible .about__service-chip:nth-child(6) .about__service-icon * { animation-delay: 0.55s; }
.about__services-grid.is-visible .about__service-chip:nth-child(7) .about__service-icon * { animation-delay: 0.63s; }

@keyframes service-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.about__service-chip span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-dim);
  text-align: center;
  line-height: 1.2;
}

.about__vision-journey {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: var(--white-soft);
}

.about__highlights {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-soft);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  font-weight: 500;
  margin-bottom: 2.25rem;
}

.about__highlight {
  margin: 0;
}

.about__highlight-star {
  font-size: 0.95rem;
  animation: star-glow 1.8s ease-in-out infinite;
}

.about__highlight-star:nth-of-type(2) {
  animation-delay: 0.25s;
}

.about__highlight-star:nth-of-type(3) {
  animation-delay: 0.5s;
}

@keyframes star-glow {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(232, 97, 28, 0.35));
    opacity: 0.7;
  }
  50% {
    filter: drop-shadow(0 0 9px rgba(232, 97, 28, 0.9));
    opacity: 1;
  }
}

.about__vision-closing {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--white-soft);
  margin-top: 2.75rem;
}

.about__vision-highlight {
  font-weight: 600;
  background-image: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 40%, #fff2df 50%, var(--orange-light) 60%, var(--orange) 100%);
  background-size: 250% 100%;
  background-position: 200% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--orange-light);
  animation: dream-shimmer 2.8s linear infinite;
}

@keyframes dream-shimmer {
  to {
    background-position: -50% 0;
  }
}

.about__signature {
  position: relative;
  margin-top: 3rem;
  text-align: center;
}

.about__signature-name {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.6vw, 2.9rem);
  letter-spacing: 0.08em;
}

.about__vision p.about__signature-name {
  margin-bottom: 0;
}

.about__signature-tagline {
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  font-weight: 500;
}

.about__sparkle-text {
  direction: ltr;
  background-image: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 40%, #fff2df 50%, var(--orange-light) 60%, var(--orange) 100%);
  background-size: 250% 100%;
  background-position: 200% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--orange-light);
  animation: signature-shimmer 3.2s linear infinite;
}

@keyframes signature-shimmer {
  to {
    background-position: -50% 0;
  }
}

/* ===== Article ===== */

.article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: clamp(2rem, 5vh, 3rem);
  padding-inline: 1.5rem;
}

.article__header {
  margin-bottom: 2.5rem;
}

.article__title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white-soft);
  margin-bottom: 0.75rem;
}

.article__title-highlight {
  color: var(--orange-light);
}

.article__subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: var(--white-dim);
  max-width: 560px;
  line-height: 1.6;
  margin-inline: auto;
}

.article__stack {
  position: relative;
  width: clamp(220px, 55vw, 300px);
  aspect-ratio: 1281 / 1766;
  margin-block: 1.5rem 4rem;
}

.article__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 4px solid var(--white-soft);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: transform 1.2s var(--ease-soft);
}

.article__photo--back {
  z-index: 1;
  animation: photo-shift-back 7s ease-in-out infinite;
}

.article__photo--front {
  z-index: 2;
  animation: photo-shift-front 7s ease-in-out infinite;
}

@keyframes photo-shift-back {
  0%, 40% { transform: rotate(-8deg) translate(-26px, 16px); }
  50%, 90% { transform: rotate(-11deg) translate(-34px, 22px); }
  100% { transform: rotate(-8deg) translate(-26px, 16px); }
}

@keyframes photo-shift-front {
  0%, 40% { transform: rotate(6deg) translate(26px, -14px); }
  50%, 90% { transform: rotate(9deg) translate(34px, -20px); }
  100% { transform: rotate(6deg) translate(26px, -14px); }
}

.article__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--white-soft);
  text-decoration: none;
  background-image: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, var(--orange) 100%);
  background-size: 220% 220%;
  border-radius: 999px;
  padding: 0.9rem 2.2rem;
  box-shadow: 0 8px 22px rgba(232, 97, 28, 0.35);
  animation: button-glow 2.2s ease-in-out infinite;
  transition: transform 0.3s var(--ease-soft);
}

.article__button:hover {
  transform: translateY(-2px);
}

@keyframes button-glow {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow: 0 8px 22px rgba(232, 97, 28, 0.35);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 0 8px 30px rgba(232, 97, 28, 0.65);
  }
}

/* ===== Testimonials ===== */

.testimonials {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: clamp(2rem, 5vh, 3rem) clamp(4rem, 9vh, 6.5rem);
  padding-inline: 1.5rem;
}

.testimonials__title {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.3;
  color: var(--white-soft);
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.testimonials__highlight {
  color: var(--orange-light);
  animation: highlight-blink 1.6s ease-in-out infinite;
}

@keyframes highlight-blink {
  0%, 100% {
    color: var(--orange-light);
    text-shadow: 0 0 16px rgba(232, 97, 28, 0.6);
  }
  50% {
    color: var(--orange);
    text-shadow: 0 0 4px rgba(232, 97, 28, 0.2);
  }
}

.testimonials__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 800px;
  height: clamp(220px, 34vw, 340px);
}

.testimonials__carousel-wrap .carousel-track {
  height: 100%;
  gap: 1rem;
}

.testimonials__card {
  flex: 0 0 auto;
  height: 100%;
  scroll-snap-align: start;
  border: 1px solid rgba(232, 97, 28, 0.25);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.testimonials__card img {
  display: block;
  height: 100%;
  width: auto;
}

/* ===== CTA ===== */

.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(3rem, 8vh, 5rem);
  padding-inline: 1.5rem;
}

.cta__warning {
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.3;
  color: var(--white-soft);
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.cta__warning-flash {
  color: var(--orange-light);
  animation: police-flash 0.55s linear infinite;
}

@keyframes police-flash {
  0%, 49% {
    color: var(--orange-light);
    text-shadow: 0 0 20px rgba(255, 138, 61, 1), 0 0 36px rgba(232, 97, 28, 0.8);
  }
  50%, 100% {
    color: var(--white-soft);
    text-shadow: none;
  }
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Heebo', sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  letter-spacing: 0.02em;
  color: var(--white-soft);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
  text-decoration: none;
  border-radius: 999px;
  padding: 1.1rem 2.4rem;
  box-shadow: 0 10px 28px rgba(232, 97, 28, 0.35);
  background-image: repeating-linear-gradient(45deg, var(--orange) 0 12px, var(--bg-base) 12px 24px);
  background-size: 33.94px 33.94px;
  animation: cta-stripes 1.8s linear infinite;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}

.cta__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(232, 97, 28, 0.45);
}

@keyframes cta-stripes {
  from { background-position: 0 0; }
  to { background-position: 33.94px 0; }
}

.cta__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3.5rem;
}

.cta__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 2px solid rgba(232, 97, 28, 0.45);
  background: transparent;
  color: var(--orange-light);
  transition: border-color 0.3s var(--ease-soft), background-color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

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

.cta__social-link:hover {
  border-color: rgba(232, 97, 28, 0.8);
  background: rgba(232, 97, 28, 0.1);
  transform: translateY(-2px);
}

/* ===== Floating social ===== */

.floating-social {
  position: fixed;
  top: 50%;
  left: 1.25rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-16px);
  transition: opacity 0.4s var(--ease-soft), transform 0.4s var(--ease-soft);
}

.floating-social.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.floating-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(232, 97, 28, 0.45);
  background: rgba(13, 12, 11, 0.4);
  color: var(--orange-light);
  transition: border-color 0.3s var(--ease-soft), background-color 0.3s var(--ease-soft), transform 0.3s var(--ease-soft);
}

.floating-social__link svg {
  width: 16px;
  height: 16px;
}

.floating-social__link:hover {
  border-color: rgba(232, 97, 28, 0.8);
  background: rgba(232, 97, 28, 0.15);
  transform: translateX(-2px);
}

@media (max-width: 420px) {
  .floating-social {
    display: none;
  }
}

/* ===== Lightbox ===== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(13, 12, 11, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-soft);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vh, 2rem);
  inset-inline-end: clamp(1rem, 3vw, 2rem);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 234, 0.3);
  background: transparent;
  color: var(--white-soft);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft);
}

.lightbox__close:hover {
  border-color: var(--orange-light);
  color: var(--orange-light);
}

/* ===== Reduced motion ===== */

@media (prefers-reduced-motion: reduce) {
  .particle,
  .hero__halo,
  .hero__halo::after,
  .portfolio__title-letter,
  .testimonials__highlight,
  .cta__button,
  .about__highlight-star,
  .about__vision-highlight,
  .article__photo--back,
  .article__photo--front,
  .article__button,
  .proof__logos-track,
  .cta__warning-flash {
    animation: none !important;
  }

  .about__sparkle-text {
    animation: none !important;
  }

  .about__roof-icon path {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }

  .about__service-icon path,
  .about__service-icon rect {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }

  .about__service-chip {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__particles {
    display: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .floating-social {
    transition: none !important;
  }
}

/* ===== Responsive ===== */

@media (max-width: 600px) {
  .hero__logo-wrap {
    width: clamp(220px, 55vw, 280px);
    height: clamp(220px, 55vw, 280px);
  }

  .hero__services {
    font-size: 0.8rem;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }
}
