@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;600;700&family=Outfit:wght@400;600;700&display=swap");

:root{
  --bg:#f6f2ed;
  --bg-soft:#fffaf5;
  --text:#141414;
  --muted:#444;
  --stroke:rgba(0,0,0,.08);
  --accent:#c1121f;
  --accent-strong:#e11d2e;
  --accent-soft:rgba(193,18,31,.10);
  --radius:18px;
  --shadow:0 16px 34px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.05);
  --shadow-media:0 22px 48px rgba(0,0,0,.16), 0 6px 16px rgba(0,0,0,.07);
  --max:1180px;
  --font-body:"DM Sans", sans-serif;
  --font-head:"Outfit", sans-serif;
  --sticky-height:120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:
    radial-gradient(900px 420px at 10% -5%, rgba(193,18,31,.16), transparent 60%),
    radial-gradient(700px 340px at 85% 5%, rgba(193,18,31,.10), transparent 55%),
    linear-gradient(120deg, rgba(193,18,31,.05), transparent 45%),
    var(--bg);
  line-height:1.6;
  padding-bottom: calc(var(--sticky-height) + env(safe-area-inset-bottom));
}

h1,h2,h3,h4{font-family:var(--font-head); margin:0 0 10px}
img{max-width:100%; height:auto; display:block}
a{color:inherit; text-decoration:none}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:12px; width:auto; height:auto; padding:10px 12px;
  border-radius:12px; border:1px solid var(--stroke); background:#fff; z-index:999;
}

section[id]{scroll-margin-top:110px}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(246,242,237,.92);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--stroke);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  min-height:78px;
  padding:10px 0;
}

.brand{
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.brand__logo{width:220px; height:auto}
.brand__tag{
  font-size:10px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent);
  width:100%;
  max-width:220px;
  text-align:center;
  line-height:1.2;
}

