:root {
  --bg: #0a0e14;
  --surface: #131a24;
  --surface-2: #0e141c;
  --ink: #e9eef4;
  --muted: #8893a1;
  --blue: #4a9bdd;
  --blue-mid: #2e78b8;
  --blue-deep: #154f7f;
  --line: rgba(173, 196, 219, 0.13);
  --line-strong: rgba(173, 196, 219, 0.24);
  --grad: linear-gradient(120deg, #5896bf, #154f7f);
  --maxw: 1340px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.lock {
  overflow: hidden;
}
html,
body {
  overflow-x: clip;
}
::selection {
  background: var(--blue);
  color: #04121e;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: inherit;
  text-decoration: none;
}
.anton {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.mono {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 30px;
}
.eyebrow {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* loader */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: transform 1s var(--ease);
}
#loader.done {
  transform: translateY(-100%);
}
#loader img {
  height: 70px;
  width: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: up 0.8s var(--ease) 0.1s forwards;
}
.load-bar {
  width: 220px;
  height: 2px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}
.load-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--blue);
}
.load-num {
  font-family: "Space Mono", monospace;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}

/* cursor */
.cur-dot,
.cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  pointer-events: none;
  border-radius: 50%;
}
.cur-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  margin: -3px 0 0 -3px;
  transition: opacity 0.3s;
}
.cur-ring {
  width: 38px;
  height: 38px;
  border: 1px solid var(--blue);
  margin: -19px 0 0 -19px;
  transition:
    width 0.35s var(--ease),
    height 0.35s var(--ease),
    margin 0.35s var(--ease),
    background 0.35s,
    border-color 0.35s;
}
.cur-ring .lbl {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #04121e;
  opacity: 0;
  transition: opacity 0.3s;
  text-transform: uppercase;
}
body.cur-view .cur-ring {
  width: 82px;
  height: 82px;
  margin: -41px 0 0 -41px;
  background: var(--blue);
  border-color: transparent;
}
body.cur-view .cur-ring .lbl {
  opacity: 1;
}
body.cur-view .cur-dot {
  opacity: 0;
}
body.cur-hide .cur-ring {
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
}
@media (hover: none), (pointer: coarse) {
  .cur-dot,
  .cur-ring {
    display: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  * {
    cursor: none !important;
  }
}

/* nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  transition:
    background 0.5s var(--ease),
    padding 0.5s var(--ease),
    border-color 0.5s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10, 14, 20, 0.82);
  backdrop-filter: blur(14px);
  padding: 13px 30px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand .up {
  color: var(--blue-mid);
}
.brand img {
  height: 28px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a.lbl {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav-links a.lbl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width 0.35s var(--ease);
}
.nav-links a.lbl:hover,
.nav-links a.lbl.active {
  color: var(--ink);
}
.nav-links a.lbl:hover::after,
.nav-links a.lbl.active::after {
  width: 100%;
}
.nav-cta {
  border: 1px solid var(--line-strong);
  padding: 9px 18px !important;
  color: var(--ink) !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #04121e !important;
}

nav:not(.scrolled) .nav-links a.lbl {
  color: var(--blue);
}
nav:not(.scrolled) .nav-links a.lbl:hover,
nav:not(.scrolled) .nav-links a.lbl.active {
  color: var(--ink);
}
nav:not(.scrolled) .nav-cta {
  color: var(--blue) !important;
  border-color: rgba(74, 155, 221, 0.45);
}
nav:not(.scrolled) .lang-btn {
  color: var(--blue);
}
nav:not(.scrolled) .lang-btn:hover {
  color: var(--ink);
}
nav:not(.scrolled) .lang-btn.active {
  color: var(--ink);
}
nav:not(.scrolled) .nav-burger {
  border-color: rgba(74, 155, 221, 0.45);
}
nav:not(.scrolled) .nav-burger span {
  background: var(--blue);
}

/* hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -6% 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: heroZoom 18s var(--ease) forwards;
}
.hero-bg-img--mobile {
  display: none;
}
@media (max-width: 860px) {
  .hero-bg-img--desktop {
    display: none;
  }
  .hero-bg-img--mobile {
    display: block;
  }
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 20, 0.55) 0%,
    rgba(10, 14, 20, 0.12) 40%,
    rgba(10, 14, 20, 0.6) 74%,
    var(--bg) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 30px 7vh;
}
.hero-eyebrow {
  opacity: 0;
  animation: up 1s var(--ease) 0.2s forwards;
}
.hero h1 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(64px, 17vw, 250px);
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin: 16px 0 0;
  overflow: hidden;
}
.hero h1 span {
  display: inline-block;
  transform: translateY(108%);
  animation: rise 1.1s var(--ease) 0.35s forwards;
}
.hero h1 .up {
  color: var(--blue-deep);
}
@keyframes rise {
  to {
    transform: translateY(0);
  }
}
.hero-sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 24px;
  border-top: 2px solid var(--line-strong);
  padding-top: 22px;
  opacity: 0;
  animation: up 1s var(--ease) 0.8s forwards;
}
.hero-sub p {
  max-width: 44ch;
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--ink);
}
.hero-sub .meta {
  text-align: right;
  color: var(--muted);
}
.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  opacity: 0;
  animation: fade 1s ease 1.5s forwards;
}
.scroll-cue .bar {
  width: 2px;
  height: 40px;
  background: linear-gradient(var(--blue), transparent);
  animation: drop 2s ease-in-out infinite;
}
@keyframes drop {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade {
  to {
    opacity: 1;
  }
}

/* section header */
.sec-head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 46px;
  border-bottom: 2px solid var(--line-strong);
}
.sec-head .num {
  font-family: "Space Mono", monospace;
  color: var(--blue);
  font-size: 25px;
  padding-bottom: 8px;
}
.sec-title {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 0.86;
  letter-spacing: 0.005em;
}

