/* ===== Variables ===== */
:root {
  --void: #050507;
  --panel: #0c0c12;
  --panel-2: #121219;
  --panel-3: #191922;
  --line: rgba(0, 229, 255, .18);
  --line-strong: rgba(0, 229, 255, .5);

  --cyan: #00e5ff;
  --cyan-dim: #0a8fa8;
  --magenta: #ff2e88;
  --magenta-dim: #a81d5c;
  --green: #39ff88;
  --brand-green: #7bc142;
  --brand-green-dim: #4f8a24;

  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;

  --white: #f2f5fa;
  --gray-100: #c9d2e0;
  --gray-400: #7a8296;
  --gray-600: #565c6d;

  --font: 'Manrope', 'Noto Sans Armenian', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Russo One', 'Noto Sans Armenian', 'Manrope', sans-serif;
  --container-w: 1200px;

  --cut: 18px;
  --cut-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--void);
  color: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Angular clip helper ===== */
.clip {
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 14px;
  border: 1.5px solid transparent;
  padding: 13px 24px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 15px; clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px); }
.btn-sm { padding: 9px 18px; font-size: 12.5px; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #04140a;
  box-shadow: 0 0 0 rgba(37,211,102,0);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 0 28px rgba(37,211,102,.55);
}

.btn-outline {
  background: rgba(0,229,255,.04);
  color: var(--cyan);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  background: rgba(0,229,255,.1);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0,229,255,.35);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,5,7,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--panel-3), var(--void) 75%);
  border: 1px solid rgba(123,193,66,.4);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 19px;
}
.logo-text {
  color: var(--brand-green);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}
.logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--brand-green);
  opacity: .8;
}

.main-nav { display: flex; gap: 30px; flex: 1; justify-content: center; }
.main-nav a {
  position: relative;
  color: var(--gray-100);
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
  transition: color .15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transition: width .2s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .5px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span { width: 24px; height: 2px; background: var(--cyan); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,.15) 0px, rgba(0,0,0,.15) 1px, transparent 1px, transparent 3px),
    linear-gradient(180deg, rgba(5,5,7,.25) 0%, rgba(5,5,7,.1) 40%, rgba(5,5,7,.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 70px 24px 120px;
  max-width: 820px;
}
.hero-kicker {
  display: inline-block;
  color: var(--cyan);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  background: rgba(0,229,255,.06);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 0 30px rgba(0,229,255,.25);
}
.hero-subtitle {
  font-size: 17px;
  color: var(--gray-100);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-usp {
  position: relative;
  z-index: 2;
  background: rgba(5,5,7,.7);
  border-top: 1px solid var(--line);
}
.usp-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  padding: 20px 24px;
  justify-content: space-between;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-100);
  font-weight: 600;
  font-size: 13.5px;
  white-space: nowrap;
}
.usp-item svg { color: var(--cyan); flex-shrink: 0; filter: drop-shadow(0 0 4px rgba(0,229,255,.6)); }

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section--alt { background: var(--panel); }
.section-kicker {
  display: block;
  color: var(--magenta);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.section-title-row .section-title { margin-bottom: 0; }
.section-title-row .btn { flex-shrink: 0; margin-bottom: 50px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  max-width: 720px;
  margin-bottom: 50px;
  line-height: 1.25;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--cyan);
}

/* ===== Category grid ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
  align-items: start;
}
.cat-card {
  background: var(--panel-2);
  border: 1px solid var(--line);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 0 32px rgba(0,229,255,.25);
}

/* media area: same height whether it's a photo or an icon panel, so cards read as one family */
.cat-media {
  position: relative;
  display: block;
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
}
.cat-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.15);
  transition: transform .3s ease;
}
.cat-card:hover .cat-media img { transform: scale(1.05); }
.cat-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,.28), rgba(255,46,136,.22));
}

.cat-media--icon {
  display: flex; align-items: center; justify-content: center;
  background-image: url('../images/art/circuit-pattern.svg');
  background-size: 130px;
  background-color: var(--panel-3);
}
.cat-media--icon svg {
  position: relative; z-index: 1;
  color: var(--cyan);
  filter: drop-shadow(0 0 10px rgba(0,229,255,.5));
  transition: transform .3s ease;
}
.cat-card:hover .cat-media--icon svg { transform: scale(1.1); }
.cat-media--icon::after { background: linear-gradient(135deg, rgba(0,229,255,.14), rgba(255,46,136,.14)); }

.cat-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.cat-card-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .3px;
  line-height: 1.3;
  height: calc(1.3em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card-body h3 a:hover { color: var(--cyan); }
.cat-card-body p {
  font-size: 13.5px;
  color: var(--gray-100);
  line-height: 1.5;
  height: calc(1.5em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Expandable product list (native details/summary) ===== */
.cat-list { margin-top: auto; }
.cat-list summary {
  display: block;
  cursor: pointer;
  list-style: none;
  /* full-bleed clickable strip: reaches the card edges despite body padding */
  margin: 0 -22px;
  padding: 15px 22px;
  border-top: 1px solid var(--line);
  transition: background .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.cat-list summary:hover { background: rgba(0,229,255,.06); }
.cat-list summary::-webkit-details-marker { display: none; }
.cat-list-head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--cyan);
}
.cat-list-head svg { transition: transform .2s ease; flex-shrink: 0; }
.cat-list[open] .cat-list-head svg { transform: rotate(180deg); }
.cat-list ul {
  margin: 0;
  padding: 4px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-list li {
  position: relative;
  padding-left: 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--gray-100);
}
.cat-list li::before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px;
  background: var(--magenta);
}

/* ===== Card CTA (services with no product list, e.g. solar) ===== */
.cat-cta {
  margin: auto -22px 0;
  padding: 15px 22px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--cyan);
  transition: background .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.cat-cta:hover { background: rgba(0,229,255,.06); }
.cat-cta svg { transition: transform .2s ease; }
.cat-card:hover .cat-cta svg { transform: translateX(4px); }

/* ===== Catalog page: filter tabs ===== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.filter-tab {
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  color: var(--gray-100);
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 10px 18px;
  cursor: pointer;
  clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm));
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.filter-tab:hover { border-color: var(--cyan); color: #fff; }
.filter-tab.active {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--void);
}

/* ===== Catalog page: product grid & cards ===== */
.cat-section { padding-top: 56px; padding-bottom: 56px; }
.subgroup-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 40px 0 18px;
}
.subgroup-title:first-of-type { margin-top: 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.product-grid .cat-card-body { padding-bottom: 0; }

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  height: 180px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--void);
}
.product-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.product-gallery--single { grid-template-columns: 1fr; }

