:root {
  --black: #111719;
  --ink: #1d2628;
  --muted: #667276;
  --paper: #f7f8f4;
  --white: #ffffff;
  --green: #008846;
  --lime: #36d06e;
  --blue: #114ca3;
  --red: #b8172c;
  --line: rgba(17, 23, 25, 0.12);
  --shadow: 0 24px 80px rgba(17, 23, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

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

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

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 208, 110, 0.22), rgba(54, 208, 110, 0));
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(380px, auto) 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1180px, calc(100% - 28px));
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 50px rgba(17, 23, 25, 0.11);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: grid;
  grid-template-columns: 118px auto;
  align-items: center;
  gap: 10px;
  min-width: 370px;
  height: 76px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--white);
}

.brand img {
  width: 118px;
  height: 76px;
  object-fit: contain;
  padding: 4px 0 4px 14px;
}

.brand span {
  display: grid;
  min-width: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.brand strong {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.48rem;
  font-weight: 900;
}

.brand small {
  color: var(--green);
  font-family: Anton, Impact, sans-serif;
  font-size: 1.54rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: #2c3436;
  font-size: 0.92rem;
  font-weight: 800;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
}

.header-cta,
.btn.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 136, 70, 0.28);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  grid-template-areas:
    "copy visual"
    "panel visual";
  align-items: center;
  gap: 36px 62px;
  padding: 155px max(24px, calc((100vw - 1180px) / 2)) 76px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(247, 248, 244, 1) 0%, rgba(247, 248, 244, 0.96) 44%, rgba(247, 248, 244, 0.7) 100%),
    radial-gradient(circle at 12% 78%, rgba(0, 136, 70, 0.24), transparent 28%),
    var(--paper);
}

.hero-bg {
  position: relative;
  grid-area: visual;
  min-height: min(660px, 68vh);
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

.hero-photo {
  position: absolute;
  width: clamp(250px, 29vw, 430px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  animation: floatImage 8s ease-in-out infinite;
}

.hero-photo-one {
  right: 8%;
  top: 3%;
  transform: rotate(5deg);
}

.hero-photo-two {
  right: -2%;
  bottom: 3%;
  transform: rotate(-6deg);
  animation-delay: -2.5s;
}

.hero-photo-three {
  left: 1%;
  bottom: 8%;
  width: clamp(220px, 25vw, 365px);
  transform: rotate(-4deg);
  animation-delay: -5s;
}

.hero-copy {
  grid-area: copy;
  max-width: 650px;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 6.25vw, 7.15rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5.6vw, 6.1rem);
  text-transform: uppercase;
}

h3 {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 900;
  margin-bottom: 14px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.lead,
.intro-copy p,
.feature-copy p,
.contact-copy p {
  max-width: 660px;
  color: #3a4649;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  grid-area: panel;
  width: min(100%, 410px);
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(17, 23, 25, 0.86);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-kicker,
.hero-panel small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-weight: 800;
}

.hero-panel strong,
.hero-panel a {
  display: block;
  margin-top: 12px;
}

.hero-panel a {
  color: var(--lime);
  font-size: 1.45rem;
  font-weight: 900;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}

.ticker span {
  padding: 18px 36px;
  font-family: "Barlow Condensed", Anton, Impact, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 4.5rem);
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span:nth-child(3n) {
  color: var(--lime);
}

.ticker span:nth-child(4n) {
  color: #5b8ee8;
}

.section,
.portfolio,
.contact {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
}

.portfolio {
  scroll-margin-top: 120px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  align-items: end;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2)) 110px;
}

.service-card {
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.service-card:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-10px);
}

.service-card span {
  display: block;
  margin-bottom: 70px;
  color: var(--green);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  line-height: 1.55;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.75);
}

.motion-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 50px;
  align-items: center;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background: var(--black);
  color: var(--white);
}

.feature-image {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: 8px;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  transform: scale(1.08);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
  margin-top: 34px;
}

.gallery-card {
  position: relative;
  grid-column: span 2;
  min-height: 190px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 18px 55px rgba(17, 23, 25, 0.13);
}

.gallery-card.feature {
  grid-column: span 3;
  grid-row: span 1;
}

.gallery-card.wide {
  grid-column: span 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-card:hover img {
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.08);
}

.gallery-card:nth-child(2) img {
  object-position: center bottom;
}

.gallery-card:nth-child(5) img {
  object-position: center center;
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 900;
}

.color-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 420px;
}

.color-card {
  position: relative;
  overflow: hidden;
}

.color-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.color-card:hover img {
  transform: scale(1.1);
}

.color-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 23, 25, 0.58), transparent 55%);
}

.color-card span {
  position: absolute;
  left: 26px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  text-transform: uppercase;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 70px;
  align-items: center;
}

.contact-card {
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  line-height: 0.95;
}

.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
}

.btn.full {
  width: 100%;
  margin-top: 16px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 999px;
  background: #20bf55;
  color: var(--white);
  box-shadow: 0 18px 45px rgba(32, 191, 85, 0.34);
  font-weight: 900;
  animation: pulse 1.9s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes floatImage {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -22px;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand {
    min-width: 310px;
  }

  .hero,
  .intro,
  .motion-feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "copy"
      "visual"
      "panel";
    min-height: auto;
    padding-top: 130px;
  }

  .hero-bg {
    min-height: 520px;
  }

  .hero-photo-one {
    right: 4%;
    top: 2%;
  }

  .hero-photo-two {
    right: 7%;
    bottom: 3%;
  }

  .hero-photo-three {
    left: 3%;
    bottom: 10%;
    display: block;
  }

  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    grid-template-columns: repeat(6, 1fr);
  }

  .gallery-card,
  .gallery-card.wide {
    grid-column: span 3;
  }

  .color-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 18px);
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .brand {
    grid-template-columns: 78px auto;
    min-width: 0;
    width: min(230px, 100%);
    height: 56px;
  }

  .brand img {
    width: 78px;
    height: 56px;
    padding: 0 0 0 10px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    font-size: 1.12rem;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero {
    padding-bottom: 42px;
  }

  .hero-bg {
    min-height: 390px;
    opacity: 1;
  }

  .hero-photo {
    width: 68vw;
    border-width: 7px;
  }

  .hero-photo-one {
    right: -7vw;
  }

  .hero-photo-two {
    right: 10vw;
  }

  .hero-photo-three {
    width: 56vw;
    left: -5vw;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .service-card {
    min-height: 230px;
  }

  .gallery-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
  }

  .gallery-card,
  .gallery-card.feature,
  .gallery-card.wide,
  .gallery-card.tall {
    min-width: 78vw;
    height: 390px;
    scroll-snap-align: start;
  }

  .section,
  .portfolio,
  .contact,
  .motion-feature {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