/* intro */
.intro {
  padding: 13vh 0 11vh;
}
.intro .lead {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 7vw, 96px);
  line-height: 1;
  letter-spacing: 0.005em;
  max-width: 16ch;
}
.intro-text {
  max-width: 64ch;
  margin-top: 44px;
}
.intro-text p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 16px;
}
.stats-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 58px;
  margin-bottom: 6px;
  background: var(--surface);
  border-top: 2px solid var(--line-strong);
  border-bottom: 2px solid var(--line-strong);
  padding: clamp(34px, 4vw, 46px) 0;
}
.stats {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 72px);
  flex-wrap: wrap;
}
.stat .n {
  display: flex;
  align-items: flex-end;
  height: 0.82em;
  font-family: "Anton", sans-serif;
  font-size: clamp(68px, 13vw, 140px);
  line-height: 0.82;
  color: var(--ink);
}
.stat .n .count {
  display: block;
  line-height: 0.82;
}
.stat .n .pct {
  color: var(--blue);
  line-height: 0.82;
}
.stat .n .plus {
  color: var(--blue);
}
.stat .l {
  margin-top: 14px;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}
.lead-out {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  max-width: 24ch;
}
.lead-out em {
  color: var(--blue);
  font-style: normal;
}

/* work grid */
.work-sec {
  padding: 7vh 0 12vh;
}
.filters {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 36px;
  border: 1px solid var(--line-strong);
  width: fit-content;
}
.filter {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-strong);
  padding: 12px 22px;
  cursor: pointer;
  transition: 0.3s var(--ease);
}
.filter:last-child {
  border-right: 0;
}
.filter:hover {
  color: var(--ink);
}
.filter.active {
  background: var(--blue);
  color: #04121e;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 920px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.work {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
  display: block;
}
.work.hide {
  display: none;
}
.work img {
  transition:
    transform 1s var(--ease),
    filter 0.5s;
  filter: brightness(0.95);
}
.work:hover img {
  transform: scale(1.05);
  filter: brightness(1.04);
}
.work::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 18, 0) 32%,
    rgba(8, 12, 18, 0.92)
  );
  opacity: 0.9;
  transition: opacity 0.4s;
}
.work::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease);
  z-index: 3;
}
.work:hover::before {
  transform: scaleX(1);
}
.work:hover {
  box-shadow: inset 0 0 0 2px var(--blue);
}
.w-idx {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: var(--ink);
  background: rgba(10, 14, 20, 0.42);
  backdrop-filter: blur(4px);
  padding: 4px 9px;
  border: 1px solid var(--line);
}
.w-count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: var(--ink);
  background: rgba(10, 14, 20, 0.42);
  backdrop-filter: blur(4px);
  padding: 4px 9px;
  border: 1px solid var(--line);
}
.w-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}
.w-name {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1;
  display: block;
}
.w-type {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--blue);
  margin-top: 7px;
  display: inline-block;
}
.w-detail {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 5px;
  text-transform: none;
  line-height: 1.5;
}
.w-detail .w-lbl {
  color: var(--ink);
  opacity: 0.72;
}
.w-go {
  display: block;
  margin-top: 12px;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--ink);
  opacity: 0;
  transform: translateY(6px);
  transition: 0.45s var(--ease);
}
.work:hover .w-go {
  opacity: 0.85;
  transform: none;
}