/* ===== Manufacturers ===== */
.mfr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.mfr-card {
  background: var(--panel-3);
  border: 1px solid var(--line);
  clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm));
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.mfr-card:hover { border-color: var(--magenta); transform: translateY(-4px); box-shadow: 0 0 24px rgba(255,46,136,.25); }
.mfr-flag svg {
  width: 48px; height: 32px;
  display: block;
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
  filter: saturate(.85) brightness(.95);
  outline: 1px solid rgba(255,255,255,.12);
}

/* ===== Projects ===== */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proj-card {
  background: var(--void);
  border: 1px solid var(--line);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  padding: 28px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.proj-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 0 28px rgba(0,229,255,.2); }
.proj-card svg { color: var(--cyan); }
.proj-card h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: .3px; }
.proj-note { margin-top: 28px; color: var(--gray-400); font-size: 13.5px; }

.proj-card--photo {
  padding: 0;
  background: var(--panel);
  color: #fff;
}
.proj-card--photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.proj-card--photo:hover img { transform: scale(1.05); }
.proj-card--photo h3 {
  padding: 18px 20px;
  font-size: 17px;
}

/* ===== Services ===== */
.services { position: relative; background: var(--panel); overflow: hidden; }
.services-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .8;
  z-index: 0;
}
.services .container { position: relative; z-index: 1; }
.serv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.serv-card {
  background: rgba(12,12,18,.75);
  border: 1px solid var(--line);
  clip-path: polygon(var(--cut-sm) 0, 100% 0, 100% calc(100% - var(--cut-sm)), calc(100% - var(--cut-sm)) 100%, 0 100%, 0 var(--cut-sm));
  backdrop-filter: blur(6px);
  padding: 30px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.serv-card:hover { border-color: var(--cyan); box-shadow: 0 0 26px rgba(0,229,255,.18); }
.serv-card svg { color: var(--cyan); margin-bottom: 16px; filter: drop-shadow(0 0 6px rgba(0,229,255,.5)); }
.serv-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.serv-card p { font-size: 13.5px; color: var(--gray-100); line-height: 1.55; }

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--panel-2);
  position: relative;
  color: #fff;
  padding: 64px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 0% 50%, rgba(0,229,255,.14), transparent),
    radial-gradient(ellipse 60% 90% at 100% 50%, rgba(255,46,136,.14), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 1px, transparent 1px, transparent 24px);
}
.cta-inner { position: relative; text-align: center; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
  text-shadow: 0 0 24px rgba(0,229,255,.45);
}
.cta-inner p { font-size: 16px; color: var(--gray-100); margin-bottom: 26px; }

/* ===== About ===== */
.about-inner { max-width: 780px; }
.about-text { font-size: 16px; color: var(--gray-100); line-height: 1.7; }

/* ===== Footer ===== */
.site-footer { background: var(--void); color: var(--gray-100); padding: 64px 0 0; border-top: 1px solid var(--line); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-tagline { margin-top: 14px; font-size: 14px; color: var(--gray-400); max-width: 240px; }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: var(--gray-400); margin-bottom: 10px; transition: color .15s ease; }
.footer-link:hover { color: var(--cyan); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-100);
  transition: border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.footer-social a:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 16px rgba(0,229,255,.35); }
.footer-bottom { padding: 22px 24px; font-size: 12.5px; color: var(--gray-600); }

/* ===== Floating WhatsApp ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  color: #04140a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  z-index: 200;
  transition: transform .15s ease;
  animation: pulse-glow 2.4s infinite;
}
.fab-whatsapp:hover { transform: scale(1.08); }
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .mfr-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .serv-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .burger { display: flex; }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--panel);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-top: 1px solid var(--line);
  }

  .usp-inner { justify-content: flex-start; }
}

/* ===== Display-font weight fix =====
   Russo One ships only w400 (visually heavy); Noto Sans Armenian needs true 700
   for Armenian headings. font-synthesis:none stops faux-bold from distorting
   Russo One while letting Noto pick its real Bold. */
.logo-text, .header-phone, .hero-kicker, .hero-title,
.section-kicker, .section-title,
.cat-card-body h3, .mfr-card, .proj-card h3, .serv-card h3,
.cta-inner h2, .footer-col h4 {
  font-weight: 700;
  font-synthesis: none;
}

/* ===== Polish ===== */
::selection { background: var(--cyan); color: var(--void); }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb {
  background: var(--panel-3);
  border: 2px solid var(--void);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: var(--cyan-dim); }

a:focus-visible, .btn:focus-visible, .burger:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .mfr-grid { grid-template-columns: 1fr 1fr; }
  .serv-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-inner { padding: 50px 20px 90px; }
  .section { padding: 60px 0; }
  .section-title { padding-left: 14px; }
}
