:root {
  --black: #1c1a15;
  --yellow: #ffc42b;
  --yellow-deep: #e8a800;
  --yellow-pale: #fff0c4;
  --yellow-pale2: #fce9ae;
  --cream: #fffdf7;
  --cream-dim: #f4eedd;
  --white: #ffffff;
  --steel: #7a7461;
  --steel-line: #e7e0cb;
  --wa-green: #25d366;
  --radius: 3px;
  --display: "Oswald", sans-serif;
  --body: "Work Sans", sans-serif;
  --mono: "JetBrains Mono", monospace;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
h1,
h2,
h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------- Tape-measure divider (signature element) ---------- */
.tape {
  height: 20px;
  width: 100%;
  background:
    repeating-linear-gradient(90deg, var(--black) 0 2px, transparent 2px 14px),
    var(--yellow);
  background-size:
    14px 100%,
    100% 100%;
  background-position:
    0 100%,
    0 0;
  background-repeat: repeat-x, no-repeat;
  position: relative;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.tape.small {
  height: 9px;
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--black);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 24px;
  height: 24px;
}
.logo-text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.logo-text span {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--steel);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--yellow-deep);
  transition: width 0.2s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}
.btn-primary:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--black);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost:hover {
  background: var(--cream-dim);
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 2px solid var(--black);
  background: var(--cream);
  border-radius: var(--radius);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--black);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(
      135deg,
      rgba(35, 35, 35, 0.8) 0%,
      rgba(70, 70, 70, 0.8) 100%
    ),
    url(img/hero-bg.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--black);
  padding: 72px 0 0;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 640px;
  height: 640px;
  background: var(--yellow-pale);
  border-radius: 50%;
  z-index: 0;
}
.hero-diagonals {
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background: repeating-linear-gradient(
    135deg,
    var(--yellow) 0 16px,
    transparent 16px 32px
  );
  opacity: 0.5;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 56px;
}
.hero-eyebrow {
  color: var(--yellow-deep);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--yellow-deep);
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow-deep);
  padding: 0 2px;
}
.hero p.lede {
  font-size: 1.08rem;
  color: #ffffff;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--black);
  padding: 6px 12px;
  border-radius: var(--radius);
}
.hero-visual {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 100%;
  max-width: 400px;
}
.hero-visual svg {
  width: 100%;
  height: auto;
}

/* ---------- Marquee strip ---------- */
.marquee {
  background: var(--yellow);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  animation: scroll-left 26s linear infinite;
}
.marquee-track span {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  display: inline-block;
  border-right: 2px solid var(--black);
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ---------- Section shell ---------- */
section {
  padding: 96px 0;
}
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head .eyebrow {
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600;
}
.section-head p {
  margin-top: 16px;
  color: var(--steel);
  font-size: 1.02rem;
  max-width: 560px;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--black);
  border: 2px solid var(--black);
}
.service-card {
  background: var(--white);
  padding: 30px 24px;
  transition: background 0.18s ease;
  position: relative;
}
.service-card:hover {
  background: var(--yellow-pale);
}
.service-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--steel);
  margin-bottom: 16px;
  display: block;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow-pale);
  border: 1.5px solid var(--black);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg {
  width: 30px;
  height: 30px;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--steel);
}

/* ---------- About ---------- */
.about {
  background: var(--cream-dim);
}
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-illustration {
  position: relative;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 8px 0 var(--yellow);
  overflow: hidden;
}
.about-illustration svg {
  width: 78%;
  height: 78%;
}
.about-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about .eyebrow {
  color: var(--yellow-deep);
}
.about h2 {
  color: var(--black);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 600;
  margin: 14px 0 22px;
}
.about p {
  color: #4c4736;
  margin-bottom: 16px;
  max-width: 560px;
}
.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: var(--yellow-deep);
  font-weight: 700;
}
.stat span {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
}

/* ---------- Differentiators ---------- */
.diff-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.diff-item {
  border-top: 2px solid var(--black);
  padding-top: 20px;
}
.diff-item svg {
  width: 26px;
  height: 26px;
  margin-bottom: 14px;
  stroke: var(--yellow-deep);
}
.diff-item h3 {
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 8px;
}
.diff-item p {
  font-size: 0.88rem;
  color: var(--steel);
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--white);
}
.gallery-grid {
  column-count: 3;
  column-gap: 14px;
}
.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 14px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dim);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(45, 44, 40, 0.72) 0%,
    rgba(61, 59, 53, 0.72) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(28, 26, 21, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--cream);
  background: transparent;
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-close:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--cream-dim);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--black);
  border: 2px solid var(--black);
}
.test-card {
  background: var(--white);
  padding: 32px 28px;
}
.test-quote {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--yellow-deep);
  line-height: 0.6;
  margin-bottom: 14px;
  display: block;
}
.test-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: #332f24;
}
.test-name {
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--steel);
}
.stars {
  margin-bottom: 12px;
  color: var(--yellow-deep);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  color: var(--black);
  padding: 44px;
  border-radius: var(--radius);
  border: 2px solid var(--black);
  box-shadow: 8px 8px 0 var(--yellow);
}
.contact-card .eyebrow {
  color: var(--yellow-deep);
}
.contact-card h2 {
  color: var(--black);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 600;
  margin: 14px 0 20px;
}
.contact-card p {
  color: #4c4736;
  margin-bottom: 28px;
  max-width: 420px;
}
.contact-list {
  margin-bottom: 30px;
}
.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--steel-line);
}
.contact-list li:first-child {
  border-top: none;
}
.contact-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--yellow-deep);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-list b {
  display: block;
  font-size: 0.95rem;
}
.contact-list span {
  font-size: 0.85rem;
  color: var(--steel);
}
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

/* ---------- Footer ---------- */
footer {
  background: var(--cream);
  color: var(--steel);
  padding: 40px 0 30px;
  border-top: 2px solid var(--black);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: var(--display);
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
}
footer .fine {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease;
}
.float-wa:hover {
  transform: scale(1.08);
}
.float-wa svg {
  width: 32px;
  height: 32px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 44px;
  }
  .hero-visual {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-bg-shape {
    width: 420px;
    height: 420px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-illustration {
    max-width: 280px;
    margin: 0 auto;
  }
  .diff-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    column-count: 2;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--black);
    flex-direction: column;
    gap: 0;
    transform: translateY(-130%);
    transition: transform 0.25s ease;
    z-index: 99;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links a {
    padding: 18px 28px;
    width: 100%;
    border-top: 1px solid var(--steel-line);
  }
  .nav-links .btn {
    margin: 16px 28px 20px;
  }
  .menu-toggle {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .diff-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .gallery-grid {
    column-count: 1;
  }
  section {
    padding: 64px 0;
  }
}
