:root {
  --green: #cea952;
  --green-dark: #8f7338;
  --ink: #0b0b0b;
  --muted: #5f5f5f;
  --line: rgba(11, 11, 11, .12);
  --paper: #ffffff;
  --soft: #f3f6ef;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow: 0 26px 80px rgba(0, 0, 0, .12);
  --shadow-green: 0 24px 70px rgba(206, 169, 82, .24);
  --font-head: "Space Grotesk", "Manrope", Arial, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(206, 169, 82, .16), transparent 30rem),
    radial-gradient(circle at 90% 18%, rgba(206, 169, 82, .12), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #fbfdf8 42%, #fff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open,
body.is-loading {
  overflow: hidden;
}

::selection {
  background: var(--green);
  color: #fff;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.page-glow {
  position: fixed;
  width: 34rem;
  height: 34rem;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  translate: -50% -50%;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle, rgba(206, 169, 82, .16), rgba(206, 169, 82, .08) 32%, transparent 70%);
  filter: blur(8px);
  transition: width .3s ease, height .3s ease;
}

.cursor-dot {
  position: fixed;
  width: 14px;
  height: 14px;
  border: 2px solid var(--green);
  background: #fff;
  border-radius: 50%;
  z-index: 101;
  pointer-events: none;
  opacity: var(--co, 1);
  translate: -50% -50%;
  transform: translate3d(var(--cx, -100px), var(--cy, -100px), 0) scale(var(--cs, 1));
  transition: transform .08s linear, width .2s ease, height .2s ease, background .2s ease, opacity .18s ease;
  box-shadow: 0 0 0 8px rgba(206, 169, 82, .10);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  transition: clip-path .85s cubic-bezier(.77, 0, .175, 1), visibility .85s ease;
  clip-path: inset(0 0 0 0);
}

.loader.is-hidden {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}

.loader__word {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -.07em;
  animation: loaderPop 1.1s ease both;
}

.loader__bar {
  position: absolute;
  width: min(420px, 76vw);
  height: 6px;
  bottom: 18vh;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.loader__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  animation: loadBar 1s cubic-bezier(.77, 0, .175, 1) both;
}

@keyframes loaderPop {
  0% { transform: translateY(26px); opacity: 0; filter: blur(12px); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

@keyframes loadBar {
  from { width: 0; }
  to { width: 100%; }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: auto;
  max-width: calc(100% - 28px);
  padding: 8px 12px 6px 12px;
  border: 1px solid rgba(11, 11, 11, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .08);
  transform: translateX(-50%);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  border-color: rgba(206, 169, 82, .20);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 7px;
  border-radius: 999px;
  font-weight: 800;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex: 0 0 auto;
  object-fit: contain;
  background: #0b0b0b;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.brand__text {
  font-family: var(--font-head);
  letter-spacing: -.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 6px 0 0;
  border-radius: 999px;
  background: transparent;
}

.nav a {
  position: relative;
  padding: 10px 6px 18px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  color: rgba(11, 11, 11, .76);
  overflow: visible;
  transition: color .25s ease, transform .25s ease;
}

.nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: transform .22s ease, opacity .22s ease;
}

.nav a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav a:hover::before,
.nav a:focus-visible::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.nav .nav__cta {
  color: var(--ink);
  background: transparent;
}

.nav .nav__cta::before {
  background: var(--green);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
  transition: transform .25s ease;
}

body.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .nav-toggle span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .64fr);
  align-items: center;
  gap: clamp(2rem, 4.4vw, 4.5rem);
  padding: 138px 0 66px;
}

.hero__bgword {
  position: absolute;
  inset: 16% auto auto -6vw;
  z-index: -1;
  font-family: var(--font-head);
  font-size: clamp(5rem, 16vw, 15rem);
  font-weight: 700;
  letter-spacing: -.09em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(206, 169, 82, .14);
  transform: rotate(-6deg);
  animation: bgFloat 8s ease-in-out infinite;
  user-select: none;
}

@keyframes bgFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-6deg); }
  50% { transform: translate3d(18px, -16px, 0) rotate(-4deg); }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

.hero__title,
.section-head h2,
.signature h2,
.branding h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.075em;
}

.hero__title {
  max-width: 11.4ch;
  font-size: clamp(3.4rem, 7.4vw, 6.85rem);
}

.split-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(6deg);
  animation: charRise .8s cubic-bezier(.16, 1, .3, 1) forwards;
  animation-delay: calc(var(--i) * 38ms + .95s);
}

.split-title .space {
  display: inline-block;
  width: .26em;
}

.split-title .word {
  display: inline-block;
  white-space: nowrap;
}

@keyframes charRise {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero__lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  line-height: 1.72;
}

.hero__lead strong {
  color: var(--ink);
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(11, 11, 11, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .8);
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0,0,0,.04);
}

.hero__proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(206, 169, 82, .32);
}

.hero-showcase {
  position: relative;
  justify-self: end;
  width: min(440px, 100%);
  transform-style: preserve-3d;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(11, 11, 11, .10);
  border-radius: 42px;
  background:
    radial-gradient(circle at 82% 10%, rgba(206, 169, 82, .28), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  box-shadow: 0 30px 90px rgba(0, 0, 0, .12);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  border-radius: 30px;
  background:
    repeating-linear-gradient(90deg, rgba(11,11,11,.045) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(11,11,11,.045) 0 1px, transparent 1px 42px);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.72), transparent 72%);
  pointer-events: none;
}

.showcase-card > * {
  position: relative;
  z-index: 1;
}

.showcase-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.showcase-card__top img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}

