/* ==========================================================
   KONCEPT PRIME
   Ndrysho ngjyrat vetëm këtu.
   ========================================================== */
:root {
  --gold: #d79b16;
  --gold-light: #f0b52a;
  --navy: #0d1c2c;
  --navy-2: #15283b;
  --black: #0b0c0e;
  --black-soft: #15171a;
  --white: #ffffff;
  --off-white: #f6f6f4;
  --gray: #71767c;
  --border: #e2e2df;

  --header-height: 82px;
  --radius: 4px;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

/* ==========================================================
   RESET
   ========================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

.section {
  padding: 92px 0;
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(8, 10, 12, 0.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  transition: .25s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(8, 10, 12, 0.985);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  position: relative;
}

.brand-mark span {
  display: block;
  transform: skewY(-28deg);
  transform-origin: bottom;
}

.mark-left {
  width: 11px;
  height: 32px;
  background: var(--white);
}

.mark-mid {
  width: 11px;
  height: 43px;
  background: var(--gold);
}

.mark-right {
  width: 13px;
  height: 25px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.8);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  color: var(--white);
  letter-spacing: .07em;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.brand-copy strong span {
  color: var(--gold-light);
}

.brand-copy small {
  color: rgba(255,255,255,.75);
  font-size: 8px;
  letter-spacing: .20em;
  font-weight: 700;
  margin-top: 6px;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  height: 100%;
}

.main-nav > a,
.nav-drop-btn {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
}

.main-nav > a::after,
.nav-drop-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--gold);
  transition: .25s ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-drop-btn:hover {
  color: var(--gold-light);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-drop-btn:hover::after {
  right: 0;
}

.nav-dropdown {
  position: relative;
  height: 100%;
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
  min-width: 180px;
  background: var(--black-soft);
  border-top: 2px solid var(--gold);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .2s ease;
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 12px 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.nav-drop-menu a:hover {
  color: var(--gold);
  background: rgba(255,255,255,.04);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.phone-link,
.lang {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.phone-link {
  color: var(--gold-light);
}

.phone-link span {
  color: var(--white);
  margin-left: 5px;
}

.lang i {
  font-style: normal;
  color: rgba(255,255,255,.4);
  margin: 0 5px;
}

.menu-toggle {
  display: none;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  min-height: 720px;
  height: min(780px, 92vh);
  position: relative;
  overflow: hidden;
  background: var(--black);
  margin-top: 0;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  background:
    linear-gradient(to right, rgba(6,9,12,.78) 0%, rgba(6,9,12,.45) 45%, rgba(6,9,12,.16) 100%),
    var(--bg) center/cover no-repeat;
  transition:
    opacity .8s ease,
    visibility .8s ease,
    transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.22), rgba(0,0,0,.12)),
    linear-gradient(to top, rgba(0,0,0,.32), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--header-height);
}

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

.eyebrow {
  color: var(--gold-light);
  font-size: clamp(13px, 1.2vw, 18px);
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(64px, 7vw, 115px);
  line-height: .88;
  letter-spacing: -.035em;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--white);
  text-shadow: 0 8px 30px rgba(0,0,0,.3);
}

.hero-slide:nth-child(2) h1 span,
.hero-slide:nth-child(3) h1 span {
  color: var(--gold-light);
}

.hero-lead {
  max-width: 560px;
  color: rgba(255,255,255,.94);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 600;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  transition: .2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 10px 30px rgba(215,155,22,.28);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.12);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.hero-side-note {
  align-self: flex-end;
  margin-bottom: 105px;
  max-width: 260px;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  color: var(--white);
}

.hero-side-note strong {
  display: block;
  color: var(--gold-light);
  font-size: 20px;
  margin-bottom: 4px;
}

.hero-side-note span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-arrow {
  position: absolute;
  z-index: 4;
  top: 52%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.2);
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  transition: .2s ease;
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 2px rgba(0,0,0,.18);
}

.hero-dots button.active {
  background: var(--gold-light);
  width: 28px;
  border-radius: 20px;
}

/* ==========================================================
   SECTION HEADING
   ========================================================== */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading > span,
.mini-title {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .10em;
}

.section-heading h2 {
  margin-top: 4px;
  font-size: clamp(32px, 3.1vw, 48px);
  letter-spacing: -.03em;
  font-weight: 800;
}

.heading-line {
  width: 70px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--gold);
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services-section {
  background: var(--white);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 35px rgba(0,0,0,.06);
  overflow: hidden;
  transition: .25s ease;
}

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

.service-photo {
  height: 270px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.25), transparent 50%);
}

.service-photo-skele {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1000&q=82");
}

.service-photo-ndertim {
  background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1000&q=82");
}

.service-photo-moler {
  background-image: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=1000&q=82");
}