.burger{
  width:46px; height:46px; border-radius:14px; border:1px solid var(--stroke);
  background:#fff; cursor:pointer; display:grid; place-items:center;
}
.burger span{
  width:22px; height:3px; background:var(--accent);
  display:block; border-radius:4px; transition:transform .18s ease, opacity .18s ease;
}
.burger span:nth-child(2){margin:5px 0}
.burger[aria-expanded="true"] span:nth-child(1){transform: translateY(8px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform: translateY(-8px) rotate(-45deg)}

.menu{
  position:fixed; inset:78px 0 auto 0;
  background:#fff;
  border-bottom:1px solid var(--stroke);
  display:flex; flex-direction:column; align-items:stretch; gap:8px;
  padding:16px 20px;
  transform: translateY(-12px); opacity:0; pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.menu.is-open{transform: translateY(0); opacity:1; pointer-events:auto}
.menu__link{
  display:block; width:100%;
  padding:12px 16px; border-radius:12px; border:1px solid var(--stroke);
  background:var(--bg-soft); text-transform:uppercase; letter-spacing:.16em;
  font-size:12px; font-weight:700; color:#1d1d1d; white-space:nowrap;
}
.menu__link--accent{
  border-color:rgba(193,18,31,.45);
  box-shadow: inset 0 0 0 2px rgba(193,18,31,.15);
  color:var(--accent);
}
.menu__link.is-active{
  border-color:rgba(193,18,31,.45);
  box-shadow: inset 0 0 0 2px rgba(193,18,31,.15);
  color:var(--accent);
}
.menu__lang{
  display:flex;
  justify-content:center;
  padding-top:4px;
  margin-top:2px;
  border-top:1px solid rgba(0,0,0,.07);
}

.langSwitch{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.langSwitch__btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:1px solid var(--stroke);
  background:#fff;
  color:var(--text);
  border-radius:999px;
  padding:6px 10px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  cursor:pointer;
}
.langSwitch__btn:hover{border-color:rgba(193,18,31,.3)}
.langSwitch__btn.is-active{
  border-color:rgba(193,18,31,.45);
  box-shadow:inset 0 0 0 2px rgba(193,18,31,.14);
  color:var(--accent);
}
.langSwitch__flag{
  font-size:15px;
  line-height:1;
}

.hero{
  padding:80px 0 40px;
}
.hero__grid{
  display:grid; gap:32px; align-items:center;
}
.hero__content h1{font-size: clamp(34px, 4.4vw, 58px)}
.hero__subhead{font-size: clamp(18px, 2.6vw, 26px); color:var(--accent); margin:0 0 10px}
.hero__content h2{font-size: clamp(18px, 2.6vw, 26px); color:var(--accent)}
.hero__content h3{font-size: clamp(16px, 2.2vw, 20px); color:#2a2a2a}

.eyebrow{
  margin:0 0 12px; font-size:12px; letter-spacing:.26em; text-transform:uppercase; color:var(--accent);
}
.lead{font-size:18px; color:var(--muted); margin:0 0 16px}
.lead--mobile{display:none}

.hero__actions{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}

.btn{
  padding:12px 16px; border-radius:999px; border:1px solid var(--stroke);
  background:#fff; font-weight:700; cursor:pointer;
}
.btn--primary{
  background:var(--accent); color:#fff; border-color:var(--accent);
  box-shadow:0 12px 24px rgba(193,18,31,.2);
}
.btn--ghost:hover{border-color:rgba(193,18,31,.35)}

.hero__visual{
  margin:0; background:#fff; border-radius:var(--radius); overflow:hidden;
  border:1px solid var(--stroke); box-shadow:var(--shadow-media);
}
.hero__visual picture,
.section__visual picture,
.galleryItem picture,
.mapCard picture{
  display:block;
}
.hero__visual img,
.section__visual img,
.galleryItem img,
.mapCard img{
  width:100%;
  height:auto;
}
.hero__visual figcaption{padding:12px 14px; font-size:13px; color:var(--muted)}

.section{padding:60px 0}
.section--alt{
  background:var(--bg-soft);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}
.intro{margin:0 0 18px; color:var(--muted)}

.split{
  display:grid; gap:28px; align-items:start;
}

.stepGrid{display:grid; gap:12px}
.stepCard{
  background:#fff; border-radius:var(--radius); border:1px solid var(--stroke);
  padding:16px; box-shadow:var(--shadow);
}
.stepCard__num{
  width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center;
  border-radius:999px; background:var(--accent); color:#fff; font-weight:700; margin-bottom:8px;
}

.guideCard{
  background:#fff; border-radius:var(--radius); border:1px solid var(--stroke);
  padding:16px; box-shadow:var(--shadow);
}
.guideTable{width:100%; border-collapse:collapse; font-size:15px}
.guideTable th,.guideTable td{padding:10px 8px}
.guideTable th{
  text-align:left; text-transform:uppercase; letter-spacing:.14em; font-size:11px; color:var(--accent);
  border-bottom:1px solid var(--stroke);
}
.guideTable td:last-child{text-align:right; font-weight:700; color:var(--accent)}

.servicesGrid{
  margin-top:24px;
  display:grid; gap:14px;
}
.servicesGroup{margin-top:20px}
.servicesGroup__title{
  margin:0 0 4px;
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--accent);
}
.servicesGroup__intro{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.servicesGroup .servicesGrid{margin-top:12px}
.servicesGroup--framed,
.servicesGroup--digital{
  margin-top:24px;
  padding:16px;
  border-radius:var(--radius);
  background:rgba(193,18,31,.06);
  border:1px solid rgba(193,18,31,.18);
}
.servicesGroup--framed .serviceCard,
.servicesGroup--digital .serviceCard{
  border-color:rgba(193,18,31,.2);
  box-shadow:0 12px 28px rgba(193,18,31,.12);
}
.serviceCard{
  background:#fff; border-radius:var(--radius); border:1px solid var(--stroke);
  padding:16px; box-shadow:var(--shadow);
}
.serviceCard h4{margin:0 0 6px; font-size:18px}
.serviceCard__actions{
  margin-top:12px; display:flex; flex-wrap:wrap; gap:8px;
}
.chip-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:#fff;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  color:var(--accent);
  cursor:pointer;
  font-family:var(--font-body);
}
.chip-btn:hover{border-color:var(--accent-strong); color:var(--accent-strong)}
.chip-btn--accent{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}
.chip-btn--accent:hover{filter:brightness(1.05)}
.chip-btn.placeholder{
  font-style:normal;
  color:rgba(20,20,20,.55);
  border-color:rgba(0,0,0,.12);
}
.socialLink.placeholder{
  font-style:normal;
  color:rgba(20,20,20,.55);
  border-color:rgba(0,0,0,.12);
}

.section__visual{
  margin:24px 0 0; border-radius:var(--radius); overflow:hidden; border:1px solid var(--stroke); box-shadow:var(--shadow-media);
}
.section__visual figcaption{padding:12px 14px; font-size:13px; color:var(--muted)}

.techGrid{display:grid; gap:12px; margin-top:16px}
.techCard{
  background:#fff; border-radius:var(--radius); border:1px solid var(--stroke); padding:14px; box-shadow:var(--shadow);
}

.pillRow{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; padding:0; list-style:none}
.pill{
  display:inline-flex; align-items:center; gap:6px; padding:8px 12px; border-radius:999px;
  border:1px solid var(--accent); color:var(--accent); text-transform:uppercase; letter-spacing:.12em; font-size:11px;
}

.noteCard{
  background:#fff;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  padding:18px;
  box-shadow:var(--shadow);
}
.noteCard h3{margin:0 0 10px}
.noteCard p{margin:0; color:var(--muted)}

.galleryGrid{
  margin-top:20px; display:grid; gap:14px;
}
.galleryItem{
  margin:0; border-radius:var(--radius); overflow:hidden; border:1px solid var(--stroke); box-shadow:var(--shadow);
  background:#fff;
}
.galleryItem{box-shadow:var(--shadow-media)}
.galleryItem figcaption{padding:12px 14px; font-size:13px; color:var(--muted)}
.galleryItem__body{
  padding:14px 14px 8px;
}
.galleryItem__title{
  margin:0 0 4px;
  font-size:18px;
}
.galleryItem__text{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}
.galleryActions{
  padding:0 14px 14px;
  display:flex;
  justify-content:center;
}

.microLinks{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; font-size:12px; text-transform:uppercase; letter-spacing:.12em;
  color:var(--accent);
}
.referenceLinks{
  margin-top:18px;
  display:grid;
  gap:10px;
}
.referenceLinks > a{
  font-weight:700;
  color:var(--accent);
}
.referenceLinks__intro{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.webPreviewRail{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:100%;
  gap:14px;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scrollbar-width:none;
  -ms-overflow-style:none;
  scroll-snap-type:x proximity;
  padding:2px 2px 6px;
}
.webPreviewRail::-webkit-scrollbar{display:none}
.webPreviewCard{
  scroll-snap-align:start;
  display:grid;
  grid-template-rows:auto 1fr;
  background:#fff;
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-media);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.webPreviewCard:hover{
  transform:translateY(-2px);
  border-color:rgba(193,18,31,.22);
  box-shadow:0 26px 52px rgba(0,0,0,.18), 0 8px 18px rgba(0,0,0,.08);
}
.webPreviewCard__media{
  display:block;
  aspect-ratio:16 / 10;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(193,18,31,.08), rgba(193,18,31,.02)),
    #f6f2ed;
  border-bottom:1px solid var(--stroke);
}
.webPreviewCard__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
}
.webPreviewCard__body{
  display:grid;
  gap:4px;
  padding:12px 14px 14px;
}
.webPreviewCard__domain{
  color:var(--text);
  line-height:1.25;
}
.webPreviewCard__meta{
  color:var(--muted);
  font-size:13px;
}
.webPreviewCard__cta{
  margin-top:6px;
  color:var(--accent);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.referenceLinks--gallery{
  margin-top:22px;
}
.workGalleryRail{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:100%;
  gap:14px;
  overflow-x:auto;
  overscroll-behavior-x:contain;
  scrollbar-width:none;
  -ms-overflow-style:none;
  scroll-snap-type:x proximity;
  padding:2px 2px 6px;
}
.workGalleryRail::-webkit-scrollbar{display:none}
.workGalleryCard{
  scroll-snap-align:start;
  display:grid;
  grid-template-rows:auto 1fr;
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-media);
  cursor:pointer;
  text-align:left;
  padding:0;
  font-family:var(--font-body);
}
.workGalleryCard:hover{
  border-color:rgba(193,18,31,.22);
  box-shadow:0 26px 52px rgba(0,0,0,.18), 0 8px 18px rgba(0,0,0,.08);
}
.workGalleryCard__media{
  display:block;
  aspect-ratio:16 / 10;
  overflow:hidden;
  border-bottom:1px solid var(--stroke);
  background:
    linear-gradient(135deg, rgba(193,18,31,.08), rgba(193,18,31,.02)),
    #f6f2ed;
}
.workGalleryCard__image{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:filter .24s ease, transform .24s ease, opacity .24s ease;
}
.workGalleryCard:hover .workGalleryCard__image{transform:scale(1.02)}
.workGalleryCard__body{
  display:grid;
  gap:4px;
  padding:12px 14px 14px;
}
.workGalleryCard__title{
  font-size:18px;
  line-height:1.25;
}
.workGalleryCard__text{
  color:var(--muted);
  font-size:13px;
}
.workGalleryCard__cta{
  margin-top:6px;
  color:var(--accent);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.is-lazy-blur{
  filter:blur(13px);
  transform:scale(1.03);
  opacity:.8;
}
.is-lazy-blur.is-loaded{
  filter:blur(0);
  transform:scale(1);
  opacity:1;
}

.formWrap{margin-top:20px}
.form{
  background:#fff; border-radius:var(--radius); border:1px solid var(--stroke); padding:20px; box-shadow:var(--shadow);
  display:grid; gap:14px;
}
.form__row{display:grid; gap:12px; align-items:start}
label{display:grid; gap:6px; font-weight:600}
input, select, textarea{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.18);
  background:#efe9e2;
  font-family:var(--font-body);
}
textarea{resize:vertical}
.form__note{display:none; margin:0; color:var(--accent); font-weight:600}
.form__error{display:none; margin:0; color:#7f1d1d; font-weight:600}
.honeypot{position:absolute; left:-9999px}

.fileField{gap:8px}
.form__row .fileField{
  grid-column:1 / -1;
  align-self:start;
}
.fileInput{
  position:absolute;
  left:-9999px;
}
.fileUi{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  cursor:pointer;
}
.fileBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:var(--accent);
  color:#fff;
  font-weight:700;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.fileName{
  font-size:13px;
  color:var(--muted);
}
.fileSize{
  font-size:12px;
  color:var(--accent);
  font-weight:700;
}
.fileWarning{
  font-size:12px;
  color:#7f1d1d;
  margin-top:6px;
}
.fileWarning:empty{display:none}
.fileQueue{
  display:grid;
  gap:8px;
  margin-top:8px;
}
.fileQueue:empty{display:none}
.fileQueueItem{
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  background:#fff;
  padding:10px;
  display:grid;
  gap:8px;
  box-shadow:0 6px 16px rgba(0,0,0,.05);
}
.fileQueueItem__head{
  display:flex;
  gap:8px;
  align-items:flex-start;
  justify-content:space-between;
}
.fileQueueItem__name{
  font-size:13px;
  font-weight:700;
  line-height:1.35;
  min-width:0;
  overflow-wrap:anywhere;
}
.fileQueueItem__remove{
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:var(--text);
  border-radius:999px;
  padding:4px 10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  cursor:pointer;
  flex:none;
}
.fileQueueItem__remove:hover{border-color:rgba(0,0,0,.24)}
.fileQueueItem__remove[disabled]{
  opacity:.5;
  cursor:not-allowed;
}
.fileQueueItem__meta{
  display:flex;
  flex-wrap:wrap;
  gap:6px 10px;
  align-items:center;
  font-size:12px;
  color:var(--muted);
}
.fileQueueItem__status{
  font-weight:700;
}
.fileQueueItem[data-status="error"] .fileQueueItem__status{color:#7f1d1d}
.fileQueueItem[data-status="uploaded"] .fileQueueItem__status{color:#166534}
.fileQueueItem[data-status="uploading"] .fileQueueItem__status,
.fileQueueItem[data-status="starting"] .fileQueueItem__status,
.fileQueueItem[data-status="queued"] .fileQueueItem__status{color:var(--accent)}
.fileQueueItem__bar{
  width:100%;
  height:8px;
  background:rgba(0,0,0,.07);
  border-radius:999px;
  overflow:hidden;
}
.fileQueueItem__bar > span{
  display:block;
  width:0%;
  height:100%;
  background:var(--accent);
  transition:width .15s ease;
}
.fileQueueItem[data-status="uploaded"] .fileQueueItem__bar > span{background:#15803d}
.fileQueueItem[data-status="error"] .fileQueueItem__bar > span{background:#b91c1c}
.fileHelp{
  font-size:12px;
  color:var(--muted);
  margin-top:6px;
}

.uploadStatus{
  display:none;
  margin-top:10px;
  gap:8px;
}
.uploadBar{
  width:100%;
  height:10px;
  background:rgba(0,0,0,.08);
  border-radius:999px;
  overflow:hidden;
}
#uploadProgress{
  display:block;
  height:100%;
  width:0%;
  background:var(--accent);
  transition:width .2s ease;
}
.uploadText{
  margin:0;
  font-size:12px;
  color:var(--muted);
}

.faqList{display:grid; gap:10px}
.faqItem{
  border-radius:var(--radius); border:1px solid var(--stroke); background:#fff; overflow:hidden;
}
.faqItem summary{
  cursor:pointer; padding:14px 16px; font-weight:700; display:flex; justify-content:space-between; align-items:center;
}
.faqItem summary::after{content:"+"; color:var(--accent)}
.faqItem[open] summary::after{content:"–"}
.faqItem p{margin:0; padding:0 16px 16px}

.contactGrid{display:grid; gap:12px; margin-top:16px}
.contactCard{
  background:#fff; border-radius:var(--radius); border:1px solid var(--stroke); padding:14px; box-shadow:var(--shadow);
}
.socialRow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.teamGrid{
  display:grid;
  gap:14px;
  margin:20px 0;
}
.teamCard{
  display:grid;
  grid-template-columns: auto 1fr;
  gap:16px;
  align-items:center;
  background:#fff;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  padding:16px;
  box-shadow:var(--shadow);
}
.teamCard picture{
  display:block;
  width:120px;
  height:120px;
  aspect-ratio:1 / 1;
  border-radius:50%;
  overflow:hidden;
  flex:0 0 auto;
}
.teamPhoto{
  width:100%;
  height:100%;
  aspect-ratio:1 / 1;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(193,18,31,.18);
}
.teamCard__body h4{margin:0 0 6px}
.teamCard__body p{margin:0 0 10px; color:var(--muted)}
.teamContacts{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:10px;
}
.teamSocial{
  display:flex;
  gap:8px;
}
.socialLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:#fff;
  font-weight:700;
  color:var(--accent);
  font-size:12px;
  letter-spacing:.08em;
}
.socialLink:hover{border-color:var(--accent)}

.mapCard{
  background:#fff; border-radius:var(--radius); border:1px solid var(--stroke); overflow:hidden; box-shadow:var(--shadow-media);
}
.mapCard a{display:block; position:relative}
.mapCard__cta{
  position:absolute; left:12px; bottom:12px; background:#fff; padding:8px 12px; border-radius:999px;
  border:1px solid var(--stroke); font-size:11px; text-transform:uppercase; letter-spacing:.12em;
}
.mapCard p{
  margin:0;
  padding:12px 14px 14px;
}

.footer{
  padding:40px 0 60px; border-top:1px solid var(--stroke);
}
.footer__inner{display:flex; flex-direction:column; gap:6px; color:var(--muted)}
.footerLinks{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.footerLinks a{color:var(--accent)}

.placeholder{color:rgba(20,20,20,.55); font-style:italic}
.note{color:var(--muted); font-style:italic}
.required{color:var(--accent)}

.workLightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:85;
}
.workLightbox.is-open{display:flex}
.workLightbox__overlay{
  position:absolute;
  inset:0;
  background:rgba(7,7,7,.76);
}
.workLightbox__panel{
  position:relative;
  width:min(1100px, 96vw);
  max-height:92vh;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  gap:10px;
  align-items:center;
  z-index:1;
}
.workLightbox__figure{
  margin:0;
  background:#fff;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.24);
  overflow:hidden;
  box-shadow:0 24px 52px rgba(0,0,0,.45);
}
.workLightbox__image{
  width:100%;
  max-height:72vh;
  object-fit:contain;
  background:#161616;
}
.workLightbox__caption{
  padding:14px 16px;
}
.workLightbox__caption strong{
  display:block;
  margin:0 0 4px;
}
.workLightbox__caption p{
  margin:0;
  color:var(--muted);
}
.workLightbox__nav,
.workLightbox__close{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.38);
  background:rgba(20,20,20,.72);
  color:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
  line-height:1;
}
.workLightbox__nav{font-size:30px; padding-bottom:2px}
.workLightbox__close{
  position:absolute;
  top:-50px;
  right:0;
  font-size:25px;
  z-index:2;
}
.workLightbox__nav[disabled]{
  opacity:.45;
  cursor:default;
}

.serviceModal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:80;
}
.serviceModal.is-open{display:flex}
.serviceModal__overlay{
  position:absolute; inset:0;
  background:rgba(7,7,7,.45);
}
.serviceModal__panel{
  position:relative;
  background:#fff;
  border-radius:var(--radius);
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  padding:20px 22px;
  width:min(860px, 92vw);
  max-height:85vh;
  overflow:auto;
}
.serviceModal__close{
  position:absolute; top:14px; right:14px;
  width:36px; height:36px; border-radius:999px;
  border:1px solid var(--stroke);
  background:#fff; cursor:pointer; font-size:20px; line-height:1;
}
.serviceModal__content h3{margin-top:0}
.serviceModal__body h4{margin:18px 0 6px}
.serviceModal__body p{color:var(--muted)}
.serviceModal__body ul{margin:8px 0 14px; padding-left:20px; color:var(--muted)}

body.modal-open{overflow:hidden}

.reveal{opacity:0; transform:translateY(16px); transition:opacity .6s ease, transform .6s ease}
.reveal.is-visible{opacity:1; transform:translateY(0)}
.reveal.stagger{transition-delay:var(--delay, 0ms)}

.stickyFooter{
  position:fixed; left:0; right:0; bottom:0; z-index:70;
  background:rgba(255,255,255,.96);
  border-top:1px solid var(--stroke);
  box-shadow:0 -10px 24px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
}
.stickyFooter__inner{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0 calc(10px + env(safe-area-inset-bottom));
}
.stickyFooter__main{
  display:flex;
  flex-wrap:wrap;
  gap:6px 12px;
  align-items:center;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:700;
}
.stickyFooter__main span{color:var(--muted)}
.stickyFooter__main a{color:var(--accent)}
.stickyFooter__actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.stickyFooter__meta{
  display:flex;
  gap:4px;
  align-items:center;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--muted);
  flex-basis:100%;
  justify-content:center;
}
.stickyFooter__meta a{
  color:var(--accent);
  text-transform:none;
  letter-spacing:0;
  font-weight:700;
}
.stickyAction{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--accent);
  background:#fff;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  color:var(--accent);
}
.stickyAction--accent{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

@media (min-width: 900px){
  .hero__grid{grid-template-columns: 1.1fr .9fr}
  .split{grid-template-columns: 1.1fr .9fr}
  .servicesGrid{grid-template-columns: repeat(2, 1fr)}
  .techGrid{grid-template-columns: repeat(2, 1fr)}
  .galleryGrid{grid-template-columns: repeat(3, 1fr)}
  .webPreviewRail{grid-auto-columns: calc((100% - 28px) / 3)}
  .workGalleryRail{grid-auto-columns: calc((100% - 28px) / 3)}
  .form__row{grid-template-columns: repeat(2, 1fr)}
  .contactGrid{grid-template-columns: repeat(2, 1fr)}
  .stepGrid{grid-template-columns: repeat(3, 1fr)}
  .teamGrid{grid-template-columns: repeat(2, 1fr)}
  .teamCard picture{width:140px; height:140px}
  .teamPhoto{width:100%; height:100%}
}

@media (min-width: 980px){
  .menu{
    position:static; inset:auto; transform:none; opacity:1; pointer-events:auto; background:transparent; border:0;
    padding:0; flex-direction:row; gap:10px; align-items:center; justify-content:flex-end;
  }
  .menu__link{background:transparent; border-color:transparent}
  .menu__link:hover{border-color:rgba(193,18,31,.3)}
  .menu__lang{
    border-top:0;
    margin-top:0;
    padding-top:0;
    margin-left:4px;
  }
  .burger{display:none}
}

@media (max-width: 1180px){
  .brand__tag{display:none}
}

@media (max-width: 980px){
  :root{--sticky-height:150px}
  .lead--desktop{display:none}
  .lead--mobile{display:block}
  .workLightbox__panel{
    width:min(680px, 96vw);
    grid-template-columns:1fr;
    gap:8px;
  }
  .workLightbox__close{
    top:10px;
    right:10px;
  }
  .workLightbox__nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:2;
  }
  .workLightbox__nav--prev{left:8px}
  .workLightbox__nav--next{right:8px}
  .workLightbox__image{max-height:64vh}
}

@media (max-width: 640px){
  :root{--sticky-height:180px}
  .teamCard{grid-template-columns: 1fr; text-align:center}
  .teamPhoto{margin:0 auto}
  .teamContacts,
  .teamSocial{justify-content:center}
  .stickyFooter__inner{flex-direction:column; align-items:stretch}
  .stickyFooter__main{justify-content:center; text-align:center}
  .stickyFooter__actions{
    justify-content:center;
    width:100%;
    max-width:420px;
    margin:0 auto;
  }
  .stickyAction{
    flex:0 1 auto;
    min-width:148px;
    padding-inline:14px;
  }
  .stickyFooter__meta{justify-content:center; text-align:center}
  .workLightbox{padding:10px}
  .workLightbox__caption{padding:12px}
}

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.is-visible{transition:none; opacity:1; transform:none}
}