.showcase-card__top span {
  display: block;
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.showcase-card__top strong {
  display: block;
  margin-top: 4px;
  font-size: .92rem;
}

.showcase-card__headline {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  font-family: var(--font-head);
  font-size: clamp(3rem, 5.1vw, 4.7rem);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.09em;
}

.showcase-card__headline span:nth-child(2) {
  color: var(--green);
  transform: translateX(20px);
}

.showcase-card__headline span:nth-child(3) {
  transform: translateX(70px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(11, 11, 11, .8);
}

.showcase-card__preview {
  display: grid;
  grid-template-columns: 1fr .52fr;
  gap: 12px;
  margin-top: 20px;
}

.showcase-preview {
  overflow: hidden;
  border: 1px solid rgba(11, 11, 11, .10);
  background: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.09);
}

.showcase-preview--large {
  height: 210px;
  border-radius: 28px;
}

.showcase-preview--small {
  height: 99px;
  border-radius: 22px;
}

.showcase-preview-stack {
  display: grid;
  gap: 12px;
}

.showcase-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.showcase-preview--dark {
  display: grid;
  place-items: center;
  background: var(--ink);
}

.showcase-preview--dark img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.showcase-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.showcase-card__stats span {
  padding: 12px 10px;
  border: 1px solid rgba(11, 11, 11, .09);
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
  text-align: center;
}

.showcase-card__stats strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.55rem;
  line-height: .9;
}

.showcase-float {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 11, 11, .10);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
  animation: floatLetter 5s ease-in-out infinite;
}

.showcase-float--one {
  width: 74px;
  height: 74px;
  right: -24px;
  top: 18%;
  color: var(--green);
}

.showcase-float--two {
  width: 62px;
  height: 62px;
  left: -18px;
  bottom: 20%;
  background: var(--ink);
  color: var(--green);
  animation-delay: -1.4s;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 900;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  z-index: -1;
  width: 120%;
  height: 120%;
  background: var(--green);
  border-radius: 48% 52% 46% 54%;
  transform: translate(-105%, 45%) rotate(12deg);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
  border-color: var(--green);
}

.btn:hover::after {
  transform: translate(-8%, 14%) rotate(0deg);
}

.btn--primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(11, 11, 11, .18);
}

.btn--primary::after {
  background: var(--green);
}

.btn--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .66);
}

.btn--ghost:hover {
  color: #fff;
}

.hero-card {
  justify-self: end;
  width: min(360px, 100%);
  transform-style: preserve-3d;
}

.hero-card__frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(11, 11, 11, .10);
  border-radius: 40px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .10);
  transform: rotate(0deg);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease;
}

.hero-card:hover .hero-card__frame {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .14);
}

.hero-card__frame::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 46px;
  background: radial-gradient(circle at 50% 0%, rgba(206, 169, 82, .16), transparent 58%);
  filter: blur(10px);
  opacity: .9;
}

.hero-card__photo {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(206, 169, 82, .08) 0%, rgba(255,255,255,.88) 100%),
    repeating-linear-gradient(90deg, rgba(11,11,11,.04) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(11,11,11,.04) 0 1px, transparent 1px 48px),
    #fff;
}

.hero-card__frame img {
  display: block;
  width: 100%;
  max-height: 500px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  filter: saturate(1.02) contrast(1.02);
}

.hero-card__frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.74);
  pointer-events: none;
}

.orbit {
  display: none;
}

.hero-card__label {
  display: none;
}

.hero-card__caption {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-card__caption span {
  padding: 9px 12px;
  border: 1px solid rgba(11, 11, 11, .10);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.scroll-hint {
  position: absolute;
  left: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.scroll-hint span {
  width: 36px;
  height: 56px;
  border: 1px solid rgba(11, 11, 11, .18);
  border-radius: 999px;
  position: relative;
}

.scroll-hint span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  left: 50%;
  top: 10px;
  border-radius: 50%;
  background: var(--green);
  transform: translateX(-50%);
  animation: mouseDrop 1.7s ease-in-out infinite;
}

@keyframes mouseDrop {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 28px); }
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 24px 22px;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.marquee__track span::after {
  content: "";
  width: .42em;
  height: .42em;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 34px rgba(206, 169, 82, .66);
}

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

.trust {
  padding-block: 84px 40px;
}

.trust__grid {
  display: grid;
  grid-template-columns: 1.12fr .94fr .94fr;
  gap: 16px;
}

.metric {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(11, 11, 11, .1);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(206, 169, 82, .10), transparent 48%),
    #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .055);
}

.metric__number {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: .88;
  letter-spacing: -.08em;
}

.metric p {
  max-width: 310px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.services,
.portfolio,
.process,
.contact,
.signature,
.branding {
  padding-block: 96px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 46px;
}

.section-head h2,
.signature h2,
.branding h2,
.contact h2 {
  font-size: clamp(2.7rem, 6vw, 6.8rem);
}

.section-head p:not(.eyebrow),
.signature p,
.branding p,
.contact p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.72;
}

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

.service-card {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(11, 11, 11, .1);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .055);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 58%;
  background: radial-gradient(circle at 50% 0, rgba(206, 169, 82, .20), transparent 64%);
  transform: translateY(34%);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}

.service-card:hover {
  border-color: rgba(206, 169, 82, .30);
  box-shadow: var(--shadow-green);
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
}

.service-card h3,
.project h3,
.timeline h3 {
  margin: 58px 0 14px;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.service-card p,
.project span,
.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.service-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
}

.service-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.signature {
  display: grid;
  grid-template-columns: 1fr .82fr;
  align-items: stretch;
  gap: 20px;
}

.signature__panel {
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.signature__panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  bottom: -150px;
  border-radius: 50%;
  background: rgba(206, 169, 82, .28);
  filter: blur(8px);
}

.signature__tag {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(206, 169, 82, .14);
  color: #b8ffad;
  font-weight: 900;
}

.signature p {
  color: rgba(255, 255, 255, .75);
  position: relative;
  z-index: 1;
}

