:root {
  --font-body: "Manrope", Arial, Helvetica, sans-serif;
  --font-display: "Sora", "Manrope", Arial, Helvetica, sans-serif;
  --black: #11100e;
  --black-soft: #1b1a17;
  --cement: #69645b;
  --sand: #c9a66b;
  --machinery: #edb52e;
  --paper: #f4efe6;
  --paper-2: #fffaf0;
  --bone: #efe4d2;
  --white: #ffffff;
  --whatsapp: #25d366;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(17, 16, 14, 0.14);
  --shadow: 0 24px 70px rgba(17, 16, 14, 0.22);
  --radius: 10px;
  --header-height: 76px;
  --cross-x: 50vw;
  --cross-y: 50vh;
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

@media (pointer: fine) {
  body.has-crosshair,
  body.has-crosshair * {
    cursor: none;
  }
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--black), var(--sand), var(--machinery));
  box-shadow: 0 0 14px rgba(237, 181, 46, 0.32);
}

.crosshair {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
  mix-blend-mode: difference;
}

.crosshair-line {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 0 8px rgba(237, 181, 46, 0.1);
  transition: background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  will-change: left, top, transform;
}

.crosshair-line-x {
  left: 0;
  top: var(--cross-y);
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.crosshair-line-y {
  left: var(--cross-x);
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.crosshair::after {
  content: "";
  position: absolute;
  left: var(--cross-x);
  top: var(--cross-y);
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.18);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
  will-change: left, top, transform;
}

body.has-crosshair.is-crosshair-ready .crosshair {
  opacity: 1;
}

body.has-crosshair.is-crosshair-hovering .crosshair-line {
  background: rgba(237, 181, 46, 0.72);
  box-shadow: 0 0 10px rgba(237, 181, 46, 0.14);
}

body.has-crosshair.is-crosshair-hovering .crosshair::after {
  width: 18px;
  height: 18px;
  border-color: rgba(237, 181, 46, 0.9);
  background: rgba(237, 181, 46, 0.16);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: soft-light;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 110;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--machinery);
  color: var(--black);
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  min-height: var(--header-height);
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav {
  width: min(1200px, calc(100% - 28px));
  min-height: 54px;
  margin: 10px auto 0;
  padding: 5px 6px 5px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 16, 14, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transition: width 220ms ease, padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  border-radius: 999px;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.site-header .brand {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled:not(.is-open) .brand {
  width: 0;
  flex-basis: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
}

.brand-logo {
  width: 88px;
  height: 36px;
  flex: 0 0 auto;
  display: block;
  background: url("assets/logo-alzua-nav.webp") center / contain no-repeat;
  filter: none;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.94rem;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(17, 16, 14, 0.14);
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.06);
  box-shadow: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-toggle span {
  width: 21px;
  height: 2px;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(237, 181, 46, 0.72);
  background: rgba(246, 243, 238, 0.94);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.nav-toggle[aria-expanded="true"] span {
  background: var(--black);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.is-scrolled:not(.is-open) .nav {
  width: 56px;
  padding: 5px 6px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  justify-content: flex-end;
}

.site-header.is-scrolled:not(.is-open) .nav-toggle {
  background: rgba(246, 243, 238, 0.82);
  border-color: rgba(17, 16, 14, 0.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.nav-panel {
  position: fixed;
  top: 26px;
  left: 12px;
  right: 68px;
  width: auto;
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 10px;
  color: var(--white);
  background: #11100e;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transform: translateY(-10px) scale(0.98);
  transform-origin: top center;
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease, opacity 220ms ease;
  opacity: 0;
}

.nav-panel.is-open {
  transform: translateY(0) scale(1);
  visibility: visible;
  opacity: 1;
}

.nav-panel a {
  position: relative;
  overflow: hidden;
  padding: 14px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1;
}

.nav-panel a:hover,
.nav-panel a:focus {
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
}

.nav-panel a.is-active {
  color: var(--black);
  background: var(--machinery);
}

.nav-logo-pill {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.wa-icon {
  width: 1.18em;
  height: 1.18em;
  flex: 0 0 auto;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 3.2c-7.02 0-12.73 5.69-12.73 12.69 0 2.24.59 4.42 1.7 6.35L3.2 28.8l6.72-1.76a12.75 12.75 0 0 0 6.1 1.55h.01c7.02 0 12.73-5.69 12.73-12.7S23.05 3.2 16.03 3.2Zm0 23.24h-.01a10.6 10.6 0 0 1-5.38-1.47l-.39-.23-3.99 1.04 1.07-3.88-.25-.4a10.47 10.47 0 0 1-1.62-5.61c0-5.82 4.74-10.55 10.58-10.55 2.82 0 5.48 1.1 7.47 3.09a10.45 10.45 0 0 1 3.1 7.47c0 5.82-4.74 10.55-10.58 10.55Zm5.8-7.9c-.32-.16-1.88-.92-2.17-1.03-.29-.1-.5-.16-.71.16-.21.31-.82 1.03-1 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.77-2.2-.18-.31-.02-.48.14-.64.14-.14.32-.37.48-.55.16-.18.21-.31.32-.52.11-.21.05-.4-.03-.56-.08-.16-.71-1.7-.97-2.33-.26-.61-.52-.53-.71-.54l-.61-.01c-.21 0-.56.08-.85.4-.29.31-1.11 1.08-1.11 2.63s1.14 3.05 1.3 3.26c.16.21 2.24 3.4 5.42 4.77.76.33 1.35.52 1.81.67.76.24 1.45.21 2 .13.61-.09 1.88-.77 2.14-1.51.26-.74.26-1.38.18-1.51-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 3.2c-7.02 0-12.73 5.69-12.73 12.69 0 2.24.59 4.42 1.7 6.35L3.2 28.8l6.72-1.76a12.75 12.75 0 0 0 6.1 1.55h.01c7.02 0 12.73-5.69 12.73-12.7S23.05 3.2 16.03 3.2Zm0 23.24h-.01a10.6 10.6 0 0 1-5.38-1.47l-.39-.23-3.99 1.04 1.07-3.88-.25-.4a10.47 10.47 0 0 1-1.62-5.61c0-5.82 4.74-10.55 10.58-10.55 2.82 0 5.48 1.1 7.47 3.09a10.45 10.45 0 0 1 3.1 7.47c0 5.82-4.74 10.55-10.58 10.55Zm5.8-7.9c-.32-.16-1.88-.92-2.17-1.03-.29-.1-.5-.16-.71.16-.21.31-.82 1.03-1 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.77-2.2-.18-.31-.02-.48.14-.64.14-.14.32-.37.48-.55.16-.18.21-.31.32-.52.11-.21.05-.4-.03-.56-.08-.16-.71-1.7-.97-2.33-.26-.61-.52-.53-.71-.54l-.61-.01c-.21 0-.56.08-.85.4-.29.31-1.11 1.08-1.11 2.63s1.14 3.05 1.3 3.26c.16.21 2.24 3.4 5.42 4.77.76.33 1.35.52 1.81.67.76.24 1.45.21 2 .13.61-.09 1.88-.77 2.14-1.51.26-.74.26-1.38.18-1.51-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn-small {
  min-height: 42px;
  padding: 10px 14px;
}

.btn-accent {
  background: #edb52e;
  color: var(--black);
  box-shadow: 0 10px 22px rgba(237, 181, 46, 0.14);
}

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.95);
  color: #0a2514;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.13);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 76px) 0 42px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--black);
}

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

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.82) contrast(1.06);
}

.hero-fallback {
  z-index: -4;
  background: linear-gradient(115deg, rgba(17, 16, 14, 0.88), rgba(17, 16, 14, 0.32));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to top, rgba(17, 16, 14, 0.92) 0%, rgba(17, 16, 14, 0.62) 48%, rgba(17, 16, 14, 0.4) 100%),
    radial-gradient(circle at 78% 70%, rgba(237, 181, 46, 0.12), transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 4px;
  mix-blend-mode: overlay;
}

.hero-content {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-coordinates {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.hero-coordinates span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.68rem;
  font-weight: 700;
}

.kicker {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-stretch: normal;
  text-transform: none;
}

h1 {
  width: 100%;
  max-width: 1040px;
  font-size: clamp(1.95rem, 10.3vw, 2.82rem);
  line-height: 1.04;
  color: #f7f1e7;
  font-weight: 600;
  text-wrap: balance;
}

h2 {
  font-size: 2.15rem;
  line-height: 1.05;
  font-weight: 600;
  text-wrap: balance;
}

h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.12;
  font-weight: 800;
}

.hero-copy {
  width: 100%;
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.94rem, 4.2vw, 1.08rem);
  font-weight: 500;
}

.hero-copy strong {
  color: var(--machinery);
  font-weight: 700;
}

.text-type {
  display: inline-block;
  min-width: 0;
}

.text-cursor {
  display: inline-block;
  margin-inline: 2px 4px;
  color: var(--machinery);
  animation: cursor-blink 780ms steps(2, jump-none) infinite;
}

.hero-copy > span:last-child {
  display: block;
  margin-top: 2px;
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

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

.hero-actions .btn,
.final-actions .btn {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  max-width: 590px;
}

.hero-metrics div:last-child {
  grid-column: 1 / -1;
}

.hero-metrics div {
  min-width: 0;
  padding: 13px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(20, 19, 16, 0.82);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  display: block;
  color: var(--machinery);
  font-family: var(--font-display);
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 0.92;
}

.hero-metrics small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-note {
  width: min(360px, calc(100% - 32px));
  margin: 38px auto 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(20, 19, 16, 0.82);
  backdrop-filter: blur(10px);
}

.hero-wordmark {
  position: absolute;
  right: -0.06em;
  bottom: 10px;
  z-index: -1;
  display: none;
  color: rgba(255, 255, 255, 0.032);
  font-family: var(--font-display);
  font-size: 14rem;
  font-weight: 700;
  line-height: 0.72;
  text-align: right;
  pointer-events: none;
}

.hero-wordmark span {
  display: block;
}

.hero-note span {
  display: block;
  color: var(--machinery);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1;
}

.hero-note p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 78px 0;
}

.chapter {
  position: relative;
  overflow: hidden;
}

.human-section,
.manifesto-section,
.command-center,
.infrastructure,
.reel-section,
.services,
.difference,
.final-cta,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.chapter::before {
  content: attr(data-chapter);
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 0;
  color: rgba(201, 166, 107, 0.075);
  font-family: var(--font-display);
  font-size: clamp(7rem, 22vw, 17rem);
  font-weight: 700;
  line-height: 0.8;
  pointer-events: none;
}

.human-section {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.04) 0 1px, transparent 1px 86px),
    var(--paper);
}

.human-grid,
.difference-layout {
  display: grid;
  gap: 34px;
}

.human-copy p:not(.kicker),
.section-intro p,
.difference-item p,
.footer p {
  color: var(--cement);
}

.human-copy p:not(.kicker) {
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.people-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.photo-card {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: #2c2a25;
  background: #2c2a25;
  box-shadow: 0 18px 50px rgba(17, 16, 14, 0.13);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.photo-card:hover,
.mosaic-card:hover,
.service-card:hover,
.reel-card:hover {
  box-shadow: 0 18px 42px rgba(17, 16, 14, 0.16);
  filter: contrast(1.015);
}

.photo-card::before,
.mosaic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(17, 16, 14, 0.72), rgba(17, 16, 14, 0.18) 58%);
  transition: opacity 260ms ease, background 260ms ease;
}

.photo-card:hover,
.mosaic-card:hover {
  background-blend-mode: normal;
}

.photo-card:hover::before,
.mosaic-card:hover::before {
  opacity: 0.56;
}

.photo-card img,
.mosaic-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 260ms ease, filter 260ms ease;
}

.photo-card:hover img,
.mosaic-card:hover img {
  opacity: 0.94;
  filter: contrast(1.02) saturate(0.96);
}

.photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
}