/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(6, 9, 14, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.lb.open {
  opacity: 1;
  pointer-events: auto;
}
.lb-stage {
  position: relative;
  width: min(92vw, 1180px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lb-img {
  width: 100%;
  max-height: 74vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 74vh;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.985);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.lb-img img.show {
  opacity: 1;
  transform: none;
}
.lb-cap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 20px;
}
.lb-cap .n {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
}
.lb-cap .t {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--blue);
  margin-left: 10px;
}
.lb-details {
  margin-top: 8px;
}
.lb-detail {
  display: block;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 4px;
  text-transform: none;
  line-height: 1.5;
}
.lb-detail .w-lbl {
  color: var(--ink);
  opacity: 0.72;
}
.lb-cap .c {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  color: var(--muted);
}
.lb-x {
  position: absolute;
  top: -46px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lb-x:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #04121e;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 14, 20, 0.4);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.lb-nav:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #04121e;
}
.lb-prev {
  left: -70px;
}
.lb-next {
  right: -70px;
}
.lb-nav svg,
.lb-x svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
@media (max-width: 900px) {
  .lb-prev {
    left: 6px;
  }
  .lb-next {
    right: 6px;
  }
}

/* proces */
.proces {
  border-top: 2px solid var(--line-strong);
  border-bottom: 2px solid var(--line-strong);
  padding: clamp(54px, 8vw, 98px) 0;
  background: var(--surface);
}
.proces-head {
  margin-bottom: 46px;
  max-width: 680px;
}
.proces-head h3 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1.2;
  margin-top: 14px;
}
.proces-head h3 span {
  color: var(--blue);
}
.proces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
}
.pstep {
  padding: 32px 26px 34px;
  border-right: 1px solid var(--line);
  border-top: 2px solid var(--line);
  transition: background 0.4s var(--ease);
}
.pstep:hover {
  background: rgba(74, 155, 221, 0.05);
}
.pnum {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  color: var(--blue);
  display: block;
  margin-bottom: 20px;
  letter-spacing: 0.12em;
}
.pstep h4 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 11px;
  line-height: 1.04;
}
.pstep p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* services */
.usluge {
  padding: 11vh 0;
}
.svc-intro {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(19px, 2.3vw, 27px);
  line-height: 1.38;
  color: var(--ink);
  max-width: 33ch;
  margin: -14px 0 54px;
  font-weight: 500;
}
.svc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 48px;
}
@media (max-width: 560px) {
  .svc-list {
    grid-template-columns: 1fr;
  }
}
.svc-ico {
  width: 54px;
  height: 54px;
  color: var(--blue);
  margin-bottom: 20px;
}
.svc-ico svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-item h4 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.svc-item p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 38ch;
}