.service-icon {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: -28px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  border: 4px solid var(--white);
  font-size: 28px;
  font-weight: 800;
}

.service-body {
  padding: 43px 28px 28px;
}

.service-body h3 {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.service-body p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 20px;
}

.service-body ul {
  display: grid;
  gap: 10px;
  margin-bottom: 25px;
}

.service-body li {
  font-size: 13px;
  font-weight: 600;
  position: relative;
  padding-left: 22px;
}

.service-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.text-link {
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
}

.text-link span {
  color: var(--gold);
  margin-left: 8px;
  transition: .2s ease;
}

.text-link:hover span {
  margin-left: 13px;
}

/* ==========================================================
   STATS
   ========================================================== */
.stats-section {
  background: linear-gradient(135deg, #0d0e10, #17191c);
  color: var(--white);
}

.stats-grid {
  min-height: 128px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  font-size: 42px;
  color: var(--white);
  opacity: .85;
}

.stat strong {
  display: block;
  color: var(--gold-light);
  font-size: 29px;
  line-height: 1;
}

.stat small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  margin-top: 7px;
  letter-spacing: .04em;
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about-section {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  min-height: 530px;
  background:
    linear-gradient(to top, rgba(12,25,38,.18), transparent 55%),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=84")
    center/cover;
  position: relative;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: -24px;
  bottom: 32px;
  background: var(--gold);
  color: var(--black);
  width: 160px;
  height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}

.experience-badge strong {
  font-size: 40px;
  line-height: 1;
}

.experience-badge span {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 800;
}

.about-copy h2 {
  margin: 10px 0 24px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.about-copy h2 em {
  font-style: normal;
  color: var(--gold);
}

.about-copy p {
  color: #5c6267;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 15px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin: 27px 0 30px;
  font-size: 13px;
  font-weight: 700;
}

.about-points b {
  color: var(--gold);
  margin-right: 8px;
}

/* ==========================================================
   PROJECTS
   ========================================================== */
.projects-section {
  background: #fff;
}

.project-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -15px 0 34px;
  flex-wrap: wrap;
}

.project-filters button {
  min-width: 122px;
  height: 40px;
  padding: 0 18px;
  border: 1px solid #cfd1d3;
  font-size: 10px;
  font-weight: 900;
  transition: .2s ease;
}

.project-filters button:hover,
.project-filters button.active {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

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

.project-card {
  height: 280px;
  position: relative;
  overflow: hidden;
  background: #ddd;
  transition: .2s ease;
}

.project-card.hide {
  display: none;
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 45px 22px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  color: #fff;
  transform: translateY(22px);
  transition: .3s ease;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay span {
  display: block;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
}

.project-overlay strong {
  font-size: 18px;
}

.projects-more {
  text-align: center;
  margin-top: 35px;
}

.btn-project {
  color: var(--black);
  border-color: var(--gold);
  min-width: 330px;
}

.btn-project:hover {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

/* ==========================================================
   CTA
   ========================================================== */
.cta-section {
  min-height: 315px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    url("https://images.unsplash.com/photo-1508450859948-4e04fabaa4ea?auto=format&fit=crop&w=2200&q=82")
    center 55%/cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(35,24,9,.72));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--black);
  font-size: 22px;
}

.cta-content h2 {
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.1;
}

.cta-content h2 span {
  color: var(--gold-light);
}

.cta-content p {
  margin: 8px 0 19px;
  font-size: 13px;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  color: rgba(255,255,255,.78);
  background: #0d0f11;
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .85fr 1.15fr;
  gap: 55px;
  padding-bottom: 46px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-brand p,
.footer-column p {
  color: rgba(255,255,255,.63);
  font-size: 12px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.socials a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 11px;
}

.socials a:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 11px;
  margin-bottom: 5px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.footer-column a {
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-contact {
  gap: 7px;
}

.footer-bottom {
  min-height: 58px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,.48);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1080px) {
  .header-tools {
    display: none;
  }

  .main-nav {
    gap: 22px;
  }

  .brand {
    min-width: 210px;
  }

  .hero-side-note {
    display: none;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    max-width: 570px;
    width: 100%;
    justify-self: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    min-height: 110px;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .about-grid {
    gap: 42px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    height: 72px;
  }

  .nav-wrap {
    justify-content: space-between;
  }

  .brand {
    min-width: auto;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.15);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: .2s ease;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    height: auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    background: #0b0d0f;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-drop-btn {
    width: 100%;
    min-height: 48px;
    height: auto;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .main-nav > a::after,
  .nav-drop-btn::after {
    display: none;
  }

  .nav-dropdown {
    height: auto;
  }

  .nav-drop-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: 0;
    background: #111418;
    padding-left: 18px;
  }

  .nav-dropdown.open .nav-drop-menu {
    display: block;
  }

  .hero {
    min-height: 670px;
    height: 88vh;
  }

  .hero-content {
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(54px, 13vw, 84px);
  }

  .hero-copy {
    max-width: 94%;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-arrow {
    top: auto;
    bottom: 22px;
    width: 38px;
    height: 38px;
  }

  .hero-prev {
    left: 16px;
  }

  .hero-next {
    right: 16px;
  }

  .hero-dots {
    bottom: 35px;
  }

  .section {
    padding: 72px 0;
  }

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

  .service-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .service-photo {
    height: 310px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 430px;
  }

  .experience-badge {
    right: 18px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 330px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 51px;
    line-height: .95;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 290px;
  }

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

  .service-photo {
    height: 240px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .project-card {
    height: 270px;
  }

  .btn-project {
    min-width: 0;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    gap: 10px;
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ==========================================================
   SERVICE DETAIL PAGES
   ========================================================== */

.subpage {
  padding-top: var(--header-height);
}

.service-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  background: var(--service-hero) center/cover no-repeat;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,10,15,.93) 0%, rgba(6,10,15,.72) 42%, rgba(6,10,15,.22) 78%, rgba(6,10,15,.10) 100%),
    linear-gradient(0deg, rgba(0,0,0,.28), transparent 55%);
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 34px;
}

.breadcrumbs a {
  color: var(--gold-light);
}

.service-hero-copy {
  width: min(700px, 100%);
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
}

.service-hero h1 {
  font-size: clamp(58px, 8vw, 112px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.05em;
  margin: 15px 0 20px;
}

.service-hero h1 span {
  color: var(--gold-light);
}

.service-hero p {
  max-width: 590px;
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 600;
  line-height: 1.75;
}

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

.intro-strip {
  background: var(--gold);
  color: var(--black);
}

.intro-strip .container {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
}

.intro-item {
  padding: 20px 34px;
  border-right: 1px solid rgba(0,0,0,.17);
}

.intro-item:first-child {
  padding-left: 0;
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 3px;
}

.intro-item span {
  font-size: 11px;
  font-weight: 650;
}

.detail-intro {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 75px;
  align-items: center;
}

.detail-media {
  position: relative;
}

.detail-media img {
  height: 580px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.detail-media::after {
  content: "";
  position: absolute;
  width: 52%;
  height: 46%;
  right: -22px;
  bottom: -22px;
  border: 3px solid var(--gold);
  z-index: -1;
}

.detail-copy .mini-title {
  display: block;
  margin-bottom: 10px;
}

.detail-copy h2,
.family-copy h2,
.process-head h2 {
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -.045em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.detail-copy h2 span,
.family-copy h2 span,
.process-head h2 span {
  color: var(--gold);
}

.detail-copy p,
.family-copy p {
  color: #5b6168;
  line-height: 1.9;
  font-size: 14px;
  margin-bottom: 16px;
}

.detail-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 26px;
}

.detail-checks li {
  position: relative;
  padding-left: 26px;
  font-size: 13px;
  font-weight: 750;
}

.detail-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.feature-section {
  background: var(--off-white);
}

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

.feature-card {
  min-height: 250px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: .25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(.25);
  transform-origin: top;
  transition: .25s ease;
}

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

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-no {
  color: rgba(13,28,44,.14);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 18px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 25px;
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.feature-card p {
  color: #6a7075;
  font-size: 12px;
  line-height: 1.75;
}

.family-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.family-section::after {
  content: "PRIME";
  position: absolute;
  right: -40px;
  bottom: -65px;
  color: rgba(255,255,255,.025);
  font-size: 190px;
  font-weight: 900;
  letter-spacing: -.08em;
}

.family-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.family-copy p {
  color: rgba(255,255,255,.7);
}

.family-quote {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.04);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.7;
}

.family-visual {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 12px;
}

.family-visual img {
  object-fit: cover;
}

.family-visual img:first-child {
  height: 500px;
}

.family-visual .side-images {
  display: grid;
  gap: 12px;
}

.family-visual .side-images img {
  height: 244px;
}

.process-section {
  background: #fff;
}

.process-head {
  max-width: 760px;
  margin-bottom: 45px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: #d9dadd;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 14px;
}

.process-number {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gold);
  font-weight: 900;
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 13px;
  margin-bottom: 8px;
}

.process-step p {
  color: #777c80;
  font-size: 11px;
  line-height: 1.6;
}

.service-gallery {
  background: var(--off-white);
}

.service-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item:last-child {
  grid-column: 2 / 4;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 18px 15px;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.service-cta {
  min-height: 350px;
  display: grid;
  place-items: center;
  position: relative;
  color: #fff;
  background: var(--service-cta) center/cover no-repeat;
}

.service-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4,8,12,.78);
}

.service-cta .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.service-cta h2 {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -.04em;
}

.service-cta h2 span {
  color: var(--gold-light);
}

.service-cta p {
  max-width: 620px;
  margin: 12px auto 24px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  font-size: 13px;
}

/* Service-page footer/header refinements */
.service-page .main-nav > a.active {
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .intro-strip .container {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .intro-item,
  .intro-item:first-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.14);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

  .detail-intro,
  .family-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .detail-media img {
    height: 450px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .process-grid::before {
    display: none;
  }

  .service-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 220px 220px;
  }

  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-item:last-child {
    grid-column: 1 / 3;
  }
}

@media (max-width: 620px) {
  .service-hero {
    min-height: 590px;
  }

  .service-hero h1 {
    font-size: 58px;
  }

  .detail-media img {
    height: 360px;
  }

  .detail-checks,
  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .family-visual {
    grid-template-columns: 1fr;
  }

  .family-visual img:first-child,
  .family-visual .side-images img {
    height: 280px;
  }

  .service-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item:first-child,
  .gallery-item:last-child {
    grid-column: auto;
    grid-row: auto;
    height: 260px;
  }
}

/* === COMPACT SKELE PAGE START === */

.skele-page {
  background: #fff;
}

.skele-hero {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6,10,15,.92) 0%, rgba(6,10,15,.70) 44%, rgba(6,10,15,.18) 100%),
    url("https://www.koncept-skele.com/gallery/FOTO-1.avif?v=56") center/cover no-repeat;
}

.skele-hero .container {
  padding-top: 24px;
}

.skele-hero-copy {
  max-width: 650px;
}

.skele-hero .breadcrumbs {
  margin-bottom: 24px;
}

.skele-hero-kicker {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.skele-hero h1 {
  margin: 8px 0 12px;
  font-size: clamp(52px, 7vw, 90px);
  line-height: .92;
  letter-spacing: -.05em;
  font-weight: 900;
}

.skele-hero h1 span {
  color: var(--gold-light);
}

.skele-hero p {
  max-width: 590px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height: 1.7;
}

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

.skele-mini-nav {
  background: var(--navy);
  color: #fff;
}

.skele-mini-nav .container {
  min-height: 62px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
}

.skele-mini-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.skele-mini-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transition: .2s ease;
}

.skele-mini-nav a:hover {
  color: var(--gold-light);
}

.skele-mini-nav a:hover::after {
  right: 0;
}

.skele-section {
  padding: 72px 0;
}

.skele-section.alt {
  background: var(--off-white);
}

.skele-about-grid,
.skele-services-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.skele-about-visual,
.skele-services-visual {
  position: relative;
}

.skele-about-visual img,
.skele-services-visual img {
  height: 455px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.skele-about-visual::after,
.skele-services-visual::after {
  content: "";
  position: absolute;
  width: 42%;
  height: 38%;
  right: -16px;
  bottom: -16px;
  border-right: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  z-index: -1;
}

.skele-section-copy .mini-title {
  display: block;
  margin-bottom: 8px;
}

.skele-section-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.skele-section-copy h2 span {
  color: var(--gold);
}

.skele-section-copy p {
  color: #5f656b;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.skele-signature {
  margin-top: 22px;
  padding: 17px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(215,155,22,.08);
  color: var(--navy);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 800;
}

.skele-signature small {
  display: block;
  color: #757a80;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: .03em;
}

.skele-service-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.skele-service-list li {
  padding: 14px 15px 14px 42px;
  border: 1px solid var(--border);
  background: #fff;
  position: relative;
  font-size: 12px;
  font-weight: 750;
}

.skele-service-list li::before {
  content: "✓";
  position: absolute;
  left: 15px;
  color: var(--gold);
  font-weight: 900;
}

.skele-ref-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.skele-ref-head h2 {
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -.04em;
}

.skele-ref-head h2 span {
  color: var(--gold);
}

.skele-ref-head p {
  max-width: 480px;
  color: #6b7075;
  font-size: 12px;
  line-height: 1.75;
}

.skele-reference-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.skele-ref-item {
  position: relative;
  height: 155px;
  overflow: hidden;
  background: #d9d9d9;
  cursor: zoom-in;
}

.skele-ref-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.skele-ref-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(8,15,23,.15);
  font-size: 38px;
  font-weight: 300;
  opacity: 0;
  transition: .25s ease;
}

.skele-ref-item:hover img {
  transform: scale(1.06);
  filter: brightness(.76);
}

.skele-ref-item:hover::after {
  opacity: 1;
}

.skele-ref-note {
  margin-top: 16px;
  color: #7a7f83;
  font-size: 10px;
  text-align: right;
}

.skele-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(0,0,0,.92);
}

.skele-lightbox.open {
  display: flex;
}

.skele-lightbox-inner {
  width: min(1100px, 94vw);
  height: min(760px, 86vh);
  position: relative;
  display: grid;
  place-items: center;
}

.skele-lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
}

