:root {
  --em-cyan: #00d4ff;
  --em-teal: #14b8a6;
  --em-violet: #6b21ff;
  --em-magenta: #a855f7;
  --em-navy: #0b1230;
  --em-ink: #e8f4ff;
  --em-muted: rgba(232, 244, 255, 0.72);
  --em-panel: rgba(18, 28, 68, 0.88);
  --em-line: rgba(0, 212, 255, 0.28);
  --em-amber: #fbbf24;
  --em-danger: #fb7185;
  --em-ok: #34d399;
  --em-radius: 18px;
  --em-shadow: 0 18px 50px rgba(3, 8, 30, 0.45);
  --font-display: "Outfit", sans-serif;
  --font-body: "Sora", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--em-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0, 212, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 45% at 95% 5%, rgba(107, 33, 255, 0.28), transparent 50%),
    linear-gradient(165deg, #070b1c 0%, #101a3d 45%, #0a0f24 100%);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--em-cyan);
  text-decoration: none;
}

a:hover {
  color: #7ae8ff;
}

.em-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.em-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.em-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(8, 12, 32, 0.78);
  border-bottom: 1px solid rgba(0, 212, 255, 0.16);
}

.em-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}

.em-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.em-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.35);
}

.em-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.em-brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.em-brand-copy em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--em-muted);
}

.em-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--em-line);
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.08);
  color: var(--em-ink);
  cursor: pointer;
}

.em-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.em-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--em-muted);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.em-nav-link i {
  font-size: 0.85rem;
  opacity: 0.9;
}

.em-nav-link:hover,
.em-nav-link.is-active {
  color: #fff;
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.28);
}

.em-nav-link.em-nav-shop,
.em-nav-link.em-nav-shop:hover,
.em-nav-link.em-nav-shop.is-active {
  background: linear-gradient(120deg, var(--em-violet), #00b4e0);
  color: #fff !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(107, 33, 255, 0.35);
  padding: 11px 18px;
  font-weight: 700;
}

.em-nav-link.em-nav-shop:hover,
.em-nav-link.em-nav-shop.is-active {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.em-body {
  flex: 1;
  padding: 28px 0 56px;
}

.em-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--em-cyan);
  margin-bottom: 10px;
}

.em-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.em-lead {
  margin: 0 0 18px;
  color: var(--em-muted);
  font-size: 1.05rem;
  max-width: 54ch;
}

.em-panel {
  background: var(--em-panel);
  border: 1px solid var(--em-line);
  border-radius: var(--em-radius);
  box-shadow: var(--em-shadow);
  padding: 24px;
}

.em-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: 0.2s ease;
}

.em-btn-glow {
  background: linear-gradient(120deg, var(--em-cyan), var(--em-violet));
  color: #06101f;
}

.em-btn-glow:hover {
  filter: brightness(1.06);
  color: #06101f;
}

.em-btn-soft {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.em-btn-soft:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.em-play-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.em-play-row a img {
  height: 52px;
  width: auto;
  transition: transform 0.2s ease;
}

.em-play-row a:hover img {
  transform: translateY(-2px) scale(1.03);
}

/* Home: diagonal ribbon layout (differs from refs) */
.em-ribbon {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.em-ribbon-copy {
  position: relative;
  padding: 32px 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.14), transparent 42%),
    linear-gradient(210deg, rgba(107, 33, 255, 0.22), rgba(11, 18, 48, 0.92));
  border: 1px solid rgba(0, 212, 255, 0.25);
  overflow: hidden;
}

.em-ribbon-copy::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 220px;
  height: 220px;
  border-radius: 40% 60% 55% 45%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.35), transparent 70%);
  pointer-events: none;
}

.em-ribbon-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  transform: rotate(-1.5deg);
  box-shadow: var(--em-shadow);
}

.em-ribbon-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.em-stack {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.em-stack-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(14, 22, 54, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.em-stack-row:nth-child(even) {
  margin-left: 28px;
  border-color: rgba(0, 212, 255, 0.22);
}

.em-stack-row:nth-child(odd) {
  margin-right: 28px;
  border-color: rgba(168, 85, 247, 0.22);
}

.em-stack-row img {
  width: 96px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.em-stack-row h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.em-stack-row p {
  margin: 0;
  color: var(--em-muted);
  font-size: 0.95rem;
}

.em-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  white-space: nowrap;
  color: var(--em-cyan);
}

.em-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.em-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Crew page: vertical timeline */
.em-crew-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.em-crew-art {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--em-line);
  min-height: 280px;
}

.em-crew-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.em-timeline {
  display: grid;
  gap: 14px;
}

.em-edge {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--em-cyan);
}