.signature__motion {
  min-height: 460px;
  border: 1px solid rgba(11, 11, 11, .08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(206,169,82,.06), rgba(255,255,255,1) 18%),
    repeating-linear-gradient(90deg, rgba(11,11,11,.04) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(11,11,11,.04) 0 1px, transparent 1px 48px),
    #fff;
  overflow: hidden;
  position: relative;
}

.signature__motion span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11, 11, 11, .08);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 2.15rem;
  font-weight: 700;
  box-shadow: 0 16px 38px rgba(0, 0, 0, .08);
  animation: floatLetter 6s ease-in-out infinite;
}

.signature__motion span:nth-child(1) { left: 9%; top: 11%; animation-delay: 0s; }
.signature__motion span:nth-child(2) { left: 43%; top: 4%; animation-delay: -.8s; }
.signature__motion span:nth-child(3) { right: 8%; top: 12%; animation-delay: -1.4s; }
.signature__motion span:nth-child(4) { left: 34%; top: 34%; animation-delay: -.3s; background: var(--ink); color: var(--green); }
.signature__motion span:nth-child(5) { right: 16%; top: 50%; animation-delay: -2s; }
.signature__motion span:nth-child(6) { left: 12%; bottom: 16%; animation-delay: -1.1s; }
.signature__motion span:nth-child(7) { right: 22%; bottom: 16%; animation-delay: -2.4s; background: var(--green); color: #fff; }
.signature__motion span:nth-child(8) { left: 41%; bottom: 8%; animation-delay: -1.7s; }

@keyframes floatLetter {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(3deg); }
}


.portfolio-group {
  margin-top: clamp(2.6rem, 5vw, 4.8rem);
}

.portfolio-group:first-of-type {
  margin-top: 0;
}

.portfolio-group__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  max-width: 880px;
  margin-bottom: 24px;
}

.portfolio-group__head > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--green);
  font-family: var(--font-head);
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

.portfolio-group__head h3 {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: .92;
  letter-spacing: -.07em;
}

.portfolio-group__head p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.project-grid--extra {
  margin-top: 20px;
  max-height: 0;
  opacity: 0;
  transform: translateY(-18px);
  overflow: hidden;
  pointer-events: none;
  transition: max-height .7s cubic-bezier(.16, 1, .3, 1), opacity .45s ease, transform .55s cubic-bezier(.16, 1, .3, 1);
}

