:root {
  color-scheme: dark;
  --bg: #0b0f10;
  --text: #f5f7f2;
  --muted: #b7c1bd;
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(13, 18, 19, 0.82);
  --panel-strong: rgba(17, 24, 25, 0.94);
  --accent: #35d2c4;
  --accent-2: #91a7ff;
  --accent-3: #d8b15b;
  --danger: #e06d66;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 260px),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 46%),
    linear-gradient(315deg, color-mix(in srgb, var(--accent-2) 9%, transparent), transparent 52%),
    var(--bg);
}

.theme-tcc { --accent: #35d2c4; --accent-2: #8fa7ff; --accent-3: #d8b15b; }
.theme-cyrcys { --accent: #70d36b; --accent-2: #34bfe0; --accent-3: #f0c861; }
.theme-stllc { --accent: #d7d1c4; --accent-2: #6fb8c8; --accent-3: #b59b6a; }
.theme-worldwide { --accent: #61d6c7; --accent-2: #65a4ff; --accent-3: #8bd17c; }
.theme-design { --accent: #cbbba0; --accent-2: #7dc8c0; --accent-3: #f0c861; }
.theme-ji { --accent: #d3c0a3; --accent-2: #9fb8cc; --accent-3: #d77c64; }
.theme-games { --accent: #ffd34f; --accent-2: #55d3ff; --accent-3: #ff7a70; }
.theme-albania { --bg: #071114; --accent: #d94a43; --accent-2: #68bfd6; --accent-3: #dcb866; --muted: #c8d4d2; }
.theme-zana { color-scheme: light; --bg: #eef5ef; --text: #082a22; --muted: #4b645b; --line: rgba(8, 42, 34, 0.16); --panel: rgba(255, 255, 255, 0.82); --panel-strong: #ffffff; --accent: #2f8f63; --accent-2: #1a7894; --accent-3: #b58936; --shadow: 0 20px 54px rgba(12, 54, 43, 0.14); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  min-height: 64px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(7, 10, 11, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 760;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--accent) 58%, white 8%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, color-mix(in srgb, var(--accent-3) 92%, white 8%) 0 3px, transparent 4px),
    conic-gradient(from 42deg, var(--accent), var(--accent-2), var(--accent-3), var(--accent));
  box-shadow: 0 0 26px color-mix(in srgb, var(--accent) 26%, transparent);
}

.brand-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.08;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

nav a {
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
}

nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switch a {
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-align: center;
  text-decoration: none;
}

.language-switch a.active,
.language-switch a:hover {
  background: color-mix(in srgb, var(--accent) 78%, #071010 22%);
  color: #071010;
}

.hero {
  position: relative;
  min-height: min(760px, 84vh);
  display: grid;
  align-items: end;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.hero.compact {
  min-height: 520px;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 9, 0.92) 0%, rgba(5, 8, 9, 0.72) 42%, rgba(5, 8, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 8, 9, 0.92), rgba(5, 8, 9, 0.08) 58%);
}

.hero-copy {
  position: relative;
  width: min(860px, calc(100vw - 36px));
  padding: clamp(36px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.theme-albania .hero {
  min-height: min(500px, 56vh);
  align-items: center;
  background-position: center 44%;
}

.theme-albania .hero-scrim {
  background:
    linear-gradient(90deg, rgba(3, 13, 19, 0.82) 0%, rgba(3, 13, 19, 0.54) 36%, rgba(3, 13, 19, 0.06) 76%),
    linear-gradient(0deg, rgba(3, 13, 19, 0.62), rgba(3, 13, 19, 0.04) 58%);
}

.theme-albania .topbar {
  min-height: 54px;
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(3, 11, 14, 0.84);
}

.theme-albania .brand span,
.theme-albania h1,
.theme-albania h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 820;
}

.theme-albania .brand span {
  font-size: 17px;
  line-height: 1.1;
}

.theme-albania .brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border: 5px solid #e5202d;
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.theme-albania .brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 3px solid #e5202d;
  border-right-color: transparent;
  border-radius: 50%;
}

.theme-cyrcys .brand-text,
.theme-cyrcys h1,
.theme-cyrcys h2 {
  font-family: Oxanium, "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 760;
}

.theme-cyrcys .brand-mark {
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), transparent 30%),
    conic-gradient(from 20deg, #70d36b, #34bfe0, #f0c861, #70d36b);
}

.theme-albania nav a {
  color: #eef6f5;
  font-size: 13px;
  font-weight: 760;
}

.theme-albania .hero-copy {
  width: min(700px, calc(100vw - 36px));
  padding-top: clamp(28px, 4vw, 54px);
  padding-bottom: clamp(28px, 4vw, 54px);
}

.theme-albania h1 {
  max-width: 680px;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1;
}

.theme-albania .hero-copy p {
  max-width: 520px;
  color: #f4fbfa;
  font-size: clamp(16px, 1.35vw, 18px);
}

.theme-albania .button.primary {
  border-color: #e13f45;
  background: #c91f2c;
  color: #ffffff;
}

.theme-albania .button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.theme-zana.site-shell {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0) 360px),
    linear-gradient(135deg, rgba(47, 143, 99, 0.13), rgba(26, 120, 148, 0.04) 48%, transparent 70%),
    var(--bg);
}

.theme-zana .topbar {
  min-height: 58px;
  background: rgba(248, 252, 248, 0.86);
  border-bottom-color: rgba(8, 42, 34, 0.14);
}

.theme-zana .brand-mark {
  border-color: rgba(47, 143, 99, 0.32);
  background:
    radial-gradient(circle at 50% 50%, #f3d78c 0 3px, transparent 4px),
    conic-gradient(from 36deg, #2f8f63, #1a7894, #b58936, #2f8f63);
  box-shadow: 0 10px 24px rgba(47, 143, 99, 0.18);
}

.theme-zana .brand-text,
.theme-zana nav a {
  color: #12362c;
}

.theme-zana nav a {
  font-size: 13px;
  font-weight: 760;
}

.theme-zana nav a:hover {
  color: #082a22;
  background: rgba(47, 143, 99, 0.1);
}

.theme-zana .language-switch {
  background: rgba(255, 255, 255, 0.74);
}

.theme-zana .language-switch a.active,
.theme-zana .language-switch a:hover {
  background: #2f8f63;
  color: #ffffff;
}

.theme-zana .hero {
  min-height: min(660px, 74vh);
  align-items: center;
  background-position: center 46%;
}

.theme-zana .hero-scrim {
  background:
    linear-gradient(90deg, rgba(239, 245, 239, 0.96) 0%, rgba(239, 245, 239, 0.82) 42%, rgba(239, 245, 239, 0.22) 76%, rgba(239, 245, 239, 0.04) 100%),
    linear-gradient(0deg, rgba(239, 245, 239, 0.72), rgba(239, 245, 239, 0.04) 58%);
}

.theme-zana .hero-copy {
  width: min(760px, calc(100vw - 36px));
  padding-top: clamp(40px, 6vw, 82px);
  padding-bottom: clamp(40px, 6vw, 82px);
}

.theme-zana h1,
.theme-zana h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 820;
}

.theme-zana h1 {
  max-width: 720px;
  font-size: clamp(40px, 5.2vw, 68px);
}

.theme-zana .hero-copy p {
  max-width: 590px;
  color: #284b41;
  font-size: clamp(16px, 1.35vw, 19px);
}

.theme-zana .status-row span {
  background: rgba(255, 255, 255, 0.68);
  color: #12362c;
}

.theme-zana .button.primary {
  border-color: #2f8f63;
  background: #2f8f63;
  color: #ffffff;
}

.theme-zana .button.secondary {
  background: rgba(255, 255, 255, 0.66);
  color: #12362c;
}

.theme-zana .page-intro {
  display: none;
}

.theme-zana .content-band {
  width: min(1120px, calc(100vw - 48px));
  border-top: 0;
}

.theme-zana .content-band.kind-statement,
.theme-zana .content-band.kind-brief {
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

.theme-zana .content-band.kind-media {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  align-items: center;
}

.theme-zana .content-band.kind-lanes {
  background: #0d4035;
  box-shadow: 0 0 0 100vmax #0d4035;
  clip-path: inset(0 -100vmax);
  color: #ffffff;
}

.theme-zana .content-band.kind-lanes .band-copy p,
.theme-zana .content-band.kind-lanes .item-card p {
  color: rgba(255, 255, 255, 0.78);
}

.theme-zana .content-band.kind-lanes .item-card {
  min-height: 154px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.theme-zana .content-band.kind-statement .item-card {
  min-height: auto;
  padding-left: 20px;
  border: 0;
  border-left: 1px solid rgba(8, 42, 34, 0.16);
  border-radius: 0;
  background: transparent;
}

.theme-zana .content-band.kind-brief .item-card,
.theme-zana .content-band.kind-media .item-card {
  min-height: 164px;
  border-color: rgba(8, 42, 34, 0.12);
  background: rgba(47, 143, 99, 0.055);
}

.theme-zana .content-band.kind-media .band-media {
  min-height: 410px;
  border: 1px solid rgba(8, 42, 34, 0.12);
  box-shadow: 0 24px 60px rgba(12, 54, 43, 0.16);
}

.theme-zana .inquiry-band,
.theme-zana .footer {
  background: #0d4035;
  box-shadow: 0 0 0 100vmax #0d4035;
  clip-path: inset(0 -100vmax);
  border-top-color: rgba(255, 255, 255, 0.16);
}

.theme-zana .inquiry-band {
  width: min(1120px, calc(100vw - 48px));
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1fr);
}

.theme-zana .inquiry-band h2,
.theme-zana .footer p {
  color: #ffffff;
}

.theme-zana .inquiry-band > div p {
  color: rgba(255, 255, 255, 0.78);
}

.theme-zana form {
  border-color: rgba(8, 42, 34, 0.12);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.theme-zana label {
  color: #35564d;
}

.theme-zana input,
.theme-zana select,
.theme-zana textarea {
  border-color: rgba(8, 42, 34, 0.16);
  background: #f7faf7;
  color: #082a22;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 18px;
  line-height: 1.18;
}

.hero-copy p,
.page-intro p,
.band-copy p,
.inquiry-band > div p,
.footer p {
  color: var(--muted);
  max-width: 760px;
}

.status-row,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.status-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--text);
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border-color: color-mix(in srgb, var(--accent) 72%, white 8%);
  background: color-mix(in srgb, var(--accent) 76%, #071010 24%);
  color: #071010;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.09);
}

.page-intro,
.content-band,
.inquiry-band,
.footer {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
}

.page-intro {
  padding: clamp(42px, 7vw, 84px) 0 22px;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 5vw, 58px) 0;
  border-top: 1px solid var(--line);
}

.content-band.kind-media {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
}

.band-media {
  min-height: 360px;
  border-radius: var(--radius);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.band-copy {
  align-self: start;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 760;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.item-card {
  min-height: 188px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.item-media {
  min-height: 156px;
  margin: -18px -18px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  background-position: center;
  background-size: cover;
}

.item-card small {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-3);
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.item-card p {
  color: var(--muted);
}

.content-band.kind-bilingual,
.content-band.kind-lanes,
.content-band.kind-statement,
.content-band.kind-brief {
  grid-template-columns: 1fr;
}

.content-band.kind-bilingual .band-copy,
.content-band.kind-lanes .band-copy,
.content-band.kind-statement .band-copy,
.content-band.kind-brief .band-copy {
  max-width: 900px;
}

.content-band.kind-bilingual .item-grid,
.content-band.kind-statement .item-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-band.kind-lanes .item-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.content-band.kind-brief .item-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-band.kind-bilingual .item-card,
.content-band.kind-statement .item-card {
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
}

.theme-albania .content-band.kind-lanes .item-card,
.theme-albania .content-band.kind-brief .item-card {
  background: rgba(255, 255, 255, 0.055);
}

.theme-albania .content-band.kind-statement {
  padding-top: clamp(34px, 6vw, 72px);
  padding-bottom: clamp(34px, 6vw, 72px);
}

.theme-albania .page-intro {
  display: none;
}

.theme-albania .content-band {
  width: min(1220px, calc(100vw - 72px));
  border-top: 0;
}

.theme-albania .content-band.kind-bilingual,
.theme-albania .content-band.kind-media,
.theme-albania .content-band.kind-statement,
.theme-albania .content-band.kind-brief {
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
  color: #071114;
}

.theme-albania .content-band.kind-lanes {
  background: #063945;
  box-shadow: 0 0 0 100vmax #063945;
  clip-path: inset(0 -100vmax);
  color: #f7fbfa;
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(28px, 4vw, 46px);
}

.theme-albania .content-band.kind-bilingual .band-copy p,
.theme-albania .content-band.kind-media .band-copy p,
.theme-albania .content-band.kind-statement .band-copy p,
.theme-albania .content-band.kind-brief .band-copy p,
.theme-albania .content-band.kind-bilingual .item-card p,
.theme-albania .content-band.kind-media .item-card p,
.theme-albania .content-band.kind-statement .item-card p,
.theme-albania .content-band.kind-brief .item-card p {
  color: #324244;
}

.theme-albania .content-band.kind-bilingual .item-card,
.theme-albania .content-band.kind-statement .item-card {
  min-height: auto;
  padding: 0 0 0 clamp(18px, 3vw, 36px);
  border: 0;
  border-left: 1px solid rgba(7, 17, 20, 0.18);
  border-radius: 0;
  background: transparent;
}

.theme-albania .content-band.kind-lanes .item-card {
  min-height: 186px;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
}

.theme-albania .content-band.kind-lanes .item-card:first-child {
  padding-left: 0;
  border-left: 0;
}

.theme-albania .content-band.kind-media {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
}

.theme-albania .content-band.kind-media .band-media {
  order: 2;
  min-height: 390px;
  box-shadow: none;
}

.theme-albania .content-band.kind-media .band-copy {
  order: 1;
}

.theme-albania .content-band.kind-media .item-grid {
  grid-column: 1 / -1;
  order: 3;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.theme-albania .content-band.kind-media .item-card,
.theme-albania .content-band.kind-brief .item-card {
  overflow: hidden;
  background: rgba(7, 17, 20, 0.035);
}

.theme-albania .content-band.kind-brief .item-card {
  min-height: 188px;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr;
  column-gap: 18px;
  padding: 0 18px 18px 0;
  border: 0;
  border-right: 1px solid rgba(7, 17, 20, 0.14);
  border-radius: 0;
  background: transparent;
}

.theme-albania .content-band.kind-brief .item-media {
  grid-row: 1 / -1;
  width: 148px;
  min-height: 148px;
  margin: 0;
  border-radius: 8px;
  border: 0;
}

.theme-albania .content-band.kind-brief .item-card h3,
.theme-albania .content-band.kind-media .item-card h3 {
  color: #071114;
}

.theme-albania .content-band.kind-brief .text-link {
  margin-top: 6px;
  color: #c91f2c;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.theme-albania .content-band.kind-brief .item-card:has(.text-link) {
  display: grid;
}

.theme-albania .content-band.kind-brief .item-card:last-child {
  border-right: 0;
}

.theme-albania .content-band.kind-brief .item-card:not(:has(.item-media)) {
  display: block;
  min-height: auto;
  padding: 18px;
  border: 1px solid rgba(7, 17, 20, 0.1);
  border-radius: 8px;
  background: rgba(7, 17, 20, 0.035);
}

.theme-albania .content-band.kind-brief .band-copy {
  display: none;
}

.theme-albania .content-band.kind-brief {
  padding-top: clamp(22px, 3vw, 34px);
  padding-bottom: clamp(22px, 3vw, 34px);
}

.theme-albania .content-band.kind-brief .item-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.theme-albania .content-band.kind-brief .item-card small {
  margin-bottom: 8px;
  color: #b7913b;
}

.theme-albania .content-band.kind-brief .item-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
  text-transform: uppercase;
}

.theme-albania .content-band.kind-brief .item-card p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
}

.theme-albania .content-band.kind-bilingual {
  width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.theme-albania .content-band.kind-bilingual .band-copy {
  display: none;
}

.theme-albania .content-band.kind-bilingual .item-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}

.theme-albania .content-band.kind-bilingual .item-card {
  min-height: 126px;
  padding: clamp(24px, 4vw, 42px) clamp(28px, 8vw, 110px);
  border: 0;
  color: #ffffff;
}

.theme-albania .content-band.kind-bilingual .item-card:first-child {
  background: #063945;
}

.theme-albania .content-band.kind-bilingual .item-card:last-child {
  background: #c61622;
}

.theme-albania .content-band.kind-bilingual .item-card small,
.theme-albania .content-band.kind-bilingual .item-card p,
.theme-albania .content-band.kind-bilingual .item-card h3 {
  color: #ffffff;
}

.theme-albania .content-band.kind-bilingual .item-card p {
  max-width: 520px;
  opacity: 0.94;
}

.theme-albania .content-band.kind-lanes .item-grid {
  gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.theme-albania .content-band.kind-statement .item-grid {
  gap: clamp(20px, 3vw, 34px);
}

.theme-albania .content-band.kind-statement .item-card {
  min-height: auto;
}

.theme-albania .inquiry-band,
.theme-albania .footer {
  background: #063945;
  box-shadow: 0 0 0 100vmax #063945;
  clip-path: inset(0 -100vmax);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.theme-albania .inquiry-band {
  width: min(1220px, calc(100vw - 72px));
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.1fr);
  gap: clamp(24px, 4vw, 44px);
  padding-top: clamp(28px, 4vw, 46px);
  padding-bottom: clamp(28px, 4vw, 46px);
}

.theme-albania .inquiry-band h2 {
  max-width: 520px;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
}

.theme-albania .inquiry-band > div p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.82);
}

.theme-albania form {
  border-color: rgba(7, 17, 20, 0.12);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.theme-albania label {
  color: #3d4a4d;
}

.theme-albania input,
.theme-albania select,
.theme-albania textarea {
  border-color: rgba(7, 17, 20, 0.16);
  background: #f6f8f7;
  color: #071114;
}

.theme-albania .check {
  color: #4c5a5c;
}

@media (max-width: 1100px) {
  .theme-albania .content-band.kind-brief .item-grid {
    grid-template-columns: 1fr;
  }

  .theme-albania .content-band.kind-brief .item-card {
    min-height: 148px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 17, 20, 0.12);
  }

  .theme-albania .content-band.kind-brief .item-card:last-child {
    border-bottom: 0;
  }
}

.inquiry-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  padding: clamp(34px, 6vw, 76px) 0;
  border-top: 1px solid var(--line);
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

label:has(textarea),
.check,
.turnstile-slot,
form button {
  grid-column: 1 / -1;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.turnstile-slot {
  min-height: 65px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
}

.footer p {
  max-width: 620px;
  margin: 0;
  font-size: 13px;
}

@media (max-width: 900px) {
  .content-band,
  .content-band.kind-media,
  .inquiry-band {
    grid-template-columns: 1fr;
  }

  .theme-albania .content-band {
    width: min(1180px, calc(100vw - 36px));
  }

  .theme-albania .content-band.kind-media {
    grid-template-columns: 1fr;
  }

  .theme-albania .content-band.kind-media .band-media {
    order: 1;
  }

  .theme-albania .content-band.kind-media .band-copy {
    order: 2;
  }

  .theme-albania .content-band.kind-media .item-grid {
    grid-template-columns: 1fr 1fr;
  }

  .theme-albania .inquiry-band {
    width: min(1180px, calc(100vw - 36px));
    grid-template-columns: 1fr;
  }

  .theme-zana .content-band,
  .theme-zana .inquiry-band {
    width: min(1180px, calc(100vw - 36px));
  }

  .theme-zana .content-band.kind-media,
  .theme-zana .inquiry-band {
    grid-template-columns: 1fr;
  }

  .theme-zana .content-band.kind-media .band-media {
    min-height: 320px;
  }

  .theme-albania .content-band.kind-lanes .item-card:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .item-grid,
  .content-band.kind-lanes .item-grid,
  .content-band.kind-brief .item-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
  }

  nav {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 4px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    padding: 6px 8px;
  }

  .language-switch {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 720px;
  }

  .theme-albania .hero {
    min-height: 600px;
  }

  .theme-zana .hero {
    min-height: 600px;
  }

  .theme-zana .topbar-actions {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .theme-zana nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .theme-zana nav a {
    padding: 6px 7px;
    font-size: 12px;
  }

  .theme-zana .language-switch a {
    min-width: 30px;
    padding: 5px 6px;
  }

  .theme-zana .language-switch {
    position: fixed;
    top: 13px;
    right: 18px;
    z-index: 40;
  }

  .hero-copy,
  .theme-albania .hero-copy,
  .theme-zana .hero-copy {
    width: calc(100vw - 48px);
    max-width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .theme-zana .hero-copy {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
  }

  .theme-albania .hero-copy {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: 42px;
  }

  .theme-albania h1,
  .theme-zana h1 {
    width: calc(100vw - 72px);
    max-width: calc(100vw - 72px);
    font-size: 30px;
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .hero-copy p,
  .theme-albania .hero-copy p,
  .theme-zana .hero-copy p {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    font-size: 15px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .theme-zana .status-row {
    display: grid;
    grid-template-columns: 1fr;
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
  }

  .theme-zana .status-row span {
    justify-self: start;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .theme-zana .content-band h2 {
    max-width: calc(100vw - 64px);
    font-size: 26px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .theme-zana.site-shell {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .theme-zana .content-band,
  .theme-zana .inquiry-band,
  .theme-zana .footer {
    width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    overflow-x: hidden;
  }

  .theme-zana .content-band.kind-statement,
  .theme-zana .content-band.kind-brief,
  .theme-zana .content-band.kind-lanes,
  .theme-zana .inquiry-band,
  .theme-zana .footer {
    box-shadow: none;
    clip-path: none;
  }

  @supports selector(body:has(.theme-zana)) {
    body:has(.theme-zana) {
      overflow-x: hidden;
    }
  }

  .hero .button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero .cta-row {
    align-items: stretch;
  }

  .item-grid,
  .content-band.kind-bilingual .item-grid,
  .content-band.kind-lanes .item-grid,
  .content-band.kind-statement .item-grid,
  .content-band.kind-brief .item-grid,
  form {
    grid-template-columns: 1fr;
  }

  .theme-albania .brand span {
    font-size: 17px;
  }

  .theme-albania .content-band.kind-bilingual .item-card,
  .theme-albania .content-band.kind-lanes .item-card,
  .theme-albania .content-band.kind-statement .item-card {
    padding-left: 0;
    border-left: 0;
  }

  .theme-albania .content-band.kind-brief .item-grid {
    grid-template-columns: 1fr;
  }

  .theme-albania .content-band.kind-brief .item-card {
    grid-template-columns: 116px minmax(0, 1fr);
    min-height: 132px;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 17, 20, 0.12);
  }

  .theme-albania .content-band.kind-brief .item-media {
    width: 116px;
    min-height: 116px;
  }

  .theme-albania .content-band.kind-media .item-grid {
    grid-template-columns: 1fr;
  }

  .theme-zana .content-band.kind-statement .item-card {
    padding-left: 0;
    border-left: 0;
  }

  .theme-albania form {
    width: 100%;
    min-width: 0;
  }

  .band-media {
    min-height: 240px;
  }
}

/* Zana Trust light prototype */
.theme-zana.site-shell {
  position: relative;
  overflow-x: hidden;
  color: #12362c;
  background: #f5f8f1;
}

.theme-zana svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.theme-zana .topbar {
  position: absolute;
  inset: 0 0 auto;
  min-height: 88px;
  padding: 18px 46px;
  background: linear-gradient(180deg, rgba(248, 252, 248, 0.92), rgba(248, 252, 248, 0.62) 72%, rgba(248, 252, 248, 0));
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.theme-zana .brand {
  gap: 13px;
  min-width: 238px;
}

.theme-zana .zana-brand-mark {
  width: 64px;
  height: 58px;
  color: #0c4a37;
}

.theme-zana .zana-brand-mark svg {
  width: 64px;
  height: 58px;
  stroke-width: 2.6;
}

.theme-zana .zana-brand-text {
  display: grid;
  gap: 1px;
  color: #093b2e;
  line-height: 1;
}

.theme-zana .zana-brand-text span:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 700;
}

.theme-zana .zana-brand-text span:last-child {
  font-size: 15px;
  font-weight: 760;
}

.theme-zana .topbar-actions {
  gap: 28px;
}

.theme-zana nav {
  gap: 26px;
}

.theme-zana nav a {
  position: relative;
  padding: 6px 0 8px;
  border-radius: 0;
  color: #17372e;
  font-size: 14px;
  font-weight: 760;
}

.theme-zana nav a:hover {
  background: transparent;
  color: #063126;
}

.theme-zana nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #0e4f38;
  content: "";
}

.theme-zana .language-switch {
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(9, 59, 46, 0.62);
  background: rgba(255, 255, 255, 0.5);
}

.theme-zana .language-switch a {
  min-width: 40px;
  padding: 9px 11px;
  border-radius: 0;
  color: #17372e;
  font-size: 13px;
}

.theme-zana .language-switch a.active,
.theme-zana .language-switch a:hover {
  background: #075437;
  color: #ffffff;
}

.theme-zana .button {
  gap: 9px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: 0 10px 20px rgba(9, 59, 46, 0.08);
}

.theme-zana .button.primary {
  border-color: #075437;
  background: #075437;
  color: #ffffff;
}

.theme-zana .button.secondary {
  border-color: rgba(138, 99, 40, 0.46);
  background: rgba(255, 255, 255, 0.74);
  color: #243c32;
}

.theme-zana .button-icon {
  display: inline-flex;
  width: 15px;
  height: 15px;
}

.theme-zana .button-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.8;
}

.zana-home-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 425px;
  padding-top: 80px;
  overflow: hidden;
  background-position: center 46%;
  background-size: cover;
  border-bottom: 1px solid rgba(18, 54, 44, 0.14);
}

.zana-home-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 252, 248, 0.98) 0%, rgba(248, 252, 248, 0.82) 26%, rgba(248, 252, 248, 0.32) 52%, rgba(248, 252, 248, 0.08) 100%),
    linear-gradient(180deg, rgba(248, 252, 248, 0.24), rgba(248, 252, 248, 0.04) 62%, rgba(248, 252, 248, 0.18));
}

.zana-hero-copy {
  position: relative;
  width: min(520px, calc(100% - 92px));
  margin-left: max(46px, calc((100vw - 1188px) / 2));
  padding: 16px 0 34px;
}

.zana-hero-copy h1 {
  margin-bottom: 18px;
  color: #063126;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 86px;
  font-weight: 700;
  line-height: 0.92;
}

.zana-hero-copy p {
  max-width: 420px;
  margin-bottom: 13px;
  color: #1f352e;
  font-size: 17px;
  line-height: 1.45;
}

.zana-hero-copy .cta-row {
  gap: 26px;
  margin-top: 20px;
}

.zana-home-board {
  background: #f7f9f4;
  color: #12362c;
  padding: 12px 0 10px;
}

.zana-board-inner {
  width: min(1188px, calc(100% - 92px));
  margin: 0 auto;
}

.zana-home-board h2 {
  color: #163d32;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.08;
}

.zana-home-board h3 {
  color: #1b3b32;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.2;
}

.zana-home-board p {
  color: #324a42;
}

.zana-vision-strip {
  display: grid;
  grid-template-columns: 92px minmax(292px, 1.45fr) repeat(4, minmax(112px, 1fr));
  gap: 14px;
  align-items: center;
  padding: 0 16px 12px;
}

.zana-vision-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(61, 93, 74, 0.28);
  border-radius: 50%;
  color: #60745f;
}

.zana-vision-icon svg {
  width: 44px;
  height: 44px;
}

.zana-vision-copy h2 {
  margin-bottom: 7px;
}

.zana-vision-copy p {
  max-width: 520px;
  margin: 0;
  font-size: 13px;
  line-height: 1.44;
}

.zana-feature {
  min-height: 68px;
  padding: 2px 10px 0 16px;
  border-left: 1px solid rgba(18, 54, 44, 0.14);
  text-align: center;
}

.zana-feature > span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  color: #5c6f61;
}

.zana-feature > span svg {
  width: 28px;
  height: 28px;
}

.zana-feature h3 {
  margin-bottom: 4px;
}

.zana-feature p {
  max-width: 140px;
  margin: 0 auto;
  font-size: 9px;
  line-height: 1.28;
}

.zana-project-shell,
.zana-documents-panel,
.zana-contact-panel {
  border: 1px solid rgba(18, 54, 44, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(18, 54, 44, 0.07);
}

.zana-project-shell {
  display: grid;
  grid-template-columns: 214px minmax(0, 1fr);
  overflow: hidden;
}

.zana-panel-intro {
  padding: 16px 18px;
  border-right: 1px solid rgba(18, 54, 44, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.zana-panel-intro h2 {
  margin-bottom: 11px;
}

.zana-panel-intro p {
  max-width: 150px;
  min-height: 50px;
  margin-bottom: 22px;
  font-size: 13px;
  line-height: 1.38;
}

.zana-project-table {
  min-width: 0;
}

.zana-project-row {
  display: grid;
  grid-template-columns: 108px minmax(210px, 1fr) 92px 108px 142px;
  gap: 14px;
  align-items: center;
  min-height: 50px;
  padding: 6px 12px;
  border-bottom: 1px solid rgba(18, 54, 44, 0.13);
}

.zana-project-row:last-child {
  border-bottom: 0;
}

.zana-project-thumb {
  width: 108px;
  height: 42px;
  border-radius: 3px;
  background-position: center;
  background-size: cover;
}

.zana-project-row h3 {
  margin-bottom: 2px;
  font-size: 12px;
}

.zana-project-row p {
  margin: 0;
  font-size: 9px;
  line-height: 1.16;
}

.zana-project-row > span {
  color: #334940;
  font-size: 10px;
}

.zana-status {
  justify-self: center;
  min-width: 70px;
  padding: 4px 10px;
  border-radius: 6px;
  text-align: center;
  font-weight: 760;
}

.zana-status.planning {
  background: #f4e4c5;
  color: #89662b;
}

.zana-status.progress {
  background: #dfebf3;
  color: #385d78;
}

.zana-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.78fr);
  gap: 12px;
  margin-top: 9px;
}

.zana-documents-panel,
.zana-contact-panel {
  padding: 12px 16px;
}

.zana-documents-panel h2,
.zana-contact-panel h2 {
  margin-bottom: 9px;
  font-size: 24px;
}

.zana-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.zana-doc-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 18px;
  min-height: 102px;
  overflow: hidden;
  border: 1px solid rgba(18, 54, 44, 0.11);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.zana-doc-icon {
  display: grid;
  place-items: center;
  height: 100%;
  color: #386149;
}

.zana-doc-icon svg {
  width: 38px;
  height: 38px;
}

.zana-doc-icon.tone-green {
  background: #d9e4cc;
}

.zana-doc-icon.tone-gold {
  background: #f2e6c9;
  color: #9b6c23;
}

.zana-doc-icon.tone-blue {
  background: #e4edf3;
  color: #456f87;
}

.zana-doc-card div {
  padding: 15px 8px 10px 12px;
}

.zana-doc-card h3 {
  margin-bottom: 5px;
  font-size: 12px;
}

.zana-doc-card p {
  margin-bottom: 8px;
  font-size: 10px;
  line-height: 1.35;
}

.zana-doc-card small {
  color: #2e463d;
  font-size: 9px;
  font-weight: 760;
}

.zana-doc-card a {
  align-self: end;
  width: 18px;
  margin: 0 8px 12px 0;
  color: #60736a;
}

.zana-doc-card a svg {
  width: 17px;
  height: 17px;
}

.zana-contact-panel {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(230px, 1fr);
  gap: 14px;
  align-items: start;
}

.zana-contact-panel p {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
}

.theme-zana .zana-compact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.theme-zana .zana-compact-form input,
.theme-zana .zana-compact-form select,
.theme-zana .zana-compact-form textarea {
  min-height: 21px;
  padding: 5px 7px;
  border-color: rgba(18, 54, 44, 0.15);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.84);
  color: #12362c;
  font-size: 10px;
  line-height: 1.2;
}

.theme-zana .zana-compact-form textarea {
  grid-column: 1 / -1;
  min-height: 46px;
  resize: vertical;
}

.theme-zana .zana-consent {
  grid-column: 1 / -1;
  margin: 0;
  color: #52665e;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.25;
}

.theme-zana .zana-consent input {
  width: auto;
  min-height: auto;
  margin-top: 1px;
}

.theme-zana .zana-compact-form .turnstile-slot {
  min-height: 56px;
}

.theme-zana .zana-compact-form button {
  justify-self: start;
  min-height: 28px;
  padding: 6px 13px;
  font-size: 10px;
}

.theme-zana .hero {
  min-height: 500px;
  align-items: center;
  padding-top: 88px;
  background-position: center;
  border-bottom-color: rgba(18, 54, 44, 0.14);
}

.theme-zana .hero-scrim {
  background:
    linear-gradient(90deg, rgba(248, 252, 248, 0.96) 0%, rgba(248, 252, 248, 0.8) 38%, rgba(248, 252, 248, 0.25) 74%, rgba(248, 252, 248, 0.04) 100%),
    linear-gradient(180deg, rgba(248, 252, 248, 0.3), rgba(248, 252, 248, 0.16));
}

.theme-zana .hero-copy {
  width: min(720px, calc(100% - 92px));
  margin-left: max(46px, calc((100vw - 1188px) / 2));
  padding: 42px 0 58px;
}

.theme-zana .hero-copy h1 {
  max-width: 680px;
  color: #063126;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  font-weight: 700;
  line-height: 0.96;
}

.theme-zana .hero-copy p {
  max-width: 620px;
  color: #203b32;
  font-size: 17px;
}

.theme-zana .status-row span {
  background: rgba(255, 255, 255, 0.66);
  color: #203b32;
}

.theme-zana .content-band {
  width: min(1188px, calc(100% - 92px));
  gap: 22px;
  margin-top: 14px;
  padding: 26px;
  border: 1px solid rgba(18, 54, 44, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(18, 54, 44, 0.07);
}

.theme-zana .content-band.kind-statement,
.theme-zana .content-band.kind-brief,
.theme-zana .content-band.kind-media,
.theme-zana .content-band.kind-lanes {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(18, 54, 44, 0.07);
  clip-path: none;
  color: #12362c;
}

.theme-zana .content-band.kind-lanes .band-copy p,
.theme-zana .content-band.kind-lanes .item-card p {
  color: #435a51;
}

.theme-zana .content-band h2 {
  color: #163d32;
  font-family: Georgia, "Times New Roman", serif;
}

.theme-zana .content-band .item-card {
  border-color: rgba(18, 54, 44, 0.12);
  background: rgba(247, 249, 244, 0.72);
}

.theme-zana .content-band.kind-statement .item-card {
  padding-left: 18px;
  border-left-color: rgba(18, 54, 44, 0.14);
}

.theme-zana .content-band.kind-media .band-media {
  border-color: rgba(18, 54, 44, 0.12);
  box-shadow: 0 16px 34px rgba(18, 54, 44, 0.12);
}

.theme-zana .inquiry-band,
.theme-zana .footer {
  width: min(1188px, calc(100% - 92px));
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.theme-zana .inquiry-band {
  margin-top: 16px;
  padding: 28px;
  border: 1px solid rgba(18, 54, 44, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
}

.theme-zana .inquiry-band h2,
.theme-zana .footer p {
  color: #12362c;
}

.theme-zana .inquiry-band > div p {
  color: #435a51;
}

.theme-zana .footer {
  padding: 24px 0 36px;
  border-top-color: rgba(18, 54, 44, 0.13);
}

@media (max-width: 1180px) {
  .theme-zana .topbar {
    padding: 16px 30px;
  }

  .theme-zana nav {
    gap: 17px;
  }

  .zana-board-inner,
  .theme-zana .content-band,
  .theme-zana .inquiry-band,
  .theme-zana .footer {
    width: calc(100% - 44px);
  }

  .zana-hero-copy,
  .theme-zana .hero-copy {
    width: min(620px, calc(100% - 60px));
    margin-left: 30px;
  }

  .zana-vision-strip {
    grid-template-columns: 92px minmax(260px, 1fr) repeat(2, minmax(150px, 1fr));
  }

  .zana-project-shell {
    grid-template-columns: 1fr;
  }

  .zana-panel-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 54, 44, 0.12);
  }

  .zana-panel-intro p {
    min-height: 0;
    margin: 0;
  }
}

@media (max-width: 930px) {
  .theme-zana .topbar {
    align-items: flex-start;
  }

  .theme-zana .brand {
    min-width: auto;
  }

  .theme-zana .topbar-actions {
    flex: 1 1 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .theme-zana nav {
    justify-content: flex-start;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .theme-zana nav::-webkit-scrollbar {
    display: none;
  }

  .theme-zana nav a {
    flex: 0 0 auto;
  }

  .zana-home-hero {
    min-height: 560px;
    padding-top: 130px;
    background-position: center;
  }

  .zana-home-scrim {
    background:
      linear-gradient(180deg, rgba(248, 252, 248, 0.95) 0%, rgba(248, 252, 248, 0.74) 44%, rgba(248, 252, 248, 0.18) 100%),
      linear-gradient(90deg, rgba(248, 252, 248, 0.8), rgba(248, 252, 248, 0.12));
  }

  .zana-hero-copy h1 {
    font-size: 64px;
  }

  .zana-vision-strip {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .zana-feature {
    border-top: 1px solid rgba(18, 54, 44, 0.12);
    border-left: 0;
  }

  .zana-project-row {
    grid-template-columns: 104px minmax(0, 1fr) 84px;
  }

  .zana-project-row > span:nth-last-child(-n+2) {
    display: none;
  }

  .zana-project-thumb {
    width: 104px;
  }

  .zana-bottom-grid,
  .zana-contact-panel {
    grid-template-columns: 1fr;
  }

  .zana-doc-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .theme-zana .topbar {
    padding: 13px 16px;
  }

  .theme-zana .zana-brand-mark,
  .theme-zana .zana-brand-mark svg {
    width: 45px;
    height: 41px;
  }

  .theme-zana .zana-brand-text span:first-child {
    font-size: 25px;
  }

  .theme-zana .zana-brand-text span:last-child {
    font-size: 11px;
  }

  .theme-zana .topbar-actions {
    display: flex;
    width: 100%;
    max-width: 100%;
  }

  .theme-zana .language-switch {
    position: static;
  }

  .theme-zana nav {
    gap: 13px;
  }

  .theme-zana nav a {
    padding: 5px 0 7px;
    font-size: 12px;
  }

  .theme-zana .language-switch a {
    min-width: 34px;
    padding: 7px 8px;
    font-size: 12px;
  }

  .zana-home-hero {
    min-height: 585px;
    padding-top: 118px;
  }

  .zana-hero-copy,
  .theme-zana .hero-copy {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-bottom: 28px;
  }

  .zana-hero-copy h1,
  .theme-zana .hero-copy h1 {
    width: auto;
    max-width: 100%;
    font-size: 48px;
    line-height: 0.98;
  }

  .zana-hero-copy p,
  .theme-zana .hero-copy p {
    width: auto;
    max-width: 100%;
    font-size: 15px;
  }

  .zana-hero-copy .cta-row,
  .theme-zana .hero .cta-row {
    display: grid;
    gap: 10px;
  }

  .theme-zana .hero .button,
  .zana-hero-copy .button {
    width: auto;
  }

  .zana-home-board {
    padding-top: 12px;
  }

  .zana-board-inner,
  .theme-zana .content-band,
  .theme-zana .inquiry-band,
  .theme-zana .footer {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

  .zana-vision-strip {
    grid-template-columns: 1fr;
    padding: 0 2px 12px;
  }

  .zana-vision-icon {
    width: 78px;
    height: 78px;
  }

  .zana-feature {
    min-height: auto;
    padding: 12px 0;
    text-align: left;
  }

  .zana-feature p {
    max-width: none;
    margin: 0;
  }

  .zana-panel-intro {
    display: grid;
    padding: 16px;
  }

  .zana-panel-intro p {
    max-width: none;
  }

  .zana-project-row {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .zana-project-row .zana-status {
    grid-column: 2;
    justify-self: start;
  }

  .zana-project-thumb {
    width: 86px;
    height: 58px;
  }

  .zana-documents-panel,
  .zana-contact-panel {
    padding: 14px;
  }

  .zana-doc-card {
    grid-template-columns: 58px minmax(0, 1fr) 18px;
  }

  .theme-zana .zana-compact-form {
    grid-template-columns: 1fr;
  }

  .theme-zana .hero {
    min-height: 560px;
    padding-top: 118px;
  }

  .theme-zana .content-band {
    padding: 20px;
  }
}