.em-edge:nth-child(2) { border-left-color: var(--em-violet); }
.em-edge:nth-child(3) { border-left-color: var(--em-teal); }
.em-edge:nth-child(4) { border-left-color: var(--em-amber); }

.em-edge i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--em-cyan);
}

.em-edge h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.em-edge p {
  margin: 0;
  color: var(--em-muted);
  font-size: 0.92rem;
}

/* Ferret page: feature pins */
.em-ferret-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.em-ferret-art {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.em-pin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.em-pin {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(107, 33, 255, 0.18), rgba(14, 22, 54, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.em-pin i {
  color: var(--em-cyan);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.em-pin h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.em-pin p {
  margin: 0;
  color: var(--em-muted);
  font-size: 0.9rem;
}

/* Contact: icon cards */
.em-hello-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
}

.em-hello-cards {
  display: grid;
  gap: 12px;
}

.em-hello-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: rgba(14, 22, 54, 0.92);
  border: 1px solid rgba(0, 212, 255, 0.18);
}

.em-hello-card i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--em-cyan), var(--em-violet));
  color: #06101f;
  flex-shrink: 0;
}

.em-hello-card h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-family: var(--font-display);
}

.em-hello-card p,
.em-hello-card a {
  margin: 0;
  color: var(--em-muted);
  word-break: break-word;
}

.em-hello-art {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--em-line);
  min-height: 260px;
}

.em-hello-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

/* Shop */
.em-notes {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.em-notes li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(0, 212, 255, 0.22);
  color: var(--em-muted);
  font-size: 0.92rem;
}

.em-notes i {
  color: var(--em-cyan);
  margin-top: 3px;
}

.em-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(251, 113, 133, 0.12);
  border: 1px solid rgba(251, 113, 133, 0.35);
  color: #fecdd3;
}

.em-money-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.em-money-btn {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 700;
}

.em-money-btn.is-on {
  background: linear-gradient(120deg, var(--em-cyan), var(--em-violet));
  color: #06101f;
  border-color: transparent;
}

.em-shop-desk {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.em-pack-list {
  display: grid;
  gap: 10px;
}

.em-pack {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(14, 22, 54, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: 0.18s ease;
}

.em-pack:hover,
.em-pack.is-on {
  border-color: rgba(0, 212, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.25);
}

.em-pack img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.em-pack-title {
  font-weight: 700;
  font-family: var(--font-display);
}

.em-pack-price {
  font-weight: 800;
  color: var(--em-amber);
  white-space: nowrap;
}

.em-order-box {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(107, 33, 255, 0.18), transparent 40%),
    rgba(12, 18, 46, 0.96);
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.em-order-box h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.em-field {
  margin-bottom: 14px;
}

.em-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--em-muted);
}

.em-field input[type="text"],
.em-field input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font: inherit;
}

.em-field input:focus {
  outline: none;
  border-color: var(--em-cyan);
}

.em-picked {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.em-picked-price {
  color: var(--em-amber);
  font-weight: 800;
}

.em-pay-list {
  display: grid;
  gap: 8px;
}

.em-pay {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
}

.em-pay.is-on {
  border-color: var(--em-cyan);
  background: rgba(0, 212, 255, 0.1);
}

.em-pay input {
  accent-color: var(--em-cyan);
}

.em-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--em-muted);
}

.em-agree input {
  margin-top: 3px;
}

.em-err {
  display: block;
  min-height: 1.1em;
  margin-top: 4px;
  color: var(--em-danger);
  font-size: 0.82rem;
}

.em-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.em-load,
.em-empty {
  padding: 18px;
  text-align: center;
  color: var(--em-muted);
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

/* Confirm / result */
.em-invoice,
.em-result {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 24px;
  border-radius: 24px;
  background: var(--em-panel);
  border: 1px solid var(--em-line);
}

.em-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  text-align: left;
}

