:root {
  --bg: #f4f1ea;
  --surface: #fffaf3;
  --surface-strong: #f0e8da;
  --text: #172226;
  --muted: #58656b;
  --line: rgba(23, 34, 38, 0.12);
  --brand: #0f5a4f;
  --brand-strong: #093d36;
  --accent: #d58d3f;
  --max-width: 1180px;
  --shadow: 0 18px 50px rgba(14, 30, 33, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(213, 141, 63, 0.16), transparent 28%),
    linear-gradient(180deg, #f8f4ed 0%, #f4f1ea 42%, #efe9dd 100%);
  color: var(--text);
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switcher {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.lang-button {
  min-width: 46px;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.lang-button.is-active {
  background: var(--brand);
  color: #fffaf3;
}

.nav a:hover,
.nav a.active {
  color: var(--brand-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  transition: transform 140ms ease, background-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #f8f6f0;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 32px 0 72px;
}

.hero-copy,
.hero-panel,
.panel,
.service-card,
.project-card,
.contact-card,
.info-strip,
.stats {
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero-copy,
.hero-panel,
.panel,
.contact-card {
  border-radius: 28px;
  padding: 32px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lede {
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 24px;
  overflow: hidden;
  margin-top: 28px;
}

.stats div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--brand-strong);
}

.hero-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 90, 79, 0.1);
  color: var(--brand-strong);
  font-size: 0.88rem;
}

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

.tile {
  min-height: 150px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 90, 79, 0.08), rgba(15, 90, 79, 0.02));
  border: 1px solid rgba(15, 90, 79, 0.12);
}

.tile strong {
  display: block;
  margin-bottom: 8px;
}

.section {
  padding: 0 0 72px;
}

.section-tight {
  padding-top: 8px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  max-width: 72ch;
}

.service-grid,
.project-grid,
.contact-grid,
.two-up,
.sector-grid,
.mini-grid,
.timeline,
.field-ops {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

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

.field-ops {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

.field-ops-media,
.field-ops-copy {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.field-ops-media {
  position: relative;
  min-height: 520px;
  background: #dfe4e0;
}

.field-ops-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(0.98);
}

.field-ops-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 61, 54, 0.04), rgba(9, 61, 54, 0.46)),
    linear-gradient(90deg, rgba(9, 61, 54, 0.14), transparent 42%);
  pointer-events: none;
}

.field-ops-copy {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(255, 250, 243, 0.98)),
    radial-gradient(circle at top right, rgba(213, 141, 63, 0.16), transparent 32%);
}

.field-ops-copy h2 {
  max-width: 12ch;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 24px;
  padding: 32px 0 42px;
}

.about-hero-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 34px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.74), rgba(255, 250, 243, 0.96)),
    radial-gradient(circle at top right, rgba(213, 141, 63, 0.22), transparent 34%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-hero-copy h1 {
  max-width: 13ch;
}

.about-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 26% 22%, rgba(213, 141, 63, 0.24), transparent 18%),
    radial-gradient(circle at 78% 70%, rgba(15, 90, 79, 0.36), transparent 22%),
    linear-gradient(145deg, #092f2a 0%, #0f5a4f 48%, #d5a15f 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.about-photo {
  background: #dfe4e0;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.96);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 61, 54, 0.04), rgba(9, 61, 54, 0.52)),
    linear-gradient(90deg, rgba(9, 61, 54, 0.42), transparent 54%);
  pointer-events: none;
}

.visual-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  border-radius: 24px;
  padding: 22px;
  background: rgba(8, 36, 33, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.visual-caption strong {
  color: #fffaf3;
}

.visual-caption p {
  margin-bottom: 0;
  color: rgba(255, 250, 243, 0.78);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.about-stats div {
  min-height: 150px;
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-strong);
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 0.95;
}

.about-story {
  margin-bottom: 58px;
}

.story-panel {
  min-height: 360px;
}

.about-section-heading {
  margin-top: 12px;
}

.capability-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.capability-card {
  min-height: 310px;
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.capability-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 250, 243, 0.96);
  border-color: rgba(15, 90, 79, 0.22);
}

