/*
  AKULLNAJA BUILD SYSTEM — ZEKAJ Theme
  Built by AKULLNAJA SH.P.K.
  Mobile-first static landing theme.
*/

:root {
  --red: #e31e24;
  --red-dark: #bf1117;
  --ink: #27292b;
  --ink-2: #34373a;
  --paper: #f6f5f2;
  --white: #ffffff;
  --muted: #73777b;
  --line: #dedfdf;
  --max: 1180px;
  --pad: clamp(18px, 4vw, 42px);
  --radius: 0px;
  --shadow: 0 24px 70px rgba(0,0,0,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 9999;
  background: var(--white);
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
  min-width: 0;
}
.section { padding: clamp(76px, 9vw, 128px) 0; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-weight: 800;
  font-size: clamp(.72rem, 1.4vw, .84rem);
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--red); }

h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .92;
}
h1 { font-size: clamp(3.15rem, 9vw, 7.6rem); color: var(--white); }
h1 span, h2 span { color: var(--red); }
h2 { font-size: clamp(2.75rem, 6.4vw, 5.8rem); }
p { line-height: 1.7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(0,0,0,.08);
  backdrop-filter: blur(14px);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
  min-width: 0;
}
.brand { flex: 0 1 260px; min-width: 0; }
.brand img { width: min(100%, 245px); max-height: 58px; object-fit: contain; object-position: left center; }
.desktop-nav { margin-left: auto; display: flex; gap: 28px; align-items: center; }
.desktop-nav a {
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .03em;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-call {
  align-self: stretch;
  background: var(--red);
  color: white;
  display: grid;
  align-content: center;
  padding: 0 22px;
  margin-right: calc(var(--pad) * -1);
  min-width: 200px;
}
.header-call span { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; opacity: .82; }
.header-call strong { font-size: .95rem; margin-top: 2px; }
.menu-toggle { display: none; background: none; border: 0; width: 46px; height: 46px; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; height: 3px; background: var(--ink); margin: 5px 0; transition: .2s; }
.mobile-menu { background: var(--ink); color: var(--white); padding: 18px var(--pad) 28px; }
.mobile-menu a { display: block; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-weight: 800; }
.mobile-menu .mobile-call { color: var(--red); border-bottom: 0; }

.hero {
  position: relative;
  min-height: clamp(650px, 82vh, 850px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--ink);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; z-index: -3; }
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20,22,23,.92) 0%, rgba(20,22,23,.78) 39%, rgba(20,22,23,.26) 72%, rgba(20,22,23,.10) 100%),
    linear-gradient(0deg, rgba(20,22,23,.75) 0%, transparent 35%);
}
.hero-content { padding: 92px 0 138px; }
.hero-content .eyebrow { color: #fff; }
.hero-copy {
  color: rgba(255,255,255,.83);
  width: min(620px, 100%);
  font-size: clamp(1rem, 2vw, 1.18rem);
  margin: 28px 0 0;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .035em;
  font-size: .84rem;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { color: white; border-color: rgba(255,255,255,.72); background: rgba(0,0,0,.12); }
.btn-ghost:hover { background: white; color: var(--ink); }
.btn-full { width: 100%; }

.hero-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--red);
  color: white;
}
.hero-strip-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  overflow: hidden;
  white-space: nowrap;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(.72rem, 1.4vw, .9rem);
}
.hero-strip-inner i { flex: 0 0 4px; width: 4px; height: 4px; background: white; border-radius: 50%; opacity: .75; }

.split-heading, .projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: end;
  margin-bottom: 54px;
}
.section-heading > p { color: var(--muted); margin: 0 0 8px; font-size: 1.05rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #cfd1d2;
  border-left: 1px solid #cfd1d2;
  background: white;
}
.service-card {
  position: relative;
  min-height: 265px;
  padding: 30px;
  border-right: 1px solid #cfd1d2;
  border-bottom: 1px solid #cfd1d2;
  transition: .25s ease;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: var(--red);
  transition: .25s ease;
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; }
.service-card:hover { color: white; transform: translateY(-2px); }
.service-card:hover::before { height: 100%; }
.service-card:hover p, .service-card:hover .service-no { color: rgba(255,255,255,.82); }
.service-no { font-size: .74rem; color: var(--red); font-weight: 900; letter-spacing: .13em; }
.service-card h3 { margin: 62px 0 12px; font-size: 1.35rem; text-transform: uppercase; }
.service-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.projects { background: var(--ink); color: white; }
.projects-heading > p { color: rgba(255,255,255,.62); }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 265px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  grid-column: span 6;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #111;
  text-align: left;
}
.gallery-item-large { grid-column: span 7; grid-row: span 2; }
.gallery-item-wide { grid-column: span 5; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent 55%);
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-label {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: white;
}
.gallery-label b { display: block; font-size: clamp(1rem, 2vw, 1.3rem); }
.gallery-label small { display: block; margin-top: 4px; text-transform: uppercase; letter-spacing: .13em; color: rgba(255,255,255,.72); }
.gallery-note { margin: 18px 0 0; color: rgba(255,255,255,.5); font-size: .78rem; }