.manifesto-section {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
  background: #eee3d0;
}

.manifesto-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(201, 166, 107, 0.24) 52% 53%, transparent 53%),
    repeating-linear-gradient(0deg, rgba(17, 16, 14, 0.045) 0 1px, transparent 1px 22px);
}

.manifesto-grid {
  position: relative;
  display: grid;
  gap: 22px;
}

.manifesto-mark {
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  background: url("assets/favicon-alzua-small.webp") center / contain no-repeat;
  filter: drop-shadow(0 16px 26px rgba(17, 16, 14, 0.12));
}

.manifesto-mark span {
  display: none;
}

.manifesto-copy h2 {
  color: var(--black);
}

.manifesto-copy p:not(.kicker) {
  max-width: 680px;
  color: #514b42;
  font-size: 1.08rem;
}

.route-card {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(17, 16, 14, 0.095);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 34px rgba(17, 16, 14, 0.055);
}

.route-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--cement);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.route-card strong {
  display: block;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.photo-owner {
  grid-column: span 6;
  min-height: 310px;
}

.photo-owner img {
  object-position: center center;
}

.photo-team {
  grid-column: span 3;
}

.photo-office {
  grid-column: span 3;
}

.cinema-strip {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: #11100e;
  border-block: 1px solid rgba(255, 255, 255, 0.09);
}

.partners-loop {
  background: #f4efe6;
  color: rgba(17, 16, 14, 0.66);
  border-block-color: rgba(17, 16, 14, 0.1);
}

.facts-loop {
  background: #11100e;
}

.cinema-strip::before,
.cinema-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(42px, 12vw, 170px);
  pointer-events: none;
}