.skele-lightbox-close,
.skele-lightbox-prev,
.skele-lightbox-next {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(14,20,27,.72);
  border: 1px solid rgba(255,255,255,.22);
  transition: .2s ease;
}

.skele-lightbox-close:hover,
.skele-lightbox-prev:hover,
.skele-lightbox-next:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.skele-lightbox-close {
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  font-size: 25px;
}

.skele-lightbox-prev,
.skele-lightbox-next {
  top: 50%;
  width: 46px;
  height: 60px;
  transform: translateY(-50%);
  font-size: 34px;
}

.skele-lightbox-prev {
  left: 0;
}

.skele-lightbox-next {
  right: 0;
}

.skele-cta {
  min-height: 260px;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(rgba(4,8,12,.80), rgba(4,8,12,.80)),
    url("https://www.koncept-skele.com/gallery/FOTO-8.avif?v=56") center/cover no-repeat;
}

.skele-cta .container {
  text-align: center;
}

.skele-cta h2 {
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -.04em;
}

.skele-cta h2 span {
  color: var(--gold-light);
}

.skele-cta p {
  max-width: 650px;
  margin: 10px auto 20px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .skele-about-grid,
  .skele-services-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .skele-services-visual {
    order: -1;
  }

  .skele-reference-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  .skele-hero {
    min-height: 500px;
  }

  .skele-mini-nav .container {
    gap: 18px;
  }

  .skele-section {
    padding: 54px 0;
  }

  .skele-about-visual img,
  .skele-services-visual img {
    height: 330px;
  }

  .skele-service-list {
    grid-template-columns: 1fr;
  }

  .skele-ref-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .skele-reference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skele-ref-item {
    height: 130px;
  }

  .skele-lightbox {
    padding: 12px;
  }

  .skele-lightbox-prev {
    left: 3px;
  }

  .skele-lightbox-next {
    right: 3px;
  }
}