.capability-number {
  display: inline-flex;
  margin-bottom: 88px;
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.about-details {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.about-details details {
  border-radius: 22px;
  background: rgba(255, 250, 243, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-details summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--text);
  font-weight: 700;
}

.about-details details[open] summary {
  color: var(--brand-strong);
}

.about-details p {
  margin: 0;
  padding: 0 24px 22px;
}

.service-card,
.project-card,
.sector-card,
.mini-card,
.timeline-step {
  border-radius: 24px;
  padding: 24px;
}

.project-card {
  overflow: hidden;
  padding: 0;
}

.project-card > :not(.project-media) {
  padding-left: 24px;
  padding-right: 24px;
}

.project-card > .project-kicker {
  padding-top: 22px;
}

.project-card > p:last-child {
  padding-bottom: 24px;
}

.service-card p,
.project-card p,
.sector-card p,
.mini-card p,
.timeline-step p {
  margin-bottom: 0;
}

.service-kicker,
.project-kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.project-media {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 240ms ease;
}

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

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 31, 29, 0.06), rgba(7, 31, 29, 0.56)),
    linear-gradient(120deg, rgba(213, 141, 63, 0.14), transparent 44%);
}

.project-media-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.84);
  color: var(--brand-strong);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.project-media-palaj img {
  object-position: 42% center;
}

.project-media-prishtina7 img {
  object-position: center 62%;
  filter: saturate(0.85) contrast(1.04);
}

.project-media-prishtina2 img {
  object-position: 68% center;
  filter: saturate(0.86);
}

.project-media-metering img {
  object-position: center center;
  filter: grayscale(0.08) saturate(0.88);
}

.project-media-gis img {
  object-position: 28% center;
  filter: saturate(0.92) contrast(0.98);
}

.info-strip {
  border-radius: 24px;
  padding: 24px 28px;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-grid-single {
  grid-template-columns: minmax(0, 780px);
}

.panel-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.panel-list li + li {
  margin-top: 8px;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(15, 90, 79, 0.08);
  border: 1px solid rgba(15, 90, 79, 0.08);
  color: var(--brand-strong);
  font-size: 0.92rem;
}

.metric-line {
  margin-top: 18px;
  color: var(--text);
  font-weight: 700;
}

.accent-panel {
  background: linear-gradient(180deg, rgba(15, 90, 79, 0.95), rgba(9, 61, 54, 0.96));
  color: #edf3f1;
}

.accent-panel p,
.accent-panel li,
.accent-panel .eyebrow {
  color: rgba(237, 243, 241, 0.86);
}

.accent-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.inline-facts {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.inline-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.inline-facts strong {
  display: block;
  margin-bottom: 4px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.site-footer {
  padding: 0 0 32px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid rgba(15, 90, 79, 0.18);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.status-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
}

.status-success {
  background: rgba(15, 90, 79, 0.1);
  border-color: rgba(15, 90, 79, 0.16);
  color: var(--brand-strong);
}

.status-error {
  background: rgba(166, 48, 43, 0.08);
  border-color: rgba(166, 48, 43, 0.16);
  color: #8a2b26;
}

.site-footer .panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 960px) {
  .hero,
  .about-hero,
  .contact-grid,
  .two-up,
  .service-grid,
  .project-grid,
  .sector-grid,
  .mini-grid,
  .timeline,
  .about-stats,
  .capability-showcase,
  .field-ops {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
  }

  .about-hero-copy,
  .about-visual {
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  .topbar,
  .header-tools,
  .site-footer .panel {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .hero-copy,
  .hero-panel,
  .about-hero-copy,
  .panel,
  .contact-card {
    padding: 24px;
  }

  .about-visual {
    min-height: 420px;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }
}
