:root {
  color-scheme: dark;
  --ink: #f4f6f8;
  --muted: #9ba9b8;
  --line: rgba(255, 255, 255, 0.11);
  --surface: rgba(15, 24, 37, 0.82);
  --blue: #58c6ef;
  --orange: #ff6b35;
  --gold: #e8bd65;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #050a11;
  color: var(--ink);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.direction-icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 5%, rgba(40, 123, 169, 0.2), transparent 29rem),
    radial-gradient(circle at 10% 30%, rgba(31, 73, 108, 0.12), transparent 32rem),
    linear-gradient(180deg, #08111d 0%, #050a11 48%, #070c13 100%);
}

.site-shell::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 42%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  height: 96px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.group-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  width: max-content;
}

.group-mark {
  display: block;
  width: 68px;
  height: 34px;
}

.group-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 11px rgba(18, 139, 215, .2));
  transition: filter .3s ease, transform .3s ease;
}

.group-brand:hover .group-mark img {
  filter: drop-shadow(0 7px 16px rgba(33, 174, 255, .35));
  transform: translateY(-1px);
}

.group-name {
  color: #d7e0e9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  color: #b9c4cf;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav a,
.header-cta {
  transition: color .25s ease;
}

.site-nav a:hover,
.header-cta:hover {
  color: #fff;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  color: #c6d1dc;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-cta svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, .68fr);
  width: min(calc(100% - 48px), var(--max));
  min-height: 720px;
  margin: 0 auto;
  padding: 110px 0 44px;
}

.hero-copy {
  align-self: start;
  max-width: 850px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: #89a2b8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--blue);
}

.hero h1,
.section-heading h2,
.group-statement h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(72px, 8.1vw, 124px);
  line-height: .82;
}

.hero h1 em,
.group-statement h2 em {
  color: #72ccec;
  font-weight: 400;
}

.hero-intro {
  max-width: 530px;
  margin: 42px 0 36px;
  color: #aebbc8;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 350;
  line-height: 1.55;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-link span {
  color: var(--blue);
  font-size: 19px;
  transition: transform .25s ease;
}

.hero-link:hover span {
  transform: translate(4px, 4px);
}

.hero-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  gap: 54px;
  padding-left: 40px;
}

.portfolio-orbit {
  --sweep-angle: 0deg;
  --sweep-color: #e53935;
  position: relative;
  display: grid;
  place-items: center;
  width: 300px;
  height: 300px;
  isolation: isolate;
}

.portfolio-orbit::before {
  position: absolute;
  inset: 20%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 147, 191, .17), transparent 70%);
  filter: blur(7px);
  content: "";
}

.orbit-track {
  position: absolute;
  border: 1px solid rgba(115, 204, 236, .28);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-track--outer {
  inset: 5px;
  border-top-color: rgba(115, 204, 236, .78);
  border-left-color: rgba(115, 204, 236, .06);
  animation: spin 24s linear infinite;
}

.orbit-track--middle {
  inset: 37px;
  border-style: dashed;
  animation: spin 34s linear infinite reverse;
}

.orbit-track--inner {
  inset: 75px;
  border-right-color: rgba(255,255,255,.7);
  animation: spin 18s linear infinite;
}

.orbit-sweep {
  position: absolute;
  bottom: 50%;
  left: calc(50% - .5px);
  z-index: 1;
  width: 1px;
  height: 47%;
  pointer-events: none;
  transform: rotate(var(--sweep-angle));
  transform-origin: 50% 100%;
  transition: transform .9s cubic-bezier(.45,.05,.24,1);
}

.orbit-sweep::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(114,204,236,0), color-mix(in srgb, var(--sweep-color) 52%, transparent) 45%, var(--sweep-color));
  box-shadow: 0 0 12px color-mix(in srgb, var(--sweep-color) 35%, transparent);
  content: "";
}

.orbit-sweep::after {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: var(--sweep-color);
  box-shadow: 0 0 9px var(--sweep-color), 0 0 22px color-mix(in srgb, var(--sweep-color) 72%, transparent);
  content: "";
}

.portfolio-orbit.is-sweeping .orbit-sweep::after {
  animation: sweep-pulse .9s ease-in-out infinite;
}

.orbit-node {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 3;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 2px solid #08111d;
  border-radius: 50%;
  outline: 0;
  background: var(--node-color);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--node-color) 45%, transparent), 0 0 16px color-mix(in srgb, var(--node-color) 48%, transparent);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.2,.7,.2,1);
}

.orbit-node--ilektroxoros {
  --x: 50%;
  --y: 3%;
  --node-color: #e53935;
}

.orbit-node--electrospace {
  --x: 86%;
  --y: 19%;
  --node-color: #f4db1f;
}

.orbit-node--luxsuites {
  --x: 96%;
  --y: 53%;
  --node-color: #a9b7c4;
}

.orbit-node--luxrooms {
  --x: 80%;
  --y: 86%;
  --node-color: #ddc99e;
}

.orbit-node--premiumsuites {
  --x: 43%;
  --y: 97%;
  --node-color: #e2b54f;
}