/* === COMPACT SKELE PAGE END === */


/* === SKELE DARK REDESIGN V2 START === */
.skele-page{background:#0e1012;color:#fff}.skele-page .skele-section{background:#121416;color:#fff}.skele-page .skele-section.alt{background:#0b0d0f}
.skele-page .skele-section-copy .mini-title,.skele-page .skele-ref-head .mini-title{color:var(--gold-light);font-size:14px;font-weight:900;letter-spacing:.13em;margin-bottom:12px}
.skele-page .skele-section-copy h2,.skele-page .skele-ref-head h2{color:#fff;font-size:clamp(42px,4.7vw,64px);line-height:1.02;letter-spacing:-.045em}
.skele-page .skele-section-copy p{color:rgba(255,255,255,.72);font-size:15px;line-height:1.9}
.skele-page .skele-signature{color:#fff;background:rgba(255,255,255,.035);border-left-color:var(--gold)}.skele-page .skele-signature small{color:rgba(255,255,255,.54)}
.skele-page .skele-service-list li{background:#15181b;color:#fff;border-color:rgba(255,255,255,.09);font-size:13px;min-height:50px;display:flex;align-items:center}.skele-page .skele-service-list li::before{top:15px}
.skele-page .skele-about-visual img,.skele-page .skele-services-visual img{box-shadow:0 24px 65px rgba(0,0,0,.42)}
.skele-page #referencat{background:#101112;padding-top:78px;padding-bottom:82px}
.skele-page .skele-ref-head{display:block;margin-bottom:38px}.skele-page .skele-ref-head>div{width:100%}.skele-page .skele-ref-head p{display:none}
.skele-page .skele-ref-head h2{font-size:clamp(46px,5vw,68px);font-weight:500;letter-spacing:-.035em}.skele-page .skele-ref-head h2 span{color:#fff}
.skele-page .skele-reference-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.skele-page .skele-ref-item{height:250px;border-radius:4px;overflow:hidden;border:0;background:#1b1d20;box-shadow:none}.skele-page .skele-ref-item img{width:100%;height:100%;object-fit:cover}.skele-page .skele-ref-item::after{background:rgba(0,0,0,.22);font-size:48px}.skele-page .skele-ref-note{display:none}
.skele-page .skele-mini-nav{background:#0a0b0d;border-top:1px solid rgba(255,255,255,.05);border-bottom:1px solid rgba(255,255,255,.06)}
.skele-page .skele-cta{border-top:1px solid rgba(255,255,255,.05)}.skele-page .site-footer{border-top:1px solid rgba(255,255,255,.06)}
@media(max-width:1100px){.skele-page .skele-reference-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.skele-page .skele-ref-item{height:220px}}
@media(max-width:760px){.skele-page .skele-reference-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.skele-page .skele-ref-item{height:175px}.skele-page .skele-section-copy h2,.skele-page .skele-ref-head h2{font-size:40px}}
@media(max-width:480px){.skele-page .skele-reference-grid{grid-template-columns:1fr 1fr}.skele-page .skele-ref-item{height:145px}.skele-page .skele-section-copy p{font-size:14px}}
/* === SKELE DARK REDESIGN V2 END === */


/* === FULL DARK THEME START === */

/* Global dark palette */
:root {
  --page-bg: #0f1114;
  --section-bg: #121519;
  --section-bg-alt: #0a0d11;
  --card-bg: #171b20;
  --card-bg-2: #13171b;
  --text-main: #f5f5f3;
  --text-muted: #a7adb3;
  --line-dark: rgba(255,255,255,.09);
}

body,
.services-section,
.projects-section,
.about-section,
.skele-page,
.service-page {
  background: var(--page-bg);
  color: var(--text-main);
}

/* Generic sections */
.section,
.skele-section {
  background: var(--section-bg);
  color: var(--text-main);
}

.section:nth-of-type(even),
.skele-section.alt {
  background: var(--section-bg-alt);
}

/* Headings */
.section-heading h2,
.about-copy h2,
.detail-copy h2,
.family-copy h2,
.process-head h2,
.skele-section-copy h2,
.skele-ref-head h2 {
  color: var(--text-main);
}

.section-heading > span,
.mini-title {
  color: var(--gold-light);
}

/* Paragraphs / secondary text */
.service-body p,
.about-copy p,
.detail-copy p,
.family-copy p,
.project-overlay,
.skele-section-copy p,
.skele-ref-head p,
.process-step p {
  color: var(--text-muted);
}

/* Service cards */
.service-card,
.feature-card {
  background: var(--card-bg);
  color: var(--text-main);
  border-color: var(--line-dark);
  box-shadow: 0 12px 35px rgba(0,0,0,.25);
}

.service-card:hover,
.feature-card:hover {
  box-shadow: 0 18px 50px rgba(0,0,0,.38);
}

.service-body h3,
.feature-card h3 {
  color: var(--text-main);
}

.service-body li,
.detail-checks li,
.about-points {
  color: #e8e8e5;
}

.service-icon {
  border-color: var(--card-bg);
}

/* About */
.about-section {
  background: #0c1015;
}

.about-image {
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}

.experience-badge {
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
}

/* Projects */
.projects-section,
.service-gallery {
  background: #111417;
}

.project-filters button {
  color: #e8e8e5;
  border-color: rgba(255,255,255,.18);
}

.project-filters button:hover,
.project-filters button.active {
  color: var(--black);
}

.project-card {
  background: #1b1e22;
}

.projects-more .btn-project {
  color: #fff;
}

.projects-more .btn-project:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Service detail pages */
.feature-section,
.process-section {
  background: #0c1014;
}

.family-section {
  background: #09111a;
}

.detail-intro {
  color: var(--text-main);
}

.detail-media img,
.family-visual img {
  box-shadow: 0 22px 60px rgba(0,0,0,.42);
}

.feature-card {
  background: #15191e;
}

.process-number {
  background: #0f1317;
  color: #fff;
}

.process-grid::before {
  background: rgba(255,255,255,.12);
}

/* Skele specific */
.skele-page .skele-section {
  background: #111417;
}

.skele-page .skele-section.alt {
  background: #090c10;
}

.skele-page .skele-section-copy p {
  color: #afb5ba;
}

.skele-page .skele-signature {
  background: #171b20;
  color: #fff;
  border-left-color: var(--gold);
}

.skele-page .skele-signature small {
  color: #8f969c;
}

.skele-page .skele-service-list li {
  background: #161a1f;
  color: #f3f3f0;
  border-color: rgba(255,255,255,.08);
}

.skele-page #referencat {
  background: #0a0b0d;
}

.skele-page .skele-ref-head h2 {
  color: #fff;
}

.skele-page .skele-reference-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.skele-page .skele-ref-item {
  height: 245px;
  background: #17191c;
  border-radius: 3px;
}

.skele-page .skele-ref-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skele-page .skele-ref-item::after {
  background: rgba(0,0,0,.28);
}

.skele-page .skele-ref-note {
  color: #777e84;
}

/* Footer/header stay dark */
.site-footer {
  background: #07090b;
  border-top: 1px solid rgba(255,255,255,.06);
}

.site-header {
  background: rgba(6,8,10,.96);
}

/* Buttons */
.btn-dark {
  background: var(--gold);
  color: var(--black);
}

.btn-dark:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* Cards/links */
.text-link {
  color: #fff;
}

.footer-column a,
.footer-column p,
.footer-brand p {
  color: #9ea5ab;
}

/* Mobile */
@media (max-width: 1100px) {
  .skele-page .skele-reference-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .skele-page .skele-reference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .skele-page .skele-ref-item {
    height: 175px;
  }
}

/* === FULL DARK THEME END === */


/* === HOMEPAGE UNIFIED SERVICES START === */

.home-page .home-services {
  background: #0d1014;
}

.home-page .home-services .section-heading h2 {
  color: #fff;
}

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

.home-service-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  background: #15191e;
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.home-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215,155,22,.45);
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
}

.home-service-image {
  height: 285px;
  display: block;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.home-service-skele {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=84");
}

.home-service-ndertim {
  background-image: url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1200&q=84");
}

.home-service-moler {
  background-image: url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?auto=format&fit=crop&w=1200&q=84");
}

.home-service-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,10,13,.92) 0%, rgba(7,10,13,.22) 54%, rgba(7,10,13,.08) 100%);
}

.home-service-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255,255,255,.32);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.home-service-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 8px 12px;
  background: var(--gold);
  color: #0b0d0f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.home-service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
}