.cinema-strip::before {
  left: 0;
  background: linear-gradient(90deg, #11100e, transparent);
}

.cinema-strip::after {
  right: 0;
  background: linear-gradient(270deg, #11100e, transparent);
}

.partners-loop::before {
  background: linear-gradient(90deg, #f4efe6, transparent);
}

.partners-loop::after {
  background: linear-gradient(270deg, #f4efe6, transparent);
}

.strip-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.facts-loop .strip-track {
  animation-duration: 38s;
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  white-space: nowrap;
}

.strip-track b {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--black);
  background: var(--machinery);
  font-size: 0.66rem;
  font-weight: 800;
}

.partners-loop .strip-track b {
  color: var(--paper);
  background: var(--black);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.command-center {
  color: var(--white);
  background: linear-gradient(135deg, #141310, #221f19);
  border-bottom: 1px solid var(--line-dark);
}

.command-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.command-copy p:not(.kicker) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.command-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: var(--radius);
  background: rgba(24, 23, 20, 0.92);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.glow-card {
  --edge-proximity: 0;
  --cursor-angle: 45deg;
  position: relative;
  isolation: isolate;
}

.glow-card::after {
  display: none;
}

.command-panel::before {
  display: none;
}

.command-panel > * {
  position: relative;
  z-index: 1;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.panel-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--machinery);
  box-shadow: none;
}

.panel-header strong {
  text-transform: uppercase;
  font-weight: 800;
}

.panel-header small {
  margin-left: auto;
  color: var(--machinery);
  font-weight: 800;
  text-transform: uppercase;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.signal-grid article {
  min-height: 108px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
}

.signal-grid small {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 700;
  text-transform: uppercase;
}

.signal-grid strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 0.86;
}

.load-lines {
  display: none;
  gap: 9px;
  margin-top: 16px;
}

.load-lines span {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.load-lines span::before {
  content: "";
  display: block;
  width: var(--level);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--machinery), var(--sand));
  animation: pulse-line 2.8s ease-in-out infinite;
}

.card-swap {
  position: relative;
  min-height: 148px;
  margin-top: 10px;
  perspective: 900px;
}

.swap-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.swap-indicator span {
  min-width: 34px;
  padding: 7px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: color 280ms ease, background 280ms ease, transform 280ms ease;
}

.swap-indicator span.is-active {
  color: var(--black);
  background: var(--machinery);
  transform: translateY(-1px);
}

.swap-card {
  position: absolute;
  inset: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.085);
  opacity: 0;
  transform: translate3d(18px, 12px, 0) scale(0.985);
  transition: transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 620ms ease;
}

.swap-card.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}

.swap-card.is-next {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.995);
}

