/* =========================================================
   Ε. ΦΛΩΡΟΥ — Technical / Blueprint design system
   Monochrome. Grid-driven. Mono annotations.
   ========================================================= */

:root {
  --ink:        #0a0a0a;
  --ink-2:      #1a1a1a;
  --ink-3:      #2a2a2a;
  --paper:      #ffffff;
  --paper-2:    #f6f6f4;   /* slightly warm */
  --paper-3:    #ececea;
  --rule:       #d9d9d6;
  --rule-soft:  #ececea;
  --muted:      #6c6c68;
  --muted-2:    #8e8e8a;

  --sans: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --maxw: 1440px;
  --gutter: 32px;

  --ease: cubic-bezier(.2, .7, .1, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }

/* ----- Type ----- */
.mono { font-family: var(--mono); font-feature-settings: "ss01"; letter-spacing: 0.02em; }
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker .dot { display: inline-block; width: 6px; height: 6px; background: currentColor; margin-right: 10px; transform: translateY(-2px); }
.kicker.ink { color: var(--ink); }
.kicker.paper { color: var(--paper); opacity: .7; }

h1, h2, h3, h4, h5, p { margin: 0; }

.h-display {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(48px, 7.4vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.h-section {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.028em;
}
.h-card {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 60ch;
}
.body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
}

/* ----- Layout ----- */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

/* Persistent blueprint vertical grid behind everything */
.bp-grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: calc((100vw - 64px) / 12) 100%;
  background-position: 32px 0;
  mask-image: linear-gradient(to bottom, black, black);
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.header.is-scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom-color: var(--rule);
}
.header.is-dark {
  background: rgba(10,10,10,0.0);
  color: var(--paper);
}
.header.is-dark.is-scrolled {
  background: rgba(10,10,10,0.78);
  border-bottom-color: rgba(255,255,255,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  height: 38px;
  width: auto;
  transition: opacity .25s var(--ease);
}
.brand-logo-white { display: none !important; }
.brand-logo-dark { display: block !important; }

.header.is-dark .brand-logo-white { display: block !important; }
.header.is-dark .brand-logo-dark { display: none !important; }
.header.is-menu-open .brand-logo-white { display: block !important; }
.header.is-menu-open .brand-logo-dark { display: none !important; }
.brand-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--muted);
  border-left: 1px solid var(--rule);
  padding-left: 14px;
}
.header.is-dark .brand-meta { color: rgba(255,255,255,0.6); border-left-color: rgba(255,255,255,0.18); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  position: relative;
  opacity: 0.78;
  transition: opacity .2s var(--ease);
}
.nav a:hover { opacity: 1; }
.nav-cta {
  margin-left: 16px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.header.is-dark .nav-cta { border-color: var(--paper); color: var(--paper); }
.header.is-dark .nav-cta:hover { background: var(--paper); color: var(--ink); }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-top: 72px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: var(--ink);
  overflow: hidden;
}
.hero-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.hero-photo-img.active {
  opacity: 1;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2;
}
/* Placeholder annotation in the corner of hero photo */
.hero-photo-label {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.5;
  z-index: 3;
}
.hero-photo-label .ph-tag {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 8px;
}