/* about */
.about {
  padding: 12vh 0;
}
.about-grid {
  display: block;
  max-width: 76ch;
}
.about-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--line-strong);
}
.about-photo .tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  background: rgba(10, 14, 20, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
}
.about .role {
  color: var(--blue);
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 24px;
  display: inline-block;
}
.about p {
  color: var(--muted);
  font-size: 16.5px;
  margin-bottom: 18px;
  max-width: 60ch;
}

/* ===== TIM — tihe portret kartice (klik otkriva opis) ===== */
.team {
  margin-top: clamp(60px, 8vw, 108px);
}
.team-title {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1;
  margin-bottom: 20px;
}
.team-lead {
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.64;
  max-width: 64ch;
  margin-bottom: clamp(40px, 5vw, 66px);
}
.members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.7vw, 24px);
}
.member {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  outline: none;
  transition:
    border-color 0.6s var(--ease),
    box-shadow 0.6s var(--ease);
}
.member img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
  transform: scale(1.01);
  transition:
    transform 0.65s var(--ease),
    filter 0.65s var(--ease);
}
.member-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 20, 0.04) 30%,
    rgba(10, 14, 20, 0.5) 60%,
    rgba(10, 14, 20, 0.93) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.member::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 8, 14, 0.96) 0%,
    rgba(3, 8, 14, 0.88) 35%,
    rgba(3, 8, 14, 0.55) 65%,
    rgba(3, 8, 14, 0.25) 100%
  );
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.member-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  z-index: 2;
  max-width: 90%;
}
.member-name {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.08;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 14px rgba(3, 8, 14, 0.6);
}
.member-role {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10.5px;
  color: var(--blue);
  margin-top: 9px;
  line-height: 1.45;
}
.member-desc {
  color: #d6dee8;
  opacity: 0;
  font-size: 15px;
  line-height: 1.6;
  max-height: 0;
  margin-top: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s var(--ease) 0.06s,
    transform 0.6s var(--ease) 0.06s,
    max-height 0.65s var(--ease),
    margin-top 0.65s var(--ease);
}
.member.is-open {
  border-color: rgba(74, 155, 221, 0.45);
  box-shadow:
    0 0 0 1px rgba(74, 155, 221, 0.22),
    0 10px 34px rgba(74, 155, 221, 0.1);
}
.member.is-open img {
  transform: scale(1.05);
  filter: brightness(0.85);
}
.member.is-open::after {
  opacity: 1;
}
.member.is-open .member-desc {
  opacity: 1;
  transform: none;
  max-height: 280px;
  margin-top: 13px;
}
@media (hover: hover) {
  .member:hover {
    border-color: rgba(74, 155, 221, 0.45);
    box-shadow:
      0 0 0 1px rgba(74, 155, 221, 0.22),
      0 10px 34px rgba(74, 155, 221, 0.1);
  }
  .member:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
  }
  .member:hover::after {
    opacity: 1;
  }
  .member:hover .member-desc {
    opacity: 1;
    transform: none;
    max-height: 280px;
    margin-top: 13px;
  }
}
@media (max-width: 860px) {
  .members {
    grid-template-columns: repeat(2, 1fr);
  }
  .member img {
    filter: brightness(0.95);
  }
}
@media (max-width: 560px) {
  .members {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .member {
    aspect-ratio: 4/5;
  }
}
@media (prefers-reduced-motion: reduce) {
  .member img,
  .member::before,
  .member-overlay {
    transition: none;
  }
}

/* cta card */
.cta-sec {
  padding: 0 0 3vh;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  padding: clamp(26px, 3vw, 36px) clamp(28px, 2.6vw, 38px);
  transition:
    border-color 0.4s var(--ease),
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.cta-card:hover {
  border-color: rgba(74, 155, 221, 0.5);
  background: var(--surface-2);
  box-shadow:
    0 0 0 1px rgba(74, 155, 221, 0.22),
    0 16px 46px rgba(74, 155, 221, 0.12);
}
.cta-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.5;
  color: #c7d0da;
  max-width: 64ch;
}
.cta-card:hover .cta-text {
  color: var(--ink);
}
.cta-arrow {
  font-size: 26px;
  line-height: 1;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.cta-card:hover .cta-arrow {
  transform: translateX(7px);
}
@media (max-width: 560px) {
  .cta-card {
    gap: 16px;
    padding: 16px 18px;
  }
}

/* contact */
.contact {
  padding: 15vh 0 13vh;
  text-align: center;
}
.contact .eyebrow {
  justify-content: center;
}
.contact h2 {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(34px, 5.6vw, 78px);
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin: 24px 0 18px;
}
.contact h2 span {
  color: var(--blue);
}
.contact .sub {
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 46px;
  font-size: 18px;
}
.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cl-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.clink {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-strong);
  padding: 16px 24px;
  transition: 0.4s var(--ease);
  font-size: 15px;
}
.clink-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex-shrink: 0;
}
.clink-ico svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.clink:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #04121e;
}
.clink:hover .clink-ico {
  color: rgba(4, 18, 30, 0.65);
}
.clink-tel {
  cursor: default;
  align-items: center;
}
.clink-nums {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.clink-nums a {
  color: inherit;
  transition: opacity 0.35s var(--ease);
  line-height: 1.35;
  padding: 3px 0;
}
.clink-nums a + a {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--line-strong);
}
.clink-nums a:hover {
  opacity: 0.72;
}
.clink-tel:hover .clink-nums a + a {
  border-top-color: rgba(4, 18, 30, 0.18);
}
.clink-tel:hover .clink-nums a:hover {
  opacity: 1;
}

