:root {
  --black: #070707;
  --charcoal: #111111;
  --ink: #1b1b1b;
  --muted: #747474;
  --paper: #f6f5f1;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(7, 7, 7, 0.14);
  --max: 1180px;
  font-family: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
}

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

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

.page {
  min-height: 100vh;
  background: var(--paper);
}

.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    padding 220ms ease;
}

.nav.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 7, 7, 0.9);
  padding-block: 14px;
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(118px, 14vw, 174px);
  height: auto;
}

.brand img,
.footer img {
  object-fit: contain;
  filter: none;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.76);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta,
.nav-whatsapp,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0 22px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.nav-cta,
.button.primary,
.button.submit {
  background: var(--white);
  color: var(--black);
}

.nav-whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: var(--black);
}

.button.whatsapp {
  border-color: #25d366;
  background: #25d366;
  color: var(--black);
}

.button.dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.button.compact {
  min-height: 42px;
  padding-inline: 18px;
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover,
.nav-cta:hover,
.nav-whatsapp:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 132px clamp(20px, 5vw, 72px) clamp(36px, 6vw, 72px);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  opacity: 0.62;
  filter: grayscale(1) contrast(1.04);
  transform: scale(1.08);
  animation: heroSettle 1400ms ease-out forwards;
  object-position: top;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, transparent 44%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.42fr);
  align-items: end;
  gap: clamp(34px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.66);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--muted);
}

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

h1,
h2 {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 980px;
  font-size: clamp(40px, 5.5vw, 78px);
  line-height: 0.98;
}

h2 {
  max-width: 920px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.06;
}

h3 {
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-panel {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.hero-panel strong {
  display: block;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-panel p {
  margin-top: 18px;
  line-height: 1.65;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}

.strip-image {
  height: clamp(180px, 22vw, 300px);
  overflow: hidden;
  border-radius: 18px;
  background: var(--black);
}

.strip-image.large {
  height: clamp(180px, 22vw, 300px);
}

.strip-image img,
.about-image img {
  filter: grayscale(1) contrast(1.04);
  transition:
    filter 260ms ease,
    transform 420ms ease;
}

.strip-image:hover img,
.about-image:hover img {
  filter: grayscale(0.2) contrast(1.04);
  transform: scale(1.045);
}

.section {
  padding: clamp(64px, 7vw, 104px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 92px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  display: block;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.section-heading.compact {
  display: block;
}

.section-heading h2 {
  max-width: 760px;
}

.services {
  background: var(--paper);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: 360px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: var(--white);
  padding: 28px;
  transition:
    background 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.service-card:hover,
.service-card:nth-child(2) {
  background: var(--white);
  color: var(--ink);
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card:hover p,
.service-card:hover .service-kicker,
.service-card:hover .service-number,
.service-card:nth-child(2) p,
.service-card:nth-child(2) .service-kicker,
.service-card:nth-child(2) .service-number {
  color: var(--muted);
}

.service-card:hover a,
.service-card:nth-child(2) a {
  color: var(--ink);
}

.service-card:hover a::after,
.service-card:nth-child(2) a::after {
  background: var(--ink);
}

.service-card:nth-child(2):hover {
  color: var(--ink);
}

.service-card:nth-child(2):hover {
  color: var(--ink);
}

.service-number {
  order: -1;
  width: fit-content;
  margin: 0 0 18px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 8px;
  color: var(--muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-card p {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.service-kicker {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card a {
  position: relative;
  width: fit-content;
  margin-top: 24px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-card a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--ink);
}

.soft-cta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: #555;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.soft-cta span {
  margin-right: 10px;
}

.services .soft-cta,
.method .soft-cta {
  font-size: 18px;
  font-weight: 800;
}

.services .soft-cta span,
.method .soft-cta span {
  color: var(--ink);
}

.soft-cta a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  padding: 0 16px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.soft-cta a[href*="wa.me"] {
  background: #25d366;
  color: var(--black);
}

.visual-break {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.visual-image {
  position: absolute;
  inset: 0;
}

.visual-image img {
  opacity: 0.46;
  filter: grayscale(1) contrast(1.06);
}

.visual-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.visual-copy h2 {
  max-width: 860px;
}

.visual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.42);
  padding: 12px;
  backdrop-filter: blur(10px);
}

.video-section {
  background: var(--paper);
  scroll-margin-top: 112px;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
}

.video-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: #555;
  font-size: 18px;
  line-height: 1.7;
}

.video-reels {
  display: grid;
  grid-template-columns: repeat(1, minmax(160px, 1fr));
  gap: 18px;
  align-items: center;
}

.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: var(--black);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.video-card.offset {
  transform: translateY(42px);
}

.video-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.72));
}

.video-card span {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: clamp(36px, 5vw, 64px);
}

.method-grid article {
  border-top: 1px solid var(--black);
  padding-top: 22px;
}

.method-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--muted);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.method-grid p {
  margin-top: 14px;
  color: #5e5e5e;
  line-height: 1.65;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
  gap: clamp(36px, 7vw, 96px);
}

.about-image {
  width: min(100%, 520px);
  
  margin-top: 34px;
  overflow: hidden;
  background: var(--black);
}

.about-copy {
  display: grid;
  gap: 22px;
  color: #4f4f4f;
  font-size: 19px;
  line-height: 1.74;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.inline-cta > a:not(.button) {
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact {
  background: var(--black);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.62fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: start;
}

.contact-copy {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
}

.email-link {
  display: inline-block;
  margin-top: 30px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.direct-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.direct-contact a {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  transition:
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.direct-contact a:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.direct-contact span {
  color: rgba(255, 255, 255, 0.52);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-contact strong {
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
}

form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  padding: clamp(24px, 4vw, 38px);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 12px 0;
  font: inherit;
}

select option {
  color: var(--black);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-bottom-color: var(--white);
}

::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  background: var(--black);
  color: rgba(255, 255, 255, 0.54);
  padding: 28px clamp(20px, 5vw, 72px);
}

.footer img {
  width: 132px;
  height: auto;
}

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

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

@keyframes heroSettle {
  to {
    transform: scale(1.02);
  }
}

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

@media (max-width: 920px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .section-heading,
  .about-grid,
  .contact-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

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

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

  .video-reels {
    max-width: 620px;
  }
}

@media (max-width: 620px) {
  .nav {
    padding: 16px;
  }

  .brand {
    width: 116px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .nav-whatsapp {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-actions,
  .field-grid,
  .direct-contact,
  .soft-cta,
  .visual-actions,
  .inline-cta,
  .video-reels,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .strip-image {
    height: 220px;
  }

  .strip-image:not(.large) {
    display: none;
  }

  .service-card {
    min-height: auto;
  }

  .video-card,
  .video-card.offset {
    transform: none;
  }

  .footer {
    display: grid;
  }

}