/* Hero copy */
.hero-inner {
  position: relative;
  z-index: 5;
  height: calc(100vh - 72px);
  min-height: 640px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  padding: 48px 0 56px;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-top .col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-top .col strong {
  color: var(--paper);
  font-weight: 500;
}

.hero-body {
  align-self: end;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1200px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero-eyebrow::before {
  content: "";
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  display: inline-block;
}
.hero-title {
  font-weight: 500;
  font-size: clamp(44px, 6.6vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 18ch;
}
.hero-title em {
  font-style: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.hero-sub-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
}
.hero-sub {
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid currentColor;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn .arr { display: inline-block; transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-primary:hover { background: transparent; color: var(--paper); }
.btn-ghost { color: var(--paper); border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn-ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-ink:hover { background: transparent; color: var(--ink); }
.btn-ink-ghost { color: var(--ink); border-color: var(--ink); }
.btn-ink-ghost:hover { background: var(--ink); color: var(--paper); }

/* Corner ticks (blueprint registration marks) */
.bp-corners > * {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  opacity: 0.5;
}
.bp-corners .tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.bp-corners .tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; }
.bp-corners .bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; }
.bp-corners .br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

/* ----- Section frame ----- */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
  background: var(--paper);
}
.section.dark {
  background: var(--ink);
  color: var(--paper);
}
.section.alt {
  background: var(--paper-2);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.section.dark .section-head { border-bottom-color: rgba(255,255,255,0.12); }
.section-head .left { display: flex; flex-direction: column; gap: 24px; }
.section-head .right { color: var(--muted); max-width: 48ch; }
.section.dark .section-head .right { color: rgba(255,255,255,0.62); }

.section-index {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.section.dark .section-index { color: rgba(255,255,255,0.55); }
.section-index .num { color: var(--ink); font-weight: 500; }
.section.dark .section-index .num { color: var(--paper); }

/* ----- Stats band ----- */
.stats {
  background: var(--ink);
  color: var(--paper);
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  opacity: 0.7;
}
.stats-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 56px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  position: relative;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.stat {
  padding: 8px 28px 8px 0;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(48px, 5.2vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat .num .suffix {
  font-size: 0.35em;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  align-self: center;
}
.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
}
.stat .desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  max-width: 28ch;
}

/* ----- About ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.about-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.about-visual .ph-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-visual .corner-coords {
  position: absolute;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted-2);
  letter-spacing: 0.1em;
}
.about-visual .cc-tl { top: 10px; left: 12px; }
.about-visual .cc-tr { top: 10px; right: 12px; }
.about-visual .cc-bl { bottom: 10px; left: 12px; }
.about-visual .cc-br { bottom: 10px; right: 12px; }

.about-text { display: flex; flex-direction: column; gap: 32px; }
.about-text .h-section { max-width: 16ch; }
.about-quote {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 28ch;
  font-weight: 400;
}
.about-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.about-meta dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.about-meta dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

/* ----- Services (horizontal scroll) ----- */
.services {
  background: var(--paper-2);
  padding: 120px 0 80px;
}
.services-head { padding: 0 var(--gutter); max-width: var(--maxw); margin: 0 auto 56px; }
.services-rail-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
}
.services-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 16px var(--gutter) 28px;
  scrollbar-width: none;
}
.services-rail::-webkit-scrollbar { display: none; }
.services-rail > .spacer-end { flex: 0 0 max(0px, calc((100vw - var(--maxw)) / 2 + var(--gutter))); }

.service-card {
  flex: 0 0 clamp(340px, 32vw, 460px);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  cursor: pointer;
  min-height: 540px;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 12px 40px -16px rgba(0,0,0,0.18);
}
.service-card .sc-thumb {
  position: relative;
  aspect-ratio: 16 / 11;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.service-card .sc-thumb svg.bp,
.service-card .sc-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--ink);
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .sc-thumb img {
  transform: scale(1.05);
}
.service-card .sc-meta {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 14px;
}
.service-card .sc-meta .num { color: var(--ink); font-weight: 500; }
.service-card .sc-body {
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.service-card .sc-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-top: 4px;
}
.service-card .sc-summary {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.service-card .sc-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.service-card .sc-more {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .sc-more .arr { transition: transform .25s var(--ease); }
.service-card:hover .sc-more .arr { transform: translateX(4px); }
.service-card .sc-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.rail-controls {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.rail-progress {
  height: 1px;
  background: var(--rule);
  flex: 1;
  margin: 0 28px;
  position: relative;
}
.rail-progress .bar {
  position: absolute;
  top: -1px; left: 0;
  height: 3px;
  background: var(--ink);
  transition: width .25s var(--ease), left .25s var(--ease);
}
.rail-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease);
}
.rail-btn:hover { background: var(--ink); color: var(--paper); }
.rail-btn:disabled { opacity: 0.25; cursor: not-allowed; }
.rail-btn:disabled:hover { background: transparent; color: var(--ink); }
.rail-count {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ----- Service modal ----- */
.modal-back {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.modal-back.open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(720px, 92vw);
  background: var(--paper);
  height: 100vh;
  overflow-y: auto;
  transform: translateX(40px);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.modal-back.open .modal { transform: translateX(0); }

.modal-head {
  position: sticky;
  top: 0;
  background: var(--paper);
  padding: 24px 40px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.modal-close {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.modal-close:hover { background: var(--ink); color: var(--paper); }
.modal-body { padding: 48px 40px 64px; }
.modal-hero {
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.modal-hero svg,
.modal-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--ink);
  object-fit: cover;
}
.modal-eyebrow {
  display: flex;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.modal h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 24px;
  max-width: 18ch;
}
.modal-content p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.modal-content .features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--rule);
}
.modal-content .features li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14.5px;
  line-height: 1.55;
}
.modal-content .features li .idx {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding-top: 2px;
}
.modal-content .features li strong { display: block; font-weight: 600; margin-bottom: 2px; }

/* ----- Contact ----- */
.contact {
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-cta {
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.028em;
  font-weight: 500;
  max-width: 14ch;
}
.contact-rows { display: flex; flex-direction: column; }
.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 1px solid var(--rule); }
.contact-row .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-row .val {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}
.contact-row .val a:hover { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.contact-row .ext {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-map {
  position: relative;
  border: 1px solid var(--rule);
  background: var(--paper-2);
  min-height: 520px;
  overflow: hidden;
}
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.02);
}
.contact-map .map-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
}
.contact-map .map-tag .pulse {
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  position: relative;
}
.contact-map .map-tag .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ----- Footer ----- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-brand img { height: 44px; width: auto; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  max-width: 36ch;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  position: relative;
}
.footer-mono-row {
  display: flex;
  gap: 28px;
}

/* ----- Scroll reveal ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ----- Misc ticks ----- */
.tick-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* ----- Mobile menu toggle (hamburger) ----- */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
  position: relative;
  z-index: 60;
}
.menu-icon {
  position: relative;
  width: 24px;
  height: 16px;
  display: inline-block;
}
.menu-icon > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.menu-icon > span:nth-child(1) { top: 0; }
.menu-icon > span:nth-child(2) { top: 7px; }
.menu-icon > span:nth-child(3) { top: 14px; }
.menu-icon.is-open > span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.menu-icon.is-open > span:nth-child(2) { opacity: 0; }
.menu-icon.is-open > span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ----- Mobile menu overlay ----- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 55;
  display: none;
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
  animation: mm-fade-in 0.35s var(--ease) both;
}
@keyframes mm-fade-in {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
  pointer-events: none;
}
.mobile-menu-inner {
  position: relative;
  padding: 96px var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}
.mm-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mm-meta strong { color: var(--paper); font-weight: 500; }
.mm-nav {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.mm-nav a {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding-left .3s var(--ease), color .2s var(--ease);
}
.mm-nav a:hover { padding-left: 8px; }
.mm-nav .mm-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
}
.mm-nav .mm-label {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.mm-foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.mm-foot-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
}
.mm-foot-row .mm-foot-lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.mm-foot-row a, .mm-foot-row span:not(.mm-foot-lbl) {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

/* While menu is open, the header chrome should match the dark overlay */
.header.is-menu-open {
  background: transparent !important;
  border-bottom-color: transparent !important;
  color: var(--paper);
}
.header.is-menu-open .brand-meta { color: rgba(255,255,255,0.55); border-left-color: rgba(255,255,255,0.18); }

/* ----- Services Dropdown (Desktop) ----- */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 14px;
  cursor: pointer;
  opacity: 0.78;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-trigger {
  opacity: 1;
}

.nav-dropdown-trigger .chevron {
  display: inline-block;
  font-size: 9px;
  transition: transform .25s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-trigger .chevron {
  transform: translateY(2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: 380px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  text-align: left;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease);
  border-bottom: 1px solid var(--rule-soft);
  width: 100%;
  cursor: pointer;
}

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

.nav-dropdown-item .item-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  min-width: 18px;
}

.nav-dropdown-item .item-title {
  font-weight: 500;
  line-height: 1.35;
}

.nav-dropdown-item:hover {
  background: var(--paper-2);
}

.nav-dropdown-item:hover .item-num {
  color: var(--ink);
}

/* Dark theme support for header dropdown menu */
.header.is-dark .nav-dropdown-menu {
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.6);
}

.header.is-dark .nav-dropdown-item {
  color: var(--paper);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.header.is-dark .nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header.is-dark .nav-dropdown-item .item-num {
  color: rgba(255, 255, 255, 0.4);
}

.header.is-dark .nav-dropdown-item:hover .item-num {
  color: var(--paper);
}

/* ----- Mobile Menu Collapsible drawer & Close button ----- */
.mm-close {
  position: absolute;
  top: 24px;
  right: var(--gutter);
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  cursor: pointer;
  z-index: 60;
}

.mm-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--paper);
  transform: scale(1.04);
}