/* contact form */
.cform {
  max-width: 680px;
  margin: 0 auto 46px;
  text-align: left;
  scroll-margin-top: 100px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ffield {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
.ffield label {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
}
.ffield label .opt {
  color: var(--blue);
  letter-spacing: 0.06em;
}
.ffield input,
.ffield select,
.ffield textarea {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  padding: 13px 15px;
  width: 100%;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.ffield textarea {
  resize: vertical;
  min-height: 120px;
}
.ffield input:focus,
.ffield select:focus,
.ffield textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #0e1620;
}
.ffield input.err,
.ffield textarea.err {
  border-color: #d9534f;
}
.ffield select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) center,
    calc(100% - 14px) center;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.ffield ::placeholder {
  color: #5a6573;
}
.fbtns {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.fsubmit {
  background: var(--blue);
  color: #04121e;
  border: 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  padding: 15px 34px;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.fsubmit:hover {
  background: #6bb0e8;
  transform: translateY(-2px);
}
.fnote {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.fnote.ok {
  color: var(--blue);
}
.fsubmit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* thank-you modal */
.tmodal {
  position: fixed;
  inset: 0;
  z-index: 6000;
  background: rgba(6, 9, 14, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
  padding: 24px;
}
.tmodal.open {
  opacity: 1;
  pointer-events: auto;
}
.tmodal-card {
  position: relative;
  width: min(92vw, 460px);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  padding: 44px 36px 36px;
  text-align: center;
  transform: translateY(10px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.4s var(--ease),
    opacity 0.4s var(--ease);
}
.tmodal.open .tmodal-card {
  transform: none;
  opacity: 1;
}
.tmodal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.tmodal-x:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #04121e;
}
.tmodal-x svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
.tmodal-ico {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: rgba(74, 155, 221, 0.14);
  color: var(--blue);
}
.tmodal-ico svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tmodal-title {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.tmodal-text {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.tmodal-btn {
  background: var(--blue);
  color: #04121e;
  border: 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  padding: 13px 30px;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease);
}
.tmodal-btn:hover {
  background: #6bb0e8;
  transform: translateY(-2px);
}
.cl-lead {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
}

/* footer */
footer {
  border-top: 1px solid var(--line);
}
footer .wrap {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: 0;
}
footer .brand {
  font-size: 22px;
}
.f-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: clamp(34px, 4vw, 60px);
  padding-bottom: clamp(46px, 5.5vw, 70px);
}
.f-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  color: var(--muted);
}
.f-tag {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}
.f-loc {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
}
.f-title {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--ink);
  margin-bottom: 4px;
}
.f-link {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  transition: color 0.35s var(--ease);
}
.f-link:hover {
  color: var(--ink);
}
.f-link .fk {
  display: inline-block;
  min-width: 34px;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--blue);
  margin-right: 9px;
}
.f-tel {
  display: flex;
  align-items: center;
  gap: 9px;
}
.f-tel > .fk {
  display: inline-block;
  min-width: 34px;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  color: var(--blue);
  margin-right: 0;
  flex-shrink: 0;
}
.f-tel-nums {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.f-tel-nums .f-link {
  display: block;
}
.f-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0 28px;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 860px) {
  .f-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.fmono {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

/* language switcher */
.lang-sw {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: 8px;
}
.lang-btn {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--muted);
  background: none;
  border: 0;
  padding: 4px 2px;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}
.lang-btn:hover {
  color: var(--ink);
}
.lang-btn.active {
  color: var(--blue);
}
.lang-sep {
  color: var(--line-strong);
  font-family: "Space Mono", monospace;
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Colors */
.color-white {
  color: #fff;
}

.color-white::before {
  background: #fff;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .intro-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-photo {
    max-width: 400px;
  }
  .hero-sub .meta {
    text-align: left;
  }
  .proces-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .frow {
    grid-template-columns: 1fr;
  }
  .proces-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Ujednacen desktop vertikalni ritam ===== */
@media (min-width: 861px) {
  .intro {
    padding: clamp(96px, 12vh, 120px) 0 clamp(52px, 6.5vh, 72px);
  }
  .work-sec {
    padding: clamp(56px, 7vh, 76px) 0 clamp(96px, 12vh, 120px);
  }
  .cta-sec {
    padding: 0 0 clamp(96px, 12vh, 120px);
  }
  .usluge {
    padding: clamp(96px, 12vh, 120px) 0;
  }
  .about {
    padding: clamp(96px, 12vh, 120px) 0 clamp(56px, 7vh, 76px);
  }
  .contact {
    padding: clamp(64px, 8vh, 90px) 0 clamp(104px, 13vh, 132px);
  }
}

/* ===== MOBILNA VERZIJA ===== */
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  padding: 0;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition:
    transform 0.35s var(--ease),
    opacity 0.3s;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mmenu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(10, 14, 20, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 108px 26px 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mmenu.open {
  opacity: 1;
  pointer-events: auto;
}
.mmenu-links {
  display: flex;
  flex-direction: column;
}
.mmenu-links a {
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0.02em;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
}
.mmenu.open .mmenu-links a {
  opacity: 1;
  transform: none;
}
.mmenu.open .mmenu-links a:nth-child(1) {
  transition-delay: 0.05s;
}
.mmenu.open .mmenu-links a:nth-child(2) {
  transition-delay: 0.1s;
}
.mmenu.open .mmenu-links a:nth-child(3) {
  transition-delay: 0.15s;
}
.mmenu.open .mmenu-links a:nth-child(4) {
  transition-delay: 0.2s;
}
.mmenu.open .mmenu-links a:nth-child(5) {
  transition-delay: 0.25s;
}
.mmenu-links a.mmenu-ig {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  border: 1px solid var(--line-strong);
  padding: 14px 20px;
  width: max-content;
  margin-top: 24px;
  color: var(--ink);
}
.mmenu-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mmenu .lang-sw {
  margin-left: 0;
}
.mmenu .lang-btn {
  font-size: 13px;
  padding: 8px 6px;
}
.mmenu-loc {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 9.5px;
  color: var(--muted);
}
@media (min-width: 861px) {
  .mmenu {
    display: none;
  }
}
@media (hover: none), (pointer: coarse) {
  .w-go {
    opacity: 0.85;
    transform: none;
  }
}
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }
  .lb-prev {
    left: 8px;
  }
  .lb-next {
    right: 8px;
  }
}
@media (max-width: 860px) {
  .nav-burger {
    display: flex;
  }
}
@media (max-width: 560px) {
  .wrap {
    padding: 0 22px;
  }
  nav {
    padding: 16px 22px;
  }
  nav.scrolled {
    padding: 12px 22px;
  }
  .hero-inner {
    padding: 0 22px 8vh;
  }
  .hero h1 {
    font-size: clamp(54px, 19vw, 92px);
  }
  .hero-sub {
    gap: 14px;
    margin-top: 20px;
    padding-top: 18px;
  }
  .hero-sub p {
    font-size: 15px;
  }
  .scroll-cue {
    display: none;
  }
  .intro {
    padding: 11vh 0 9vh;
  }
  .intro-text {
    margin-top: 32px;
  }
  .intro-text p {
    font-size: 16px;
  }
  .stats {
    gap: 30px;
    padding: 0 22px;
  }
  .work-sec {
    padding: 6vh 0 0;
  }
  .cta-sec {
    padding: 5vh 0;
  }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar {
    display: none;
  }
  .filter {
    white-space: nowrap;
    flex: 0 0 auto;
    padding: 12px 18px;
  }
  .w-name {
    font-size: 22px;
  }
  .lb-x {
    top: 10px;
    right: 10px;
    background: rgba(10, 14, 20, 0.6);
    z-index: 5;
  }
  .lb-nav {
    width: 44px;
    height: 44px;
  }
  .lb-cap {
    flex-wrap: wrap;
    gap: 8px;
  }
  .lb-cap .n {
    font-size: 18px;
  }
  .pstep {
    padding: 26px 22px 28px;
  }
  .svc-ico {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }
  .svc-item h4 {
    font-size: 22px;
  }
  .ffield input,
  .ffield select,
  .ffield textarea {
    font-size: 16px;
    padding: 14px 15px;
  }
  .fbtns {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .fsubmit {
    width: 100%;
    padding: 16px 20px;
  }
  .contact h2 {
    font-size: clamp(30px, 8.8vw, 44px);
  }
  .cl-row {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .clink {
    padding: 15px 16px;
    font-size: 14.5px;
    justify-content: center;
  }
  .clink-tel {
    align-items: center;
  }
  .clink-nums {
    align-items: center;
    width: 100%;
  }
  .clink-nums a {
    text-align: center;
    width: 100%;
  }
  .f-grid {
    gap: 32px;
  }

  .p-l-5 {
    padding-left: 0;
  }
}
@media (max-width: 390px) {
  .wrap {
    padding: 0 18px;
  }
  nav {
    padding: 14px 18px;
  }
  nav.scrolled {
    padding: 11px 18px;
  }
  .hero-inner {
    padding: 0 18px 7vh;
  }
  .hero h1 {
    font-size: clamp(46px, 18.5vw, 76px);
  }
  .sec-title {
    font-size: clamp(34px, 11vw, 44px);
  }
  .intro .lead {
    font-size: clamp(28px, 8.6vw, 34px);
  }
  .mmenu {
    padding: 96px 22px 28px;
  }
  .mmenu-links a {
    font-size: 29px;
    padding: 12px 0;
  }
  .w-name {
    font-size: 20px;
  }
}

.p-l-5 {
  padding-left: 5px;
}