.orbit-node--ilxc {
  --x: 10%;
  --y: 77%;
  --node-color: #4fc0ed;
}

.orbit-node--ilxsoft {
  --x: 4%;
  --y: 39%;
  --node-color: #ff6b35;
}

.orbit-node::after {
  position: absolute;
  inset: -8px;
  border: 1px solid color-mix(in srgb, var(--node-color) 48%, transparent);
  border-radius: 50%;
  content: "";
  opacity: 0;
  transform: scale(.55);
  transition: opacity .3s ease, transform .3s ease;
}

.orbit-node:hover,
.orbit-node:focus-visible,
.orbit-node.is-active,
.orbit-node.is-target {
  box-shadow: 0 0 0 2px rgba(8,17,29,.9), 0 0 0 4px color-mix(in srgb, var(--node-color) 42%, transparent), 0 0 25px color-mix(in srgb, var(--node-color) 75%, transparent);
  transform: translate(-50%, -50%) scale(1.38);
}

.orbit-node:hover::after,
.orbit-node:focus-visible::after,
.orbit-node.is-active::after,
.orbit-node.is-target::after {
  opacity: 1;
  transform: scale(1);
}

.orbit-node.is-active::after {
  animation: node-pulse 1.8s ease-out infinite;
}

.orbit-node.is-target::after {
  animation: target-pulse .9s ease-in-out infinite;
}

.orbit-feature {
  position: relative;
  z-index: 2;
  display: flex;
  width: 146px;
  height: 146px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 25%, rgba(35,78,108,.95), rgba(7,16,27,.98) 72%);
  box-shadow: 0 20px 48px rgba(0,0,0,.3), inset 0 0 36px rgba(72,178,221,.08);
  text-align: center;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.orbit-feature:hover,
.orbit-feature:focus-visible {
  border-color: rgba(114,204,236,.62);
  box-shadow: 0 24px 58px rgba(0,0,0,.38), 0 0 30px rgba(72,178,221,.12);
  outline: 0;
  transform: scale(1.035);
}

.orbit-feature-sector {
  color: #72ccec;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.orbit-feature-logo {
  display: grid;
  width: 100%;
  min-height: 42px;
  place-items: center;
  margin: 8px 0 5px;
}

.orbit-feature-logo img {
  display: block;
  max-width: 100px;
  max-height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(23,136,210,.24));
}

.orbit-feature-name {
  max-width: 110px;
  overflow: hidden;
  color: #dce6ee;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orbit-feature-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 7px;
  color: #718ba0;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.orbit-feature-action > span {
  display: inline-flex;
}

.orbit-feature.is-changing > * {
  opacity: 0;
  transform: translateY(4px);
}

.orbit-feature > * {
  transition: opacity .18s ease, transform .18s ease;
}

.orbit-hint {
  position: absolute;
  bottom: -18px;
  color: #577084;
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line);
}

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

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

.summary-stats dt {
  margin-bottom: 7px;
  color: #e8edf2;
  font-size: 22px;
  font-weight: 400;
}

.summary-stats dd {
  margin: 0;
  color: #7f91a3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.sector-line {
  display: flex;
  grid-column: 1 / -1;
  align-self: end;
  justify-content: space-between;
  margin-top: 80px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #65798c;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .28em;
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes node-pulse {
  0% { opacity: .8; transform: scale(.7); }
  75%, 100% { opacity: 0; transform: scale(1.7); }
}

@keyframes target-pulse {
  0%, 100% { opacity: .35; transform: scale(.78); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes sweep-pulse {
  0%, 100% { transform: scale(.78); }
  50% { transform: scale(1.2); }
}

.companies {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 150px 0 130px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 110px;
}

.section-heading h2 {
  font-size: clamp(52px, 6vw, 82px);
  line-height: .98;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: #98a8b8;
  font-size: 17px;
  line-height: 1.75;
}

.portfolio-group {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 96px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.portfolio-label span {
  display: block;
  margin-bottom: 42px;
  color: #5f7a90;
  font-family: Georgia, serif;
  font-size: 20px;
}

.portfolio-label h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.portfolio-label p {
  max-width: 165px;
  margin: 0;
  color: #708293;
  font-size: 12px;
  line-height: 1.6;
}

.company-grid {
  display: grid;
  gap: 16px;
}

.commerce-grid {
  grid-template-columns: 1.25fr .75fr;
}

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

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

.company-card {
  --card-accent: #6acff1;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 350px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--card-accent) 18%, transparent), transparent 42%),
    linear-gradient(145deg, rgba(22,33,48,.96), rgba(10,17,27,.97));
  box-shadow: 0 18px 55px rgba(0,0,0,.13);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, box-shadow .35s ease;
}

.company-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.045), transparent 70%);
  content: "";
  transform: translateX(-100%);
  transition: transform .75s ease;
}

.company-card:hover {
  z-index: 2;
  border-color: color-mix(in srgb, var(--card-accent) 52%, rgba(255,255,255,.15));
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  transform: translateY(-7px);
}

.company-card:hover::before {
  transform: translateX(100%);
}

.card-topline,
.card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.card-topline {
  color: #8194a6;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.card-topline span:last-child {
  color: color-mix(in srgb, var(--card-accent) 80%, white);
  letter-spacing: .07em;
  text-transform: lowercase;
}

.logo-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 125px;
  margin: 20px 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(2,7,13,.25);
}