.mm-collapsible {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mm-collapsible-trigger {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  text-align: left;
  width: 100%;
  color: inherit;
  cursor: pointer;
}

.mm-collapsible-trigger .mm-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}

.mm-collapsible-trigger .mm-label {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.mm-collapsible-trigger .chevron {
  font-size: 16px;
  opacity: 0.5;
  transition: transform .3s var(--ease);
  margin-right: 8px;
}

.mm-collapsible.is-expanded .mm-collapsible-trigger .chevron {
  transform: rotate(180deg);
}

.mm-collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding-bottom .4s var(--ease);
  display: flex;
  flex-direction: column;
  padding-left: 56px;
}

.mm-collapsible.is-expanded .mm-collapsible-content {
  max-height: 520px;
  padding-bottom: 24px;
}

.mm-sub-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}

.mm-sub-link:last-child {
  border-bottom: 0;
}

.mm-sub-link:hover {
  color: var(--paper);
  padding-left: 8px;
}

.mm-sub-num {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.mm-sub-label {
  font-weight: 500;
  line-height: 1.3;
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .nav { display: none; }
  .brand-meta { display: none; }
  .menu-toggle { display: inline-flex; }

  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-sub-row { grid-template-columns: 1fr; gap: 24px; }
  .hero-actions { justify-content: flex-start; flex-wrap: wrap; }
  .section { padding: 80px 0; }

  /* Override the inline 50px paddings the user applied for desktop only */
  .hero-inner { height: auto !important; min-height: calc(100vh - 72px); padding: 32px 24px 48px !important; grid-template-rows: auto 1fr; gap: 40px; }
  .hero-body { align-self: start; }
  .hero-top { height: auto !important; gap: 12px; flex-direction: column; align-items: flex-start; }
  .hero-top .col,
  .hero-top .col[style] { padding: 0 !important; align-items: flex-start !important; text-align: left !important; }
  .hero-top .col:nth-child(2) { display: none; }
  .hero-title,
  .hero-title[style] { padding: 0 !important; font-size: clamp(32px, 8vw, 64px) !important; word-break: break-word; hyphens: auto; }
  .hero-sub,
  .hero-sub[style] { padding: 0 !important; }

  .hero-photo-label { bottom: 16px; right: 16px; font-size: 9px; max-width: 60vw; }

  /* Modal: from side-drawer to full screen */
  .modal { width: 100vw; }
  .modal-back { justify-content: stretch; }

  /* About visual is tall on mobile — limit it */
  .about-visual { aspect-ratio: 4 / 3.6; }
  .about-meta { grid-template-columns: 1fr; gap: 20px; }

  /* Section head smaller */
  .section-head { padding-bottom: 20px; }

  /* Contact rows: stack label above value */
  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
  .contact-row .ext { display: none; }
  .contact-cta { font-size: clamp(28px, 6vw, 40px); }
  .contact-map { min-height: 360px; }

  /* Services rail: smaller cards */
  .service-card { flex: 0 0 78vw; min-height: 480px; }
  .services-rail { gap: 16px; }
  .rail-controls { justify-content: center; }
  .services-rail > .spacer-end { display: none; }

  /* Stats head row */
  .stats-head { margin-bottom: 40px; }
  .stat .num { font-size: clamp(44px, 11vw, 72px); }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .header { height: 64px; }
  .hero { padding-top: 64px; }
  .hero-inner { min-height: calc(100vh - 64px); padding: 24px 20px 32px !important; }
  .brand-mark { height: 32px; }

  .hero-title,
  .hero-title[style] { font-size: clamp(36px, 10vw, 52px); line-height: 1.0; }
  .hero-top { font-size: 9.5px; }
  .hero-top .col strong { font-size: 9.5px; }

  .stats { padding: 64px 0 72px; }
  .stats-grid { grid-template-columns: 1fr; row-gap: 0; }
  .stat {
    border-left: 0 !important;
    padding-left: 0 !important;
    padding-top: 28px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
    gap: 12px;
  }
  .stat:first-child { border-top: 0; padding-top: 0; }
  .stat:last-child { padding-bottom: 0; }
  .stat .num { font-size: clamp(48px, 14vw, 80px); }

  .footer { padding: 72px 0 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-mono-row { flex-wrap: wrap; gap: 16px; }

  .modal-body { padding: 32px 20px 48px; }
  .modal-head { padding: 16px 20px; }
  .modal h2 { font-size: clamp(26px, 7vw, 36px); }
  .modal-content .features li { grid-template-columns: 44px 1fr; gap: 12px; }

  .service-card { flex: 0 0 84vw; min-height: 460px; }
  .service-card .sc-body { padding: 22px 22px 22px; }
  .service-card .sc-title { font-size: 19px; }

  .rail-controls { padding: 0 var(--gutter); }
  .rail-btn { width: 44px; height: 44px; }

  /* Section paddings tighter */
  .section { padding: 64px 0; }
  .services { padding: 80px 0 64px; }

  /* About visual aspect a bit shorter */
  .about-visual { aspect-ratio: 4 / 3.2; }

  /* Hero btn group stacks better */
  .hero-actions .btn { padding: 12px 16px; font-size: 11px; }

  /* Mobile menu — slightly smaller labels on tiny screens */
  .mm-nav a { padding: 18px 0; grid-template-columns: 44px 1fr; gap: 14px; }
  .mm-nav .mm-label { font-size: clamp(26px, 8vw, 34px); }
  .mobile-menu-inner { padding: 88px var(--gutter) 28px; }
}

/* Notch / iOS safe area */
@supports (padding: max(0px)) {
  .header-inner { padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); }
  .mobile-menu-inner {
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }
}

/* =========================================================
   CUSTOM PRELOADER (BLUEPRINT / TECHNICAL CAD STYLE)
   ========================================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#preloader.fade-out {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

/* CAD Grid Background for Preloader */
.bp-grid-preloader {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}
.bp-grid-preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 8px 8px;
}