.about { background: #efeeea; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: clamp(42px, 8vw, 110px); align-items: center; }
.about-visual { position: relative; padding: 0 38px 38px 0; }
.about-visual img { aspect-ratio: 4/5; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.red-block {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--red);
  color: white;
  padding: 26px 28px;
  min-width: 220px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 2.6rem;
  line-height: .85;
  text-transform: uppercase;
}
.red-block span { font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: .72rem; letter-spacing: .1em; font-weight: 800; }
.about-copy .lead { margin-top: 30px; font-size: 1.18rem; font-weight: 650; }
.about-copy > p:not(.eyebrow) { color: #5e6265; }
.about-points { margin-top: 34px; border-top: 1px solid #c8c9c7; }
.about-points div { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 12px; min-height: 58px; border-bottom: 1px solid #c8c9c7; }
.about-points strong { color: var(--red); font-size: .78rem; }
.about-points span { font-weight: 800; }

.contact { position: relative; background: #151719; color: white; overflow: hidden; }
.blueprint-bg {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image:
    linear-gradient(rgba(255,255,255,.65) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.65) 1px, transparent 1px),
    linear-gradient(rgba(227,30,36,.9) 2px, transparent 2px),
    linear-gradient(90deg, rgba(227,30,36,.9) 2px, transparent 2px);
  background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px;
  transform: rotate(-2deg) scale(1.04);
}
.contact-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .7fr); gap: clamp(50px, 8vw, 115px); align-items: start; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); width: min(560px, 100%); }
.contact-list { margin-top: 38px; }
.contact-list a { display: block; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-list a:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-list small { display: block; color: var(--red); text-transform: uppercase; letter-spacing: .13em; font-weight: 900; margin-bottom: 5px; }
.contact-list strong { font-size: clamp(1rem, 2.5vw, 1.35rem); }
.note-card {
  background: #faf8ef;
  color: var(--ink);
  padding: 30px;
  box-shadow: 16px 20px 0 rgba(227,30,36,.9);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 31px, rgba(46,48,50,.08) 32px);
}
.note-top { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--ink); padding-bottom: 13px; margin-bottom: 22px; }
.note-top span { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; font-size: 2rem; text-transform: uppercase; }
.note-top b { color: var(--red); }
.note-card label { display: block; margin-bottom: 16px; }
.note-card label > span { display: block; font-size: .73rem; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; margin-bottom: 6px; }
.note-card input, .note-card select, .note-card textarea {
  width: 100%;
  border: 1px solid #c8c5ba;
  background: rgba(255,255,255,.83);
  color: var(--ink);
  padding: 12px;
  border-radius: 0;
  outline: none;
}
.note-card input:focus, .note-card select:focus, .note-card textarea:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(227,30,36,.12); }
.form-hint { font-size: .72rem; color: #777; margin: 10px 0 0; line-height: 1.4; }

.site-footer { background: #0e0f10; color: rgba(255,255,255,.72); }
.footer-top { padding: 54px 0; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; }
.footer-brand img { width: min(330px, 100%); filter: brightness(0) invert(1); }
.footer-brand p { margin: 18px 0 0; font-size: .85rem; }
.footer-top h3 { color: white; margin: 0 0 14px; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-top a { display: block; margin: 8px 0; }
.footer-top p { margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); min-height: 68px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: .76rem; }
.agency-credit strong { color: white; letter-spacing: .04em; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  background: rgba(0,0,0,.92);
  padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox figure { margin: 0; width: min(1100px, 100%); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }
.lightbox figcaption { color: white; margin-top: 12px; font-weight: 800; }
.lightbox-close { position: fixed; top: 16px; right: 18px; width: 50px; height: 50px; border: 0; background: var(--red); color: white; font-size: 2rem; cursor: pointer; }

.floating-call {
  display: none;
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 1200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  place-items: center;
}
.floating-call svg { width: 27px; height: 27px; fill: white; }

@media (max-width: 980px) {
  .desktop-nav, .header-call { display: none; }
  .header-inner { height: 76px; }
  .brand { flex: 1 1 auto; }
  .brand img { width: 215px; max-width: 74vw; }
  .menu-toggle { display: block; margin-left: auto; flex: 0 0 auto; }
  .split-heading, .projects-heading { grid-template-columns: 1fr; align-items: start; }
  .section-heading > p { width: min(650px, 100%); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  .section { padding: 74px 0; }
  .header-inner { height: 72px; }
  .brand img { width: 190px; max-height: 52px; }
  .hero { min-height: 690px; align-items: end; }
  .hero-image { object-position: 57% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(15,17,18,.98) 0%, rgba(15,17,18,.83) 48%, rgba(15,17,18,.22) 100%),
      linear-gradient(90deg, rgba(15,17,18,.62), rgba(15,17,18,.08));
  }
  .hero-content { padding: 120px 0 132px; }
  h1 { font-size: clamp(3.2rem, 15vw, 5.2rem); }
  h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .hero-copy { font-size: 1rem; line-height: 1.6; margin-top: 22px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; width: min(100%, 360px); }
  .btn { width: 100%; }
  .hero-strip-inner { overflow-x: auto; scrollbar-width: none; padding-right: 20px; }
  .hero-strip-inner::-webkit-scrollbar { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; padding: 26px; }
  .service-card h3 { margin-top: 42px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 310px; gap: 10px; }
  .gallery-item, .gallery-item-large, .gallery-item-wide { grid-column: auto; grid-row: auto; min-width: 0; }
  .gallery-item-large { height: 390px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { order: 2; padding: 0 24px 24px 0; }
  .about-copy { order: 1; }
  .red-block { min-width: 185px; padding: 20px; font-size: 2rem; }
  .note-card { padding: 24px 20px; box-shadow: 8px 10px 0 rgba(227,30,36,.9); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
  .floating-call { display: grid; }
}

@media (max-width: 390px) {
  :root { --pad: 16px; }
  .brand img { width: 170px; }
  .hero-content .eyebrow { letter-spacing: .12em; }
  .gallery { grid-auto-rows: 275px; }
  .gallery-item-large { height: 335px; }
  .note-top span { font-size: 1.7rem; }
}

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