.logo-stage img {
  display: block;
  max-width: min(100%, 250px);
  max-height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.24));
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}

.company-card:hover .logo-stage img {
  transform: scale(1.04);
}

.logo-stage--wide img {
  width: min(100%, 460px);
  max-width: 460px;
  max-height: 72px;
}

.logo-stage--construction img {
  max-height: 104px;
}

.logo-stage--software img {
  max-height: 108px;
}

.card-footer {
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.card-footer p {
  max-width: 440px;
  margin: 0;
  color: #a9b6c3;
  font-size: 13px;
  line-height: 1.62;
}

.card-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  color: var(--card-accent);
  font-size: 18px;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.company-card:hover .card-arrow {
  background: var(--card-accent);
  color: #08111b;
  transform: rotate(45deg);
}

.card-ilektroxoros { --card-accent: #e53935; }
.card-electrospace { --card-accent: #f4db1f; }
.card-luxsuites { --card-accent: #a9b7c4; }
.card-luxrooms { --card-accent: #ddc99e; }
.card-premiumsuites { --card-accent: #e2b54f; }
.card-ilxc { --card-accent: #4fc0ed; }
.card-ilxsoft { --card-accent: #ff6b35; }

.group-statement {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 130px 0 150px;
  border-top: 1px solid var(--line);
}

.statement-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 100px;
  align-items: end;
}

.group-statement h2 {
  max-width: 830px;
  font-size: clamp(50px, 6.3vw, 88px);
  line-height: 1;
}

.statement-copy {
  padding-bottom: 8px;
}

.statement-copy p {
  margin: 0 0 20px;
  color: #97a8b8;
  font-size: 16px;
  line-height: 1.75;
}

.statement-copy p:last-child {
  color: #d9e0e7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(calc(100% - 48px), var(--max));
  min-height: 120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: #64778a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr .55fr;
  }

  .hero-summary {
    padding-left: 10px;
  }

  .portfolio-orbit {
    width: 240px;
    height: 240px;
  }

  .orbit-track--inner {
    inset: 60px;
  }

  .orbit-feature {
    width: 124px;
    height: 124px;
    padding: 14px;
  }

  .orbit-feature-logo {
    min-height: 34px;
    margin: 5px 0 3px;
  }

  .orbit-feature-logo img {
    max-width: 78px;
    max-height: 32px;
  }

  .portfolio-group {
    grid-template-columns: 150px minmax(0, 1fr);
  }

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

  .hospitality-grid .company-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 82px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 84px 0 34px;
  }

  .hero h1 {
    font-size: clamp(62px, 17vw, 92px);
  }

  .hero-summary {
    margin-top: 100px;
    padding: 0;
  }

  .portfolio-orbit {
    width: 280px;
    height: 280px;
  }

  .orbit-track--inner {
    inset: 70px;
  }

  .orbit-feature {
    width: 140px;
    height: 140px;
    padding: 17px;
  }

  .orbit-feature-logo img {
    max-width: 90px;
    max-height: 38px;
  }

  .sector-line {
    flex-wrap: wrap;
    gap: 18px 30px;
  }

  .companies {
    padding: 110px 0 80px;
  }

  .section-heading,
  .statement-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .portfolio-group {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 70px;
  }

  .portfolio-label {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
  }

  .portfolio-label span {
    grid-row: 1 / 3;
    margin: 0;
  }

  .portfolio-label p {
    max-width: none;
  }

  .commerce-grid,
  .hospitality-grid,
  .build-grid {
    grid-template-columns: 1fr;
  }

  .hospitality-grid .company-card:last-child {
    grid-column: auto;
  }

  .company-card {
    min-height: 330px;
  }

  .group-statement {
    padding: 100px 0 110px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 28px 0;
  }

  .site-footer > p:first-of-type {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .companies,
  .group-statement,
  .site-footer {
    width: min(calc(100% - 30px), var(--max));
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta svg {
    width: 22px;
  }

  .hero {
    padding-top: 68px;
  }

  .eyebrow {
    margin-bottom: 24px;
    letter-spacing: .15em;
  }

  .hero h1 {
    font-size: clamp(56px, 17vw, 78px);
  }

  .hero-intro {
    margin-top: 32px;
    font-size: 18px;
  }

  .sector-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 70px;
  }

  .section-heading h2,
  .group-statement h2 {
    font-size: 48px;
  }

  .company-card {
    min-height: 350px;
    padding: 20px;
  }

  .card-topline span:first-child {
    max-width: 160px;
  }

  .card-footer p {
    max-width: calc(100% - 50px);
    font-size: 12px;
  }

  .logo-stage {
    min-height: 130px;
    margin: 16px 0;
  }

  .site-footer .group-name {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