/* Preloader Content Card */
.preloader-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Upper Metadata Row */
.preloader-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}
.preloader-meta #preloader-percent {
  color: var(--paper);
  font-weight: 500;
}

/* Preloader Logo Lines */
.preloader-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.logo-line-1 {
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}
.logo-line-2 {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: rgba(255, 255, 255, 0.8);
}
.logo-line-3 {
  font-family: var(--mono);
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: 1.2;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-top: 4px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 8px;
}

/* Horizontal Progress Bar */
.preloader-bar-wrap {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.preloader-bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 0%;
  background: var(--paper);
  transition: width 0.08s ease-out;
}

.preloader-hint {
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--paper);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
  margin: 6px 0;
}
.preloader-hint.visible {
  opacity: 0.8;
  transform: translateY(0);
  animation: preloader-blink 1.4s infinite;
}
@keyframes preloader-blink {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.95; }
}

/* Preloader Bottom Footer Annotations */
.preloader-foot {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
}

/* Language Switcher Styling */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.lang-btn {
  padding: 4px 6px;
  opacity: 0.55;
  transition: opacity .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
}
.lang-btn:hover, .lang-btn.active {
  opacity: 1;
}
.lang-sep {
  opacity: 0.35;
}
.header.is-dark .lang-sep {
  color: var(--paper);
}
.mm-lang-switcher {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.mm-lang-btn {
  font-family: var(--mono);
  font-size: 12px;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}