.em-table th,
.em-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.em-table th {
  width: 38%;
  color: var(--em-muted);
  font-weight: 600;
}

.em-total {
  color: var(--em-amber);
  font-weight: 800;
}

.em-count {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--em-cyan);
  margin: 8px 0 18px;
}

.em-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}

.em-result i {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.em-result.ok i { color: var(--em-ok); }
.em-result.bad i { color: var(--em-danger); }

.em-foot {
  position: relative;
  margin-top: auto;
  overflow: hidden;
  border-top: 1px solid rgba(0, 212, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(12, 20, 52, 0.92), rgba(5, 8, 22, 0.98));
  padding: 36px 0 20px;
}

.em-foot-glow {
  position: absolute;
  inset: -40% auto auto 50%;
  width: 420px;
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(107, 33, 255, 0.28), transparent 70%);
  pointer-events: none;
}

.em-foot-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.em-foot-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.em-foot-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(0, 212, 255, 0.28), 0 10px 24px rgba(0, 0, 0, 0.35);
}

.em-foot-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.em-foot-game {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #06101f;
  background: linear-gradient(120deg, var(--em-cyan), #a78bfa);
}

.em-foot-shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 800;
  color: #fff !important;
  background: linear-gradient(120deg, var(--em-violet), #00b4e0);
  box-shadow: 0 10px 28px rgba(107, 33, 255, 0.35);
  transition: 0.2s ease;
}

.em-foot-shop:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: #fff !important;
}

.em-foot-cols {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.em-foot-col h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--em-cyan);
}

.em-foot-col nav {
  display: grid;
  gap: 8px;
}

.em-foot-col nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--em-muted);
  font-size: 0.92rem;
  width: fit-content;
}

.em-foot-col nav a i {
  width: 1rem;
  opacity: 0.75;
  font-size: 0.8rem;
}

.em-foot-col nav a:hover {
  color: #fff;
}

.em-foot-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.em-foot-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--em-muted);
  font-size: 0.9rem;
}

.em-foot-contact i {
  margin-top: 3px;
  color: var(--em-cyan);
  width: 1rem;
  text-align: center;
}

.em-foot-contact a {
  color: var(--em-muted);
  word-break: break-word;
}

.em-foot-contact a:hover {
  color: var(--em-cyan);
}

.em-foot-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  padding-top: 16px;
  border-top: 1px dashed rgba(0, 212, 255, 0.2);
}

.em-foot-copy,
.em-foot-tag {
  margin: 0;
  color: rgba(232, 244, 255, 0.48);
  font-size: 0.84rem;
}

.em-foot-tag {
  font-style: italic;
}

@media (max-width: 860px) {
  .em-foot-cols {
    grid-template-columns: 1fr 1fr;
  }

  .em-foot-col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .em-foot-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .em-foot-cols {
    grid-template-columns: 1fr;
  }

  .em-foot-col:last-child {
    grid-column: auto;
  }

  .em-foot-bottom {
    flex-direction: column;
  }
}

/* Per-page skin accents */
.em-skin-crew .em-nav-crew .em-tone-violet,
.em-skin-ferret .em-nav-ferret .em-tone-teal,
.em-skin-contact .em-nav-contact .em-tone-slate,
.em-skin-home .em-nav-home .em-tone-cyan {
  color: #fff;
}

@media (max-width: 960px) {
  .em-ribbon,
  .em-crew-band,
  .em-ferret-top,
  .em-hello-layout,
  .em-shop-desk {
    grid-template-columns: 1fr;
  }

  .em-stack-row,
  .em-stack-row:nth-child(even),
  .em-stack-row:nth-child(odd) {
    margin: 0;
    grid-template-columns: 84px 1fr;
  }

  .em-stack-row .em-more {
    grid-column: 2;
  }

  .em-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .em-order-box {
    position: static;
  }

  .em-ribbon-visual {
    transform: none;
  }
}

@media (max-width: 760px) {
  .em-toggle {
    display: inline-grid;
    place-items: center;
  }

  .em-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    background: rgba(10, 16, 40, 0.98);
    border: 1px solid var(--em-line);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--em-shadow);
  }

  .em-nav.is-open {
    display: block;
  }

  .em-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .em-nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .em-bar {
    position: relative;
  }

  .em-pin-grid {
    grid-template-columns: 1fr;
  }
}