.swap-card span {
  color: var(--machinery);
  font-weight: 800;
}

.swap-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.swap-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

@keyframes sweep {
  to {
    transform: rotate(1turn);
  }
}

@keyframes pulse-line {
  50% {
    filter: brightness(1.18);
    opacity: 0.78;
  }
}

.infrastructure,
.difference {
  color: var(--white);
  background: #11100e;
}

.infrastructure::after,
.difference::after,
.command-center::after {
  display: none;
}

.difference.chapter::before {
  display: none;
}

.section-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.section-intro p {
  margin: 0;
  font-size: 1.04rem;
}

.infrastructure .section-intro p,
.difference .difference-item p {
  color: rgba(255, 255, 255, 0.68);
}

.infra-mosaic {
  display: grid;
  gap: 12px;
}

.mosaic-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
  background-blend-mode: overlay;
}

.mosaic-card:nth-child(1) {
  background: #343027;
}

.mosaic-card:nth-child(2) {
  background: #3c382e;
}

.mosaic-card:nth-child(3) {
  background: #4d432e;
}

.mosaic-card:nth-child(4) {
  background: #554b3b;
}

.mosaic-card:nth-child(5) {
  background: #3b352d;
}

.mosaic-card div {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.mosaic-card h3,
.service-card h3,
.difference-item strong {
  text-wrap: balance;
}

.mosaic-card span,
.service-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--machinery);
  font-weight: 800;
}

.reel-section {
  padding: 92px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.78)),
    url("assets/reel-fondo.webp");
  background-size: cover;
  background-position: center;
}