.home-service-kicker {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 9px;
}

.home-service-content h3 {
  color: #fff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}

.home-service-content p {
  min-height: 70px;
  color: #aeb4ba;
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.home-service-content ul {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.home-service-content li {
  position: relative;
  padding-left: 23px;
  color: #ececea;
  font-size: 12px;
  font-weight: 650;
}

.home-service-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.home-service-link {
  margin-top: auto;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid rgba(215,155,22,.7);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  transition: .2s ease;
}

.home-service-link span {
  color: var(--gold-light);
  font-size: 18px;
  transition: transform .2s ease;
}

.home-service-link:hover {
  background: var(--gold);
  color: #0b0d0f;
}

.home-service-link:hover span {
  color: #0b0d0f;
  transform: translateX(4px);
}

@media (max-width: 1000px) {
  .home-service-grid {
    grid-template-columns: 1fr;
  }

  .home-service-card {
    min-height: 0;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
  }

  .home-service-image {
    height: 100%;
    min-height: 390px;
  }

  .home-service-content p {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .home-service-card {
    display: flex;
  }

  .home-service-image {
    min-height: 0;
    height: 240px;
  }

  .home-service-content h3 {
    font-size: 27px;
  }
}

/* === HOMEPAGE UNIFIED SERVICES END === */



/* === MOBILE RESPONSIVE V6 START === */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  /* Header */
  .site-header {
    min-height: 70px;
  }

  .nav-wrap {
    min-height: 70px;
    gap: 12px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 7px;
    letter-spacing: .08em;
  }

  .brand-mark {
    transform: scale(.88);
    transform-origin: left center;
  }

  .header-tools {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 1002;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 18px 24px;
    background: rgba(7,9,11,.98);
    border-top: 1px solid rgba(255,255,255,.07);
    box-shadow: 0 20px 45px rgba(0,0,0,.45);
    z-index: 1000;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .nav-drop-btn {
    width: 100%;
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    text-align: left;
    font-size: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-menu {
    position: static;
    min-width: 100%;
    display: none;
    padding: 4px 0 8px 14px;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .nav-dropdown.open .nav-drop-menu {
    display: block;
  }

  .nav-drop-menu a {
    padding: 11px 0;
    font-size: 11px;
  }

  /* Homepage hero */
  .hero {
    min-height: 690px;
  }

  .hero-slide {
    min-height: 690px;
  }

  .hero-content {
    padding-top: 120px;
    padding-bottom: 115px;
    max-width: 100%;
  }

  .hero-kicker {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 64px);
    line-height: .98;
  }

  .hero p {
    max-width: 95%;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 310px;
    gap: 10px;
  }

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

  .hero-arrows {
    left: 14px;
    right: 14px;
    bottom: 28px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
  }

  .hero-dots {
    bottom: 42px;
  }

  /* Section spacing */
  .section,
  .services-section,
  .projects-section,
  .about-section,
  .feature-section,
  .family-section,
  .process-section,
  .service-gallery,
  .skele-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2,
  .about-copy h2,
  .detail-copy h2,
  .family-copy h2,
  .process-head h2,
  .skele-section-copy h2,
  .skele-ref-head h2 {
    font-size: clamp(32px, 9vw, 46px) !important;
    line-height: 1.05 !important;
  }

  /* Homepage service cards */
  .home-service-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .home-service-card {
    display: flex !important;
    min-height: 0 !important;
  }

  .home-service-image {
    height: 235px !important;
    min-height: 0 !important;
  }

  .home-service-content {
    padding: 24px 20px 22px;
  }

  .home-service-content h3 {
    font-size: 28px;
  }

  .home-service-content p {
    min-height: 0;
    font-size: 13px;
  }

  /* About / content grids */
  .about-grid,
  .detail-grid,
  .family-grid,
  .skele-about-grid,
  .skele-services-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .about-image,
  .detail-media,
  .family-visual,
  .skele-about-visual,
  .skele-services-visual {
    order: 0;
  }

  .about-copy,
  .detail-copy,
  .family-copy,
  .skele-section-copy {
    order: 1;
  }

  .about-image img,
  .detail-media img,
  .family-visual img,
  .skele-about-visual img,
  .skele-services-visual img {
    width: 100%;
    max-height: 440px;
    object-fit: cover;
  }

  .experience-badge {
    transform: scale(.82);
    transform-origin: bottom left;
  }

  /* Service pages hero */
  .service-hero,
  .skele-hero {
    min-height: 620px;
  }

  .service-hero .container,
  .skele-hero .container {
    min-height: 620px;
    display: flex;
    align-items: center;
  }

  .service-hero-copy,
  .skele-hero-copy {
    padding-top: 92px;
    padding-bottom: 70px;
    width: 100%;
  }

  .service-hero h1,
  .skele-hero h1 {
    font-size: clamp(48px, 14vw, 72px) !important;
  }

  .service-hero p,
  .skele-hero p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .service-hero-actions,
  .skele-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    max-width: 320px;
  }

  .service-hero-actions .btn,
  .skele-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Mini navigation */
  .skele-mini-nav {
    position: sticky;
    top: 70px;
    z-index: 30;
    overflow-x: auto;
    white-space: nowrap;
  }

  .skele-mini-nav .container {
    width: max-content;
    min-width: 100%;
    padding: 0 14px;
    gap: 18px;
  }

  .skele-mini-nav a {
    font-size: 10px;
    padding: 15px 0;
  }

  /* Feature cards */
  .feature-grid {
    grid-template-columns: 1fr !important;
  }

  .feature-card {
    padding: 24px 20px;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .process-grid::before {
    display: none !important;
  }

  .process-step {
    text-align: left !important;
    padding: 20px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.07);
  }

  .process-number {
    margin: 0 0 14px !important;
  }

  /* Project/gallery grids */
  .projects-grid,
  .service-gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .project-card,
  .gallery-item {
    min-height: 280px;
  }

  /* CTA */
  .cta-section,
  .service-cta,
  .skele-cta {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .cta-section h2,
  .service-cta h2,
  .skele-cta h2 {
    font-size: clamp(34px, 9vw, 48px) !important;
    line-height: 1.05;
  }

  .cta-section p,
  .service-cta p,
  .skele-cta p {
    font-size: 14px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  /* Reference sliders */
  .reference-slider {
    height: 390px !important;
    border-radius: 0;
  }

  .reference-slide img {
    object-fit: cover;
  }

  .reference-arrow {
    width: 44px !important;
    height: 44px !important;
    font-size: 30px !important;
  }

  .reference-prev {
    left: 10px !important;
  }

  .reference-next {
    right: 10px !important;
  }

  .reference-counter {
    right: 12px !important;
    bottom: 12px !important;
    padding: 8px 10px !important;
  }

  .reference-dots {
    gap: 7px !important;
    margin-top: 18px !important;
  }

  .reference-dot {
    width: 7px !important;
    height: 7px !important;
  }

  .reference-dot.active {
    width: 24px !important;
  }

  /* Lightbox */
  .skele-lightbox-inner,
  .reference-lightbox {
    padding: 12px !important;
  }

  .skele-lightbox img,
  .reference-lightbox img {
    max-width: 94vw !important;
    max-height: 82vh !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand-copy small {
    display: none;
  }

  .hero,
  .hero-slide {
    min-height: 630px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 13px;
  }

  .service-hero,
  .skele-hero,
  .service-hero .container,
  .skele-hero .container {
    min-height: 560px;
  }

  .service-hero h1,
  .skele-hero h1 {
    font-size: 48px !important;
  }

  .section,
  .services-section,
  .projects-section,
  .about-section,
  .feature-section,
  .family-section,
  .process-section,
  .service-gallery,
  .skele-section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .home-service-image {
    height: 210px !important;
  }

  .home-service-content {
    padding: 22px 18px 20px;
  }

  .reference-slider {
    height: 320px !important;
  }

  .reference-arrow {
    width: 40px !important;
    height: 40px !important;
  }

  .reference-counter {
    font-size: 10px !important;
  }

  .btn {
    min-height: 48px;
  }
}
/* === MOBILE RESPONSIVE V6 END === */