.project-grid--extra.is-open {
  max-height: 980px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.project--extra {
  opacity: 0;
  transform: translateY(18px) scale(.98);
  transition: opacity .45s ease, transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease;
}

.project-grid--extra.is-open .project--extra {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-grid--extra.is-open .project--extra:nth-child(2) { transition-delay: 70ms; }
.project-grid--extra.is-open .project--extra:nth-child(3) { transition-delay: 140ms; }

.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.project__visual--image,
.project__visual--logo {
  min-height: 380px;
  padding: 14px;
  background: linear-gradient(180deg, #f7f4ec 0%, #fff 100%);
}

.project__visual--image::before,
.project__visual--image::after,
.project__visual--logo::before,
.project__visual--logo::after {
  display: none;
}

.project__visual--image img,
.project__visual--shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  border: 1px solid rgba(11, 11, 11, .08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.project__visual--logo {
  background: radial-gradient(circle at 70% 25%, rgba(206,169,82,.20), transparent 22rem), var(--ink);
}

.project__visual--logo img {
  width: min(78%, 320px);
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 11, 11, .1);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .055);
  transition: transform .3s ease, box-shadow .3s ease;
}

.project:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.project__visual {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.project__visual::before,
.project__visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.project__visual::before {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--green), #ead9a8);
  animation: blob 8s ease-in-out infinite;
}

.project__visual::after {
  width: 120px;
  height: 120px;
  border: 24px solid var(--ink);
  background: transparent;
  animation: blob 7s ease-in-out infinite reverse;
}

.project__visual--web { background: #fbf7ee; }
.project__visual--brand { background: #f8f8f8; }
.project__visual--craft { background: #f3efe7; }

.project__visual--image {
  min-height: 380px;
  padding: 14px;
  background: linear-gradient(180deg, #f7f4ec 0%, #fff 100%);
}

.project__visual--image::before,
.project__visual--image::after {
  display: none;
}

.project__visual--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  border: 1px solid rgba(11, 11, 11, .08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.project__visual--shot {
  min-height: 380px;
  padding: 14px;
  background: linear-gradient(180deg, #f7f4ec 0%, #fff 100%);
}

.project__visual--shot::before,
.project__visual--shot::after {
  display: none;
}

.project__badge {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(11, 11, 11, .88);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

.project__visual span {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 7rem;
  font-weight: 700;
  color: #fff;
  mix-blend-mode: difference;
}

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); border-radius: 44% 56% 64% 36% / 43% 44% 56% 57%; }
  33% { transform: translate(28px, -18px) scale(1.08); border-radius: 62% 38% 34% 66% / 45% 65% 35% 55%; }
  66% { transform: translate(-20px, 25px) scale(.88); border-radius: 36% 64% 55% 45% / 68% 41% 59% 32%; }
}

.project__content {
  padding: 24px;
}

.project__content p {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .76rem;
}

.project__content h3 {
  margin: 0 0 14px;
}

.branding {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 28px;
}

.brand-board {
  position: relative;
  min-height: 500px;
  padding: 28px;
  border: 1px solid rgba(11, 11, 11, .1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 70% 26%, rgba(206, 169, 82, .22), transparent 24rem),
    #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-board::before {
  content: "WEBPAŘIL";
  position: absolute;
  left: -8%;
  bottom: -7%;
  font-family: var(--font-head);
  font-size: clamp(4.4rem, 9vw, 9rem);
  font-weight: 700;
  letter-spacing: -.08em;
  color: rgba(11, 11, 11, .05);
  transform: rotate(-6deg);
}

.brand-board__top,
.brand-board__chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-board__top span,
.brand-board__chips span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: .8rem;
}

.brand-board__chips {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.brand-board__chips span:nth-child(1) { background: var(--green); }
.brand-board__chips span:nth-child(2) { background: var(--ink); }
.brand-board__chips span:nth-child(3) { background: #fff; color: var(--ink); border: 1px solid var(--line); }

.brand-board__logo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(270px, 52vw);
  height: min(270px, 52vw);
  display: grid;
  place-items: center;
  border-radius: 38%;
  background: var(--ink);
  color: var(--green);
  font-family: var(--font-head);
  font-size: clamp(5rem, 13vw, 9rem);
  font-weight: 700;
  letter-spacing: -.12em;
  transform: translate(-50%, -50%) rotate(-8deg);
  box-shadow: var(--shadow-green);
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { border-radius: 38%; transform: translate(-50%, -50%) rotate(-8deg) scale(1); }
  50% { border-radius: 50% 36% 42% 58%; transform: translate(-50%, -50%) rotate(4deg) scale(1.04); }
}

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

.timeline__item {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 11, 11, .1);
  background: #fff;
  min-height: 270px;
  overflow: hidden;
}

.timeline__item::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -48px;
  top: -50px;
  border-radius: 50%;
  background: rgba(206, 169, 82, .12);
}

.timeline__item span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
}

.timeline h3 {
  margin-top: 54px;
}

.contact {
  padding-bottom: 130px;
}

.contact__card {
  position: relative;
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: clamp(30px, 5vw, 70px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact__card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 78% 20%, rgba(206, 169, 82, .42), transparent 24rem),
    radial-gradient(circle at 10% 100%, rgba(206, 169, 82, .20), transparent 22rem);
  animation: contactGlow 5s ease-in-out infinite alternate;
}

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

.contact .eyebrow {
  color: #b8ffad;
}

.contact p {
  max-width: 740px;
  color: rgba(255, 255, 255, .72);
}

.contact .btn--ghost {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

@keyframes contactGlow {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-30px,20px,0) scale(1.06); }
}

.footer {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--muted);
  font-weight: 800;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(8px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1), filter .8s cubic-bezier(.16, 1, .3, 1);
}

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

@media (hover: none) {
  .cursor-dot { display: none; }
}

@media (max-width: 980px) {
  .site-header {
    top: 14px;
    left: 50%;
    width: calc(100% - 28px);
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 84px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(11, 11, 11, .1);
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    transform: translateY(-18px) scale(.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  body.menu-open .nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 10px 18px;
  }

  .hero,
  .signature,
  .branding {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-card,
  .hero-showcase {
    justify-self: start;
    width: min(440px, 100%);
  }

  .trust__grid,
  .service-stack,
  .project-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metric,
  .service-card,
  .timeline__item {
    min-height: auto;
  }

  .service-card h3,
  .timeline h3 {
    margin-top: 38px;
  }

  .service-card ul {
    margin-top: 38px;
  }

  .signature__motion,
  .brand-board {
    min-height: 390px;
  }
}


@media (max-width: 980px) {
  .project-grid--extra.is-open {
    max-height: 1900px;
  }

  .project__visual--image,
  .project__visual--logo {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .section,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .brand__text {
    display: none;
  }

  .hero__title {
    max-width: 9.2ch;
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .hero-card__frame {
    transform: none;
  }

  .scroll-hint {
    display: none;
  }

  .services,
  .portfolio,
  .process,
  .contact,
  .signature,
  .branding {
    padding-block: 68px;
  }

  .section-head h2,
  .signature h2,
  .branding h2,
  .contact h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .project__visual {
    min-height: 250px;
  }

  .project__visual--shot,
  .project__visual--image,
  .project__visual--logo {
    min-height: 320px;
  }

  .footer {
    flex-direction: column;
  }
}

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

  .loader {
    display: none;
  }

  body.is-loading {
    overflow: auto;
  }

  .reveal,
  .split-title .char {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 620px) {
  .hero__proof { gap: 8px; }
  .hero__proof span { font-size: .76rem; padding: 9px 12px; }
  .hero-card__photo { min-height: 430px; padding: 14px; }
  .hero-card__frame img { max-height: 400px; }

  .showcase-card { padding: 16px; border-radius: 30px; }
  .showcase-card__headline { font-size: clamp(2.6rem, 15vw, 4rem); }
  .showcase-card__headline span:nth-child(2) { transform: translateX(12px); }
  .showcase-card__headline span:nth-child(3) { transform: translateX(36px); }
  .showcase-card__preview { grid-template-columns: 1fr; }
  .showcase-preview--large { height: 220px; }
  .showcase-preview-stack { grid-template-columns: 1fr 1fr; }
  .showcase-preview--small { height: 110px; }
  .showcase-float { display: none; }
}


@media (hover: hover) {
  .site-header, .site-header * { cursor: none; }
}


/* === V12: hero bez pravého bloku, celé vycentrované === */
.hero {
  min-height: 100svh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(8.5rem, 13vh, 12rem) 0 clamp(5rem, 9vh, 8rem);
}

.hero__content {
  width: min(1180px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow {
  justify-content: center;
}

.hero__bgword {
  left: 50% !important;
  right: auto !important;
  top: 12%;
  transform: translateX(-50%) rotate(-4deg) !important;
  font-size: clamp(7rem, 21vw, 19rem);
  opacity: .9;
  pointer-events: none;
}

.hero__title {
  max-width: 12.5ch !important;
  margin-inline: auto;
  font-size: clamp(5.1rem, 11.2vw, 11.7rem) !important;
  line-height: .84 !important;
  letter-spacing: -.085em !important;
}

.hero__lead {
  max-width: 830px !important;
  margin: 34px auto 0 !important;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem) !important;
  line-height: 1.72 !important;
}

.hero__actions,
.hero__proof {
  justify-content: center;
}

.hero__actions {
  margin-top: 40px;
}

.hero__proof {
  margin-top: 24px;
}

.scroll-hint {
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 9rem;
  }

  .hero__title {
    font-size: clamp(4.2rem, 15vw, 8rem) !important;
  }

  .hero__bgword {
    font-size: clamp(6rem, 22vw, 13rem);
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 8.5rem;
    text-align: center;
  }

  .hero__title {
    max-width: 9.6ch !important;
    font-size: clamp(3.6rem, 18vw, 5.4rem) !important;
  }

  .hero__lead {
    font-size: 1.02rem !important;
  }

  .hero__proof {
    justify-content: center;
  }
}


/* === V13: HERO JEN UPROSTŘED, ŽÁDNÝ PRAVÝ BLOK === */
body.hero-centered-only .hero-card,
body.hero-centered-only .hero-showcase,
body.hero-centered-only .hero-visual,
body.hero-centered-only .hero__media,
body.hero-centered-only .hero__side,
body.hero-centered-only aside[class*="hero"] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

body.hero-centered-only .hero {
  width: min(1260px, calc(100% - 44px)) !important;
  min-height: 100svh !important;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: clamp(8.5rem, 13vh, 12rem) 0 clamp(5rem, 9vh, 8rem) !important;
}

body.hero-centered-only .hero__content {
  width: min(1180px, 100%) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

body.hero-centered-only .hero .eyebrow {
  justify-content: center !important;
}

body.hero-centered-only .hero__bgword {
  left: 50% !important;
  right: auto !important;
  top: 12% !important;
  transform: translateX(-50%) rotate(-4deg) !important;
  font-size: clamp(7rem, 21vw, 19rem) !important;
  opacity: .9 !important;
}

body.hero-centered-only .hero__title {
  max-width: 12.6ch !important;
  margin-inline: auto !important;
  font-size: clamp(5.4rem, 11.7vw, 12.2rem) !important;
  line-height: .84 !important;
  letter-spacing: -.085em !important;
}

body.hero-centered-only .hero__lead {
  max-width: 840px !important;
  margin: 34px auto 0 !important;
  font-size: clamp(1.15rem, 1.65vw, 1.45rem) !important;
  line-height: 1.72 !important;
}

body.hero-centered-only .hero__actions,
body.hero-centered-only .hero__proof {
  justify-content: center !important;
}

body.hero-centered-only .hero__actions {
  margin-top: 40px !important;
}

body.hero-centered-only .hero__proof {
  margin-top: 24px !important;
}

body.hero-centered-only .scroll-hint {
  left: 50% !important;
  transform: translateX(-50%) !important;
}

@media (max-width: 980px) {
  body.hero-centered-only .hero {
    min-height: auto !important;
    padding-top: 9rem !important;
  }

  body.hero-centered-only .hero__title {
    font-size: clamp(4.2rem, 15vw, 8rem) !important;
  }
}

@media (max-width: 620px) {
  body.hero-centered-only .hero {
    padding-top: 8.5rem !important;
  }

  body.hero-centered-only .hero__title {
    max-width: 9.6ch !important;
    font-size: clamp(3.6rem, 18vw, 5.4rem) !important;
  }

  body.hero-centered-only .hero__lead {
    font-size: 1.02rem !important;
  }
}


/* === v14 testimonials instead of old signature block === */
.testimonials {
  padding-block: 96px;
}

.testimonials__head {
  max-width: 880px;
}

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

.testimonial-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(11, 11, 11, .08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(206, 169, 82, .08) 0%, rgba(255,255,255,1) 100%),
    #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .055);
  transition: transform .3s ease, box-shadow .3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.testimonial-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-card__mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--ink);
  color: var(--green);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.04em;
  flex: 0 0 auto;
}

.testimonial-card__top h3 {
  margin: 0;
  font-size: 1.22rem;
}

.testimonial-card__top p {
  margin: 4px 0 0;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.78;
}

.testimonial-card__person {
  display: inline-block;
  margin-top: 22px;
  color: var(--muted);
  font-size: .96rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}


/* === v15 swipe testimonials === */
.testimonials--slider {
  padding-block: 96px;
}

.testimonials__head {
  max-width: 780px;
  margin-bottom: 34px;
}

.testimonials-slider {
  position: relative;
}

.testimonials-slider__controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.testimonials-slider__nav {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(11,11,11,.08);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.testimonials-slider__nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0,0,0,.1);
  border-color: rgba(206,169,82,.28);
}

.testimonials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 420px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 18px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.testimonial-card--swipe {
  scroll-snap-align: start;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(11,11,11,.08);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(206,169,82,.08) 0%, rgba(255,255,255,1) 100%),
    #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.055);
}

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(11,11,11,.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  flex: 0 0 auto;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__meta h3 {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.15;
}

.testimonial-card__meta p {
  margin: 6px 0 0;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.testimonial-card__rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: #d2aa4a;
  font-size: 1.05rem;
  letter-spacing: .02em;
}

.testimonial-card--swipe blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.8;
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(11,11,11,.08);
}

.testimonial-card__footer strong {
  font-size: 1rem;
}

.testimonial-card__footer span {
  color: var(--muted);
  font-size: .95rem;
}

.testimonials-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.testimonials-slider__dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(11,11,11,.14);
  transition: transform .2s ease, background .2s ease;
}

.testimonials-slider__dots button.is-active {
  background: #d2aa4a;
  transform: scale(1.25);
}

@media (max-width: 720px) {
  .testimonials-slider__controls {
    justify-content: center;
  }

  .testimonials-track {
    grid-auto-columns: 86vw;
  }
}


/* === v16: testimonials as single wide swipe card === */
.testimonials-slider {
  max-width: 980px;
  margin: 0 auto;
}

.testimonials-track {
  grid-auto-columns: 100%;
  gap: 0;
  padding: 6px 0 18px;
  scroll-padding-inline: 0;
}

.testimonial-card--swipe {
  width: 100%;
  min-height: 420px;
  padding: 34px;
}

.testimonial-card__header {
  margin-bottom: 20px;
}

.testimonial-card__avatar {
  width: 78px;
  height: 78px;
}

.testimonial-card__meta h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.testimonial-card__meta p {
  font-size: .86rem;
}

.testimonial-card__rating {
  margin-bottom: 20px;
  font-size: 1.08rem;
}

.testimonial-card--swipe blockquote {
  max-width: 820px;
  font-size: clamp(1.15rem, 1.45vw, 1.42rem);
  line-height: 1.85;
}

.testimonial-card__footer {
  margin-top: 28px;
}

@media (min-width: 900px) {
  .testimonial-card--swipe {
    display: grid;
    grid-template-columns: minmax(220px, 280px) 1fr;
    grid-template-areas:
      'header quote'
      'rating quote'
      'footer quote';
    column-gap: 34px;
    align-items: start;
  }

  .testimonial-card__header { grid-area: header; margin-bottom: 0; }
  .testimonial-card__rating { grid-area: rating; margin: 14px 0 0; }
  .testimonial-card--swipe blockquote { grid-area: quote; align-self: center; }
  .testimonial-card__footer { grid-area: footer; margin-top: 24px; padding-top: 22px; }
}

@media (max-width: 720px) {
  .testimonials-slider {
    max-width: 100%;
  }

  .testimonials-track {
    grid-auto-columns: 100%;
  }

  .testimonial-card--swipe {
    min-height: auto;
    padding: 24px;
  }

  .testimonial-card--swipe blockquote {
    font-size: 1.02rem;
    line-height: 1.72;
  }
}


/* === v17: true testimonial carousel === */
.testimonials-slider {
  max-width: 1020px;
  margin: 0 auto;
}
.testimonials-viewport {
  overflow: hidden;
  width: 100%;
}
.testimonials-track {
  display: flex !important;
  gap: 0 !important;
  overflow: visible !important;
  padding: 8px 0 10px !important;
  transform: translate3d(0, 0, 0);
  transition: transform .46s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
}
.testimonials-track.is-dragging {
  cursor: grabbing;
  transition: none;
}
.testimonial-card--swipe {
  flex: 0 0 100%;
  width: 100%;
  min-height: 430px;
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(206,169,82,.08) 0%, rgba(255,255,255,1) 100%), #fff;
  box-shadow: 0 20px 55px rgba(0,0,0,.06);
}
.testimonials-slider__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}
.testimonials-slider__nav {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11,11,11,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.testimonials-slider__nav svg {
  width: 20px;
  height: 20px;
}
.testimonials-slider__nav:hover {
  transform: translateY(-2px);
  border-color: rgba(206,169,82,.32);
  box-shadow: 0 16px 34px rgba(0,0,0,.1);
  background: #fff;
}
.testimonials-slider__nav:active {
  transform: translateY(0) scale(.98);
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.testimonial-card__avatar {
  width: 84px;
  height: 84px;
}
.testimonial-card__meta h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
}
.testimonial-card__meta p {
  margin: 6px 0 0;
  font-size: .88rem;
}
.testimonial-card__rating {
  margin-bottom: 24px;
  color: #d2aa4a;
  font-size: 1.08rem;
}
.testimonial-card--swipe blockquote {
  max-width: 820px;
  font-size: clamp(1.16rem, 1.5vw, 1.4rem);
  line-height: 1.82;
}
.testimonial-card__footer {
  margin-top: 28px;
  padding-top: 20px;
}
.testimonials-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.testimonials-slider__dots button {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: rgba(11,11,11,.14);
  transition: transform .2s ease, background .2s ease, width .2s ease;
}
.testimonials-slider__dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: #d2aa4a;
  transform: none;
}
@media (min-width: 920px) {
  .testimonial-card--swipe {
    display: grid;
    grid-template-columns: minmax(250px, 290px) 1fr;
    grid-template-areas:
      'header quote'
      'rating quote'
      'footer quote';
    column-gap: 40px;
    align-items: start;
  }
  .testimonial-card__header { grid-area: header; margin-bottom: 0; }
  .testimonial-card__rating { grid-area: rating; margin: 16px 0 0; }
  .testimonial-card--swipe blockquote { grid-area: quote; align-self: center; }
  .testimonial-card__footer { grid-area: footer; }
}
@media (max-width: 760px) {
  .testimonial-card--swipe {
    min-height: auto;
    padding: 24px;
  }
  .testimonials-slider__footer {
    gap: 14px;
  }
  .testimonials-slider__nav {
    width: 48px;
    height: 48px;
  }
  .testimonial-card__avatar {
    width: 74px;
    height: 74px;
  }
  .testimonial-card--swipe blockquote {
    font-size: 1.02rem;
    line-height: 1.74;
  }
}