.reel-layout {
  display: grid;
  gap: 26px;
}

.reel-copy {
  max-width: 760px;
}

.reel-grid {
  display: grid;
  gap: 12px;
}

.reel-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(242, 169, 0, 0.2), transparent),
    #201d18;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  transform-style: preserve-3d;
}

.reel-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.72;
  filter: contrast(1.08) saturate(0.84);
  transition: opacity 260ms ease, filter 260ms ease;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 16, 14, 0.76), transparent 58%);
  transition: opacity 260ms ease;
}

.reel-card:hover img {
  opacity: 0.94;
  filter: contrast(1.04) saturate(0.95);
}

.reel-card:hover::after {
  opacity: 0.48;
}

.reel-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.services {
  background:
    radial-gradient(circle at 88% 12%, rgba(242, 169, 0, 0.16), transparent 28%),
    linear-gradient(180deg, var(--paper-2), #f0e6d6);
}

.service-grid {
  display: grid;
  gap: 12px;
}

.service-card {
  min-height: 228px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(237, 181, 46, 0.07), transparent 34%),
    linear-gradient(180deg, #fffdf8, #f5ede0);
  box-shadow: 0 14px 34px rgba(17, 16, 14, 0.045);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
  transform-style: preserve-3d;
}

.service-card::before {
  content: "";
  width: 44px;
  height: 2px;
  margin-bottom: auto;
  background: linear-gradient(90deg, var(--machinery), transparent);
}

.service-card p {
  margin: 14px 0 0;
  color: var(--cement);
}

.difference-lead {
  align-self: start;
}

.difference-list {
  display: grid;
  gap: 12px;
}

.difference-item {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.difference-item:hover {
  background: rgba(255, 255, 255, 0.082);
  border-color: rgba(237, 181, 46, 0.28);
  transform: translateY(-2px);
}

.difference-item strong {
  display: block;
  color: var(--machinery);
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 800;
}

.difference-item p {
  margin: 8px 0 0;
}

.final-cta {
  padding: 80px 0;
  background:
    linear-gradient(rgba(17, 16, 14, 0.7), rgba(17, 16, 14, 0.9)),
    url("assets/cta-obra.webp");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.final-panel {
  max-width: 940px;
  margin-inline: auto;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(17, 16, 14, 0.18);
}

.final-panel p:not(.kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.footer {
  padding: 44px 0 96px;
  color: rgba(255, 255, 255, 0.7);
  background: #0b0a09;
}

.footer-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.footer-grid > div {
  min-height: 150px;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-grid > div:first-child {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
}

.footer ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer li {
  min-height: 1.25em;
  line-height: 1.25;
}

.footer a:hover {
  color: var(--machinery);
}

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

.contact-link .wa-icon {
  color: var(--whatsapp);
}

.footer-name {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.footer-name:hover {
  color: var(--machinery);
}

.developer-credit {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.developer-credit a {
  width: max-content;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
  letter-spacing: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.developer-credit a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.developer-credit strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.developer-credit em {
  margin-left: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.24);
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.whatsapp-float::before {
  content: "Abrir WhatsApp";
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  min-width: max-content;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.88);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.whatsapp-float .wa-icon {
  width: 29px;
  height: 29px;
}

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

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

h1 span {
  display: inline;
}

.hero-content,
.human-copy,
.section-intro,
.command-copy,
.difference-lead,
.final-panel {
  position: relative;
}

.hero-content::before,
.section-intro::before,
.human-copy::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--machinery), transparent);
}

.btn-accent,
.btn-whatsapp {
  background-image: none;
}

.service-card,
.difference-item,
.mosaic-card,
.reel-card,
.photo-card,
.command-panel,
.final-panel {
  border-color: rgba(255, 255, 255, 0.12);
}

.mosaic-card,
.reel-card {
  border-color: rgba(255, 255, 255, 0.085);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .crosshair {
    display: none;
  }
}

@media (min-width: 520px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.72rem;
  }

  .hero-copy {
    font-size: 1.18rem;
  }

  .hero-metrics div {
    padding: 13px 12px;
  }

  .hero-metrics strong {
    font-size: 1.92rem;
  }

  .hero-metrics small {
    font-size: 0.72rem;
  }
}

@media (min-width: 640px) {
  .hero-copy > span:last-child {
    display: inline;
    margin-top: 0;
  }

  .hero-actions .btn,
  .final-actions .btn {
    width: auto;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-metrics div:last-child {
    grid-column: auto;
  }

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

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
  }

  .reel-card.is-large {
    min-height: 390px;
  }

  h1 {
    font-size: 4.05rem;
  }

  h2 {
    font-size: 3.05rem;
  }

  .manifesto-grid {
    grid-template-columns: auto 1fr;
    align-items: start;
  }

  .manifesto-mark {
    margin-top: 46px;
  }

  .route-card {
    grid-column: 2;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 112px 0;
  }

  .hero {
    padding-bottom: 54px;
  }

  .hero-wordmark {
    display: block;
  }

  .command-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .manifesto-section {
    padding: 112px 0;
  }

  .manifesto-grid {
    grid-template-columns: 132px 1fr 330px;
    align-items: start;
  }

  .route-card {
    grid-column: auto;
  }

  h1 {
    font-size: 4.25rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 3.65rem;
    line-height: 0.98;
  }

  .hero-note {
    position: absolute;
    right: max(24px, calc((100vw - 1160px) / 2));
    bottom: 54px;
    margin: 0;
  }

  .human-grid,
  .difference-layout {
    grid-template-columns: 0.86fr 1.14fr;
    align-items: start;
  }

  .human-copy,
  .difference-lead {
    position: sticky;
    top: calc(var(--header-height) + 26px);
  }

  .section-intro {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: end;
    margin-bottom: 46px;
  }

  .infra-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

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

  .mosaic-card.wide {
    grid-column: span 2;
  }

  .mosaic-card.tall {
    grid-row: span 2;
  }

  .mosaic-card:nth-child(3) {
    grid-row: span 2;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 4.85rem;
  }

  h2 {
    font-size: 4.25rem;
  }
}

@media (min-width: 980px) {
  .nav {
    width: min(1000px, calc(100% - 32px));
    min-height: var(--header-height);
    margin: 0 auto;
    padding: 0;
    position: relative;
    justify-content: center;
    gap: 20px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled:not(.is-open) .nav {
    width: min(1000px, calc(100% - 32px));
    padding: 0;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    justify-content: center;
  }

  .nav > .brand {
    display: none;
  }

  .site-header .brand {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .brand-logo {
    width: 142px;
    height: 64px;
    background-size: 134px 134px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 3px;
    color: var(--black);
    background: rgba(255, 255, 255, 0.92);
    border: 2px solid rgba(17, 16, 14, 0.94);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
    transform: none;
    visibility: visible;
    opacity: 1;
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
  }

  .site-header.is-scrolled .nav-panel {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(17, 16, 14, 0.12);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(20px);
  }

  .site-header.is-open {
    background: transparent;
  }

  .nav-panel a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    max-width: 190px;
    color: var(--black);
    background: transparent;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, max-width 240ms ease, padding 240ms ease, opacity 180ms ease;
  }

  .nav-logo-pill {
    min-width: 88px;
    padding: 2px 14px 2px 16px !important;
    margin-right: 3px;
    border-right: 1px solid rgba(17, 16, 14, 0.12);
    border-radius: 999px 8px 8px 999px !important;
  }

  .nav-logo-pill img {
    width: 70px;
    height: auto;
    opacity: 0.92;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-logo-pill:hover,
  .nav-logo-pill:focus {
    background: rgba(17, 16, 14, 0.06) !important;
  }

  .nav-logo-pill:hover img,
  .nav-logo-pill:focus img {
    opacity: 1;
    transform: translateY(0) scale(1.03);
  }

  .nav-panel a:hover,
  .nav-panel a:focus,
  .nav-panel a.is-active {
    color: var(--white);
    background: var(--black);
  }

  .nav-panel .btn {
    min-height: 38px;
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--black);
    background-color: var(--machinery);
    border-color: transparent;
    box-shadow: none;
  }

  .site-header.is-scrolled .nav-panel .btn {
    background-color: rgba(237, 181, 46, 0.88);
  }

  .site-header.is-scrolled .nav-panel a[data-nav-pill] {
    max-width: 0;
    padding-inline: 0;
    opacity: 0;
    pointer-events: none;
  }

  .site-header.is-scrolled .nav-logo-pill {
    min-width: 76px;
    padding-inline: 14px 12px !important;
  }

  .site-header.is-scrolled .nav-logo-pill img {
    width: 62px;
  }

  .site-header.is-scrolled .nav-panel .btn {
    min-height: 34px;
    padding-inline: 14px;
  }
}

@media (min-width: 1140px) {
  .nav-panel a {
    padding-inline: 12px;
  }
}
