:root {
  --bg: #111;
  --panel: #1e1e1e;
  --panel-soft: #262626;
  --paper: #f7f3ea;
  --ink: #161514;
  --muted: #aaa39a;
  --muted-dark: #665f57;
  --line: rgba(255, 255, 255, .1);
  --line-dark: #ded4c4;
  --gold: #b58a45;
  --green: #176b52;
  --max: 1160px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

.skip-link {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 40;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform .16s ease;
}

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

.wrap {
  width: min(var(--max), calc(100% - 28px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(17, 17, 17, .92);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  width: clamp(142px, 22vw, 220px);
  max-height: 52px;
  object-fit: contain;
  filter: brightness(1.14) contrast(1.08);
}

.nav-links {
  display: flex;
  gap: 18px;
  color: rgba(247, 243, 234, .76);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.btn-light {
  color: var(--ink);
  background: var(--paper);
}

.btn-dark {
  color: var(--paper);
  border-color: rgba(247, 243, 234, .22);
  background: transparent;
}

.full {
  width: 100%;
}

.hero {
  padding: clamp(46px, 8vw, 92px) 0 clamp(96px, 10vw, 136px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .96;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy p:not(.eyebrow),
.section-head p,
.entity-block p,
.contact p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

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

.hero-card {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

.hero-card img,
.hero-card video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: var(--panel-soft);
}

.section {
  padding: clamp(50px, 8vw, 88px) 0;
}

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

.services-section {
  position: relative;
  z-index: 2;
  margin-top: -96px;
  padding-top: clamp(118px, 11vw, 156px);
  padding-bottom: clamp(126px, 10vw, 154px);
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--bg), rgba(247, 243, 234, .86) 54%, var(--paper));
}

.services-section .eyebrow {
  color: var(--gold);
}

.services-section .section-head p {
  color: var(--muted-dark);
}

.services-section .service-grid article {
  background: #fffaf1;
  border-color: var(--line-dark);
}

.services-section .service-grid h3 {
  color: var(--ink);
}

.services-section .service-grid p {
  color: var(--muted-dark);
}

.work-section {
  position: relative;
  z-index: 3;
  margin-top: -92px;
  padding-top: clamp(118px, 11vw, 154px);
  background: var(--bg);
  overflow: hidden;
}

.work-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 118px;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--paper), rgba(17, 17, 17, .82) 58%, var(--bg));
}

.service-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-grid article,
.faq-grid article,
.contact-card {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-grid small {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-weight: 900;
}

.service-grid p,
.faq-grid p,
.work-grid figcaption,
.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.category-gallery {
  display: grid;
  gap: 18px;
}

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

.category-tab {
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  grid-template-rows: auto 1fr;
  text-align: left;
}

.category-tab img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #151515;
}

.category-tab span,
.category-tab small {
  padding-inline: 12px;
}

.category-tab span {
  position: relative;
  z-index: 1;
  margin-top: -16px;
  padding-top: 26px;
  background: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.category-tab small {
  position: relative;
  z-index: 1;
  padding-top: 4px;
  padding-bottom: 12px;
  background: inherit;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.category-tab:hover,
.category-tab:focus-visible,
.category-tab.is-active {
  border-color: rgba(181, 138, 69, .85);
  background: #25211a;
  outline: none;
}

.category-tab:focus-visible {
  box-shadow: 0 0 0 3px rgba(181, 138, 69, .32);
}

.gallery-panels {
  min-height: 440px;
}

.gallery-panel[hidden] {
  display: none;
}

.gallery-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-panel-head h3 {
  margin-bottom: 0;
  font-size: 26px;
}

.gallery-panel-head p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.work-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-rows: auto 78px;
}

.work-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #151515;
}

.category-tab img[src*="dritare-rrethore"],
.work-grid img[src*="dritare-rrethore"] {
  object-position: center 35%;
}

.category-tab img[src*="vitrage-artistike"],
.work-grid img[src*="vitrage-artistike"],
.work-grid img[src*="vetrata-artistike"],
.work-grid img[src*="vetrate-hark"] {
  object-position: center 36%;
}

.work-grid img[src*="vetrata-artistike-harqe-grup"] {
  object-position: center 48%;
}

.category-tab img[src*="workshop-profile"],
.work-grid img[src*="workshop-profile"] {
  object-position: center 30%;
}

.category-tab img[src*="grila-hark"],
.work-grid img[src*="grila-hark"] {
  object-position: center 30%;
}

.work-grid figcaption {
  position: relative;
  z-index: 1;
  margin-top: -16px;
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 28px 14px 12px;
  background: var(--panel);
}

.entity-block {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(280px, .45fr);
  gap: 28px;
  align-items: start;
}

.entity-block aside {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
}

.location-section {
  padding-top: clamp(42px, 7vw, 76px);
}

.location-section > div {
  max-width: 760px;
}

.location-section > div p {
  margin-bottom: 14px;
}

.map-frame {
  background: #222;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.entity-block aside h3 {
  color: var(--ink);
}

.entity-block li {
  color: var(--muted-dark);
}

.contact {
  padding: clamp(54px, 8vw, 88px) 0;
  background: var(--paper);
  color: var(--ink);
}

.contact .eyebrow {
  color: var(--gold);
}

.contact p {
  color: var(--muted-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .45fr);
  gap: 28px;
  align-items: center;
}

.contact-card {
  color: var(--paper);
  background: var(--bg);
  border-color: rgba(0, 0, 0, .16);
}

.contact-card h3 {
  margin-bottom: 14px;
}

.contact-card p {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-bottom: 8px;
  color: rgba(247, 243, 234, .72);
  line-height: 1.45;
}

.contact-card p strong {
  color: rgba(247, 243, 234, .9);
}

.contact-card p span {
  overflow-wrap: anywhere;
}

.contact-card .btn {
  margin-top: 14px;
}

footer {
  padding: 24px 0;
  color: rgba(247, 243, 234, .68);
  background: #0b0b0b;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-left {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left a,
.footer-credit {
  color: rgba(247, 243, 234, .86);
  text-decoration: none;
}

.footer-left a:hover,
.footer-credit:hover {
  color: var(--paper);
  text-decoration: underline;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero,
  .entity-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

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

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

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

@media (max-width: 580px) {
  .wrap {
    width: min(100% - 20px, var(--max));
  }

  .nav {
    min-height: 64px;
  }

  .brand img {
    width: min(132px, 38vw);
  }

  .nav .btn {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(35px, 11vw, 48px);
  }

  h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

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

  .hero-card {
    max-width: none;
  }

  .hero {
    padding-bottom: 82px;
  }

  .services-section {
    margin-top: -68px;
    padding-top: 96px;
    padding-bottom: 118px;
  }

  .work-section {
    margin-top: -66px;
    padding-top: 94px;
  }

  .services-section::before,
  .work-section::before {
    height: 86px;
  }

  .service-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .category-tab span,
  .category-tab small {
    padding-inline: 10px;
  }

  .category-tab span {
    min-height: 44px;
    padding-top: 24px;
    font-size: 14px;
  }

  .category-tab small {
    padding-bottom: 10px;
  }

  .gallery-panel-head {
    display: block;
    padding: 14px;
  }

  .gallery-panel-head h3 {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .gallery-panel-head p {
    font-size: 14px;
  }

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

  .work-grid figure {
    grid-template-rows: auto 92px;
  }

  .work-grid figcaption {
    min-height: 92px;
    padding: 26px 10px 10px;
    font-size: 13px;
  }

  .service-grid article,
  .faq-grid article,
  .contact-card {
    padding: 18px;
  }

  .contact-card p {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-bottom: 12px;
  }

  .map-frame iframe {
    height: 320px;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