/* === v18: sjednocený font na všech tlačítkách === */
button,
.btn,
.nav a,
.nav-toggle,
.brand,
.show-more-webs,
.testimonials-slider__nav,
.testimonials-slider__dots button,
[data-show-more-webs],
input[type="button"],
input[type="submit"],
input[type="reset"] {
  font-family: var(--font-head) !important;
  font-weight: 700;
  letter-spacing: -.02em;
}

.btn,
.nav a,
[data-show-more-webs] {
  font-weight: 800;
}

.testimonials-slider__nav {
  font-weight: 700;
}

.testimonials-slider__dots button {
  font-size: 0;
  letter-spacing: 0;
}


/* === v19: nové webové portfolio náhledy === */
.project__visual--shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* === v20: extrémně responzivní vrstva pro mobil, tablet i malé notebooky === */
html {
  overflow-x: clip;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

button,
a {
  touch-action: manipulation;
}

.section,
.footer {
  width: min(1180px, calc(100% - clamp(28px, 5vw, 72px)));
}

.site-header {
  max-width: calc(100% - max(18px, env(safe-area-inset-left) + env(safe-area-inset-right)));
}

.nav a,
.btn,
.show-more-webs,
.testimonials-slider__nav {
  min-height: 44px;
}

.hero {
  width: min(1260px, calc(100% - clamp(28px, 5vw, 72px))) !important;
}

.hero__title {
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero__lead {
  text-wrap: pretty;
}

.hero__actions,
.hero__proof,
.contact__actions {
  max-width: 100%;
}

.hero__proof span,
.hero-card__caption span,
.brand-board__chips span,
.brand-board__top span {
  white-space: nowrap;
}

.project__visual--shot,
.project__visual--image,
.project__visual--logo {
  min-height: clamp(230px, 28vw, 380px);
}

.project__visual--shot img,
.project__visual--image img,
.project__visual--logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-viewport {
  max-width: 100%;
}

.testimonials-slider {
  width: 100%;
}

.testimonial-card--swipe {
  min-width: 100%;
}

@media (max-width: 1180px) {
  .site-header {
    top: 14px;
  }

  .hero {
    padding-top: clamp(7.5rem, 14vh, 10rem) !important;
  }

  .hero__title {
    font-size: clamp(4.8rem, 10.8vw, 9.4rem) !important;
  }

  .services,
  .portfolio,
  .process,
  .contact,
  .signature,
  .branding,
  .testimonials {
    padding-block: clamp(72px, 9vw, 96px);
  }

  .project-grid,
  .service-stack,
  .timeline,
  .testimonials__grid {
    gap: 16px;
  }

  .brand-board {
    min-height: 430px;
  }
}

@media (max-width: 980px) {
  .site-header {
    left: 50%;
    right: auto;
    width: min(680px, calc(100% - 24px));
    max-width: calc(100% - 24px);
    padding: 8px 10px;
  }

  .brand {
    padding-right: 10px;
  }

  .brand__text {
    display: inline-block;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .nav-toggle span {
    width: 20px;
  }

  .nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(74px + env(safe-area-inset-top));
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(11, 11, 11, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .12);
    transform: translateY(-12px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  body.menu-open .nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    padding: 14px 16px;
    text-align: center;
  }

  .nav a::before {
    bottom: 6px;
  }

  .hero {
    min-height: auto !important;
    padding-block: clamp(8.4rem, 18vh, 10rem) clamp(4rem, 9vh, 6rem) !important;
  }

  .hero__bgword {
    top: 18% !important;
    font-size: clamp(5rem, 20vw, 11rem) !important;
  }

  .hero__title {
    max-width: 10.8ch !important;
    font-size: clamp(4rem, 14vw, 7.2rem) !important;
    line-height: .88 !important;
  }

  .hero__lead {
    max-width: 680px !important;
    font-size: clamp(1rem, 2.2vw, 1.2rem) !important;
  }

  .hero__actions,
  .contact__actions {
    justify-content: center;
  }

  .trust__grid,
  .service-stack,
  .project-grid,
  .project-grid--branding,
  .project-grid--webs,
  .project-grid--extra,
  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .branding,
  .signature {
    grid-template-columns: 1fr;
  }

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

  .project-grid--extra {
    max-height: 0;
  }

  .project-grid--extra.is-open {
    max-height: 1800px;
  }

  .project__visual {
    min-height: clamp(260px, 43vw, 360px);
  }

  .testimonials-slider {
    max-width: 760px;
  }

  .testimonial-card--swipe {
    min-height: auto;
  }

  .contact__card {
    border-radius: clamp(28px, 6vw, 52px);
  }
}

@media (max-width: 760px) {
  :root {
    --radius-xl: 28px;
    --radius-lg: 20px;
  }

  .section,
  .footer,
  .hero {
    width: min(100% - 28px, 1180px) !important;
  }

  .site-header {
    width: calc(100% - 18px);
    max-width: calc(100% - 18px);
    top: calc(8px + env(safe-area-inset-top));
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand__text {
    font-size: .9rem;
  }

  .hero {
    padding-top: clamp(7.6rem, 16vh, 9rem) !important;
  }

  .hero__title {
    max-width: 9.4ch !important;
    font-size: clamp(3.35rem, 17vw, 5.5rem) !important;
    letter-spacing: -.075em !important;
  }

  .hero__lead {
    margin-top: 24px !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }

  .hero__actions {
    width: 100%;
    gap: 10px;
    margin-top: 30px !important;
  }

  .hero__actions .btn,
  .contact__actions .btn {
    width: 100%;
    min-height: 54px;
  }

  .hero__proof {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .hero__proof span {
    white-space: normal;
    justify-content: center;
    flex: 1 1 calc(50% - 8px);
    min-width: 136px;
    text-align: center;
  }

  .scroll-hint {
    display: none !important;
  }

  .loader__word {
    font-size: clamp(2.8rem, 16vw, 5.8rem);
    letter-spacing: -.06em;
  }

  .loader__bar {
    bottom: 22vh;
    width: min(320px, 74vw);
  }

  .marquee__track span {
    padding: 18px 16px;
    font-size: clamp(1.4rem, 9vw, 3rem);
  }

  .trust__grid,
  .service-stack,
  .project-grid,
  .project-grid--branding,
  .project-grid--webs,
  .project-grid--extra,
  .timeline,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .service-card,
  .timeline__item,
  .project,
  .testimonial-card--swipe {
    border-radius: 26px;
  }

  .metric {
    padding: 24px;
  }

  .metric__number {
    font-size: clamp(2.8rem, 16vw, 5rem);
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-card h3,
  .project h3,
  .timeline h3 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .project__visual {
    min-height: 300px;
  }

  .project__visual--shot,
  .project__visual--image,
  .project__visual--logo {
    min-height: 320px;
  }

  .project__content {
    padding: 22px;
  }

  .portfolio-group__head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portfolio-group__head > span,
  .timeline__item span {
    width: 48px;
    height: 48px;
  }

  .show-more-webs {
    width: 100%;
  }

  .testimonials__head {
    margin-bottom: 24px;
  }

  .testimonials-slider__footer {
    gap: 12px;
    margin-top: 10px;
  }

  .testimonials-slider__nav {
    width: 48px;
    height: 48px;
  }

  .testimonial-card--swipe {
    padding: 24px;
  }

  .testimonial-card__header {
    gap: 12px;
    align-items: flex-start;
  }

  .testimonial-card__avatar {
    width: 66px;
    height: 66px;
  }

  .testimonial-card__meta h3 {
    font-size: 1.28rem;
  }

  .testimonial-card--swipe blockquote {
    font-size: 1rem;
    line-height: 1.72;
  }

  .brand-board {
    min-height: 360px;
    padding: 22px;
  }

  .brand-board__logo {
    width: min(220px, 62vw);
    height: min(220px, 62vw);
  }

  .contact {
    padding-bottom: 80px;
  }

  .contact__card {
    padding: 28px 22px;
  }

  .footer {
    gap: 8px;
    font-size: .9rem;
  }
}

@media (max-width: 430px) {
  .section,
  .footer,
  .hero {
    width: calc(100% - 22px) !important;
  }

  .site-header {
    width: calc(100% - 14px);
    padding: 7px 8px;
  }

  .brand {
    gap: 8px;
    padding-left: 6px;
  }

  .brand__text {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav {
    left: 8px;
    right: 8px;
    top: calc(66px + env(safe-area-inset-top));
  }

  .hero__title {
    max-width: 8.8ch !important;
    font-size: clamp(3.05rem, 18.2vw, 4.65rem) !important;
  }

  .hero__lead {
    font-size: .96rem !important;
  }

  .hero__proof span {
    flex-basis: 100%;
  }

  .btn {
    padding-inline: 18px;
  }

  .project__visual {
    min-height: 260px;
  }

  .project__visual--shot,
  .project__visual--image,
  .project__visual--logo {
    min-height: 280px;
  }

  .testimonials-slider__dots button.is-active {
    width: 22px;
  }

  .testimonial-card__header {
    flex-direction: column;
  }

  .testimonial-card__avatar {
    width: 72px;
    height: 72px;
  }

  .footer {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: 2.85rem !important;
  }

  .section-head h2,
  .branding h2,
  .contact h2 {
    font-size: clamp(2.25rem, 13vw, 3.2rem) !important;
  }

  .project__visual--shot,
  .project__visual--image,
  .project__visual--logo {
    min-height: 250px;
  }

  .testimonial-card--swipe {
    padding: 20px;
  }
}

@media (orientation: landscape) and (max-height: 540px) {
  .hero {
    min-height: auto !important;
    padding-top: 7rem !important;
    padding-bottom: 3rem !important;
  }

  .loader__bar {
    bottom: 12vh;
  }

  .scroll-hint {
    display: none !important;
  }
}

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

  .loader {
    display: none !important;
  }

  body.is-loading {
    overflow: auto !important;
  }
}


/* === v21: oprava hero textu + mobilní rozbalování webů === */

/* Nadpis v hero už se nesmí mačkat/překrývat */
.hero__title {
  max-width: 13.8ch !important;
  line-height: .94 !important;
  letter-spacing: -.07em !important;
  font-size: clamp(4.7rem, 9.4vw, 10.4rem) !important;
}

.split-title .word,
.split-title .char {
  line-height: inherit;
}

.hero__content {
  gap: 0;
}

@media (max-width: 1180px) {
  .hero__title {
    max-width: 12.8ch !important;
    line-height: .96 !important;
    font-size: clamp(4.2rem, 10vw, 8.4rem) !important;
  }
}

@media (max-width: 980px) {
  .hero__title {
    max-width: 11.4ch !important;
    line-height: .98 !important;
    font-size: clamp(3.7rem, 12.5vw, 6.8rem) !important;
  }
}

@media (max-width: 760px) {
  .hero__title {
    max-width: 10.4ch !important;
    line-height: 1 !important;
    letter-spacing: -.06em !important;
    font-size: clamp(3.1rem, 14.5vw, 5.2rem) !important;
  }
}

@media (max-width: 430px) {
  .hero__title {
    max-width: 9.2ch !important;
    line-height: 1.02 !important;
    font-size: clamp(2.75rem, 15.2vw, 4.25rem) !important;
  }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: 2.55rem !important;
    line-height: 1.04 !important;
  }
}

/* Extra weby: zavírání bez divného skoku a bez zmizení hlavních karet */
.project-grid--extra {
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.22, 1, .36, 1), opacity .24s ease, margin-top .32s ease;
}

.project-grid--extra:not(.is-open) {
  max-height: 0 !important;
  opacity: 0;
  margin-top: 0 !important;
  pointer-events: none;
}

.project-grid--extra.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 980px) {
  .project-grid--extra.is-open {
    max-height: 2600px !important;
  }
}

@media (max-width: 760px) {
  .project-grid--extra.is-open {
    max-height: 3200px !important;
  }
}


/* === v22: Kolor Food web preview === */
.project__visual--shot img[src*="web-kolor-food"] {
  object-position: center center;
}


/* === v23: FIOREN Dačice web preview === */
.project__visual--shot img[src*="web-fioren-dacice"] {
  object-position: center center;
}
