@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Orbitron:wght@600;700&display=swap");

:root {
  --bg: #05060a;
  --bg2: #0b0d14;
  --card: #12151f;
  --card2: #181c2a;
  --line: rgba(255, 255, 255, 0.09);
  --txt: #f3f5fb;
  --muted: #9aa3b8;
  --cyan: #00c2ff;
  --magenta: #c026ff;
  --silver: #e8eef8;
  --hero: url("../assets/hero.jpg");
  --accent: #00c2ff;
  --accent2: #c026ff;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
html, body { margin: 0; background: var(--bg); color: var(--txt); }
body {
  font-family: Manrope, Segoe UI, system-ui, sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(1180px, calc(100% - 2.4rem)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 10, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  min-height: 72px;
}
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 194, 255, 0.4);
  background: rgba(0, 194, 255, 0.08);
  color: var(--silver);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.brand img {
  object-fit: contain;
  background: transparent;
  flex-shrink: 0;
}
.brand-mark {
  width: 58px;
  height: 58px;
}
.brand-word {
  height: 30px;
  width: auto;
  max-width: min(210px, 46vw);
}
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.wordmark b {
  font-family: Orbitron, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: #f4f7ff;
}
.wordmark b span {
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wordmark small {
  margin-top: 0.28rem;
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  color: #b7c0d4;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}
.nav a {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid transparent;
}
.nav a:hover,
.nav a.is-active {
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.hero {
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: clamp(2rem, 5vw, 4.2rem) 0;
  background:
    linear-gradient(115deg, rgba(5, 6, 10, 0.82) 0%, rgba(5, 6, 10, 0.28) 48%, rgba(5, 6, 10, 0.9) 100%),
    linear-gradient(180deg, transparent 35%, #05060a 100%),
    var(--hero) center/cover no-repeat;
}
.kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(0, 194, 255, 0.35);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 0 0.75rem;
  font-family: Orbitron, sans-serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.02;
  background: linear-gradient(90deg, #fff 40%, var(--cyan) 72%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { max-width: 36rem; color: #c9d0e0; margin: 0 0 1.2rem; }
.hero-logo {
  width: 148px;
  height: 148px;
  object-fit: contain;
  margin-bottom: 0.9rem;
  filter: drop-shadow(0 8px 24px rgba(0, 194, 255, 0.18));
}
.page-hero {
  padding: 2.4rem 0 2rem;
  background:
    radial-gradient(circle at 88% 0%, color-mix(in srgb, var(--accent2) 28%, transparent), transparent 34%),
    radial-gradient(circle at 8% 100%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 32%),
    linear-gradient(180deg, #0b0e18 0%, #05060a 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: center;
}
.page-hero-art {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 18px 40px rgba(0,0,0,0.35);
}
.page-hero .kicker { color: var(--accent); border-color: color-mix(in srgb, var(--accent) 40%, transparent); }
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.highlight {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--card2), var(--card));
  position: relative;
  overflow: hidden;
}
.highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.highlight {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.highlight:hover,
.highlight.is-on {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
}
.highlight.is-on {
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 16%, var(--card2)), var(--card));
}
.highlight strong { display: block; margin-bottom: 0.3rem; }
.highlight p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.filter-note { margin: 0.7rem 0 0; }
.filter-note a { color: var(--accent); font-weight: 700; }
.page-hero h2 {
  margin: 0;
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.spacer { height: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  border-radius: 10px;
  font-weight: 800;
  color: #fff;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.btn:hover { filter: brightness(1.08); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--silver);
}

.section { padding: clamp(2rem, 4vw, 3.4rem) 0; }
.section h2 {
  margin: 0;
  font-family: Orbitron, sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sub { margin: 0.35rem 0 0; color: var(--muted); }

.cats, .grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.15rem;
}
.cats { grid-template-columns: repeat(5, 1fr); }
.grid { grid-template-columns: repeat(3, 1fr); }

.cat, .card {
  background: linear-gradient(160deg, var(--card2), var(--card));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  color: var(--txt);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.cat { position: relative; min-height: 132px; padding: 1.1rem; }
.cat::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.32), transparent 70%);
}
.cat.theme-xbox::before { background: radial-gradient(circle, rgba(155, 240, 11, 0.38), transparent 70%); }
.cat.theme-playstation::before { background: radial-gradient(circle, rgba(46, 107, 255, 0.42), transparent 70%); }
.cat.theme-esports::before { background: radial-gradient(circle, rgba(192, 38, 255, 0.42), transparent 70%); }
.cat.theme-tech::before { background: radial-gradient(circle, rgba(245, 197, 24, 0.38), transparent 70%); }
body[data-theme="xbox"] .gallery { grid-template-columns: 1.4fr 1fr; }
body[data-theme="playstation"] .gallery { grid-template-columns: 1fr 1fr; }
body[data-theme="esports"] .page-hero-inner { grid-template-columns: 0.85fr 1.15fr; }
body[data-theme="tech"] .highlights { grid-template-columns: 1fr 1fr 1fr; }
.cat strong, .cat span { position: relative; z-index: 1; }
.cat strong { display: block; margin-bottom: 0.35rem; }
.cat span { color: var(--muted); font-size: 0.88rem; }
.cat:hover, .card:hover { transform: translateY(-3px); border-color: rgba(0, 194, 255, 0.4); }

.thumb {
  aspect-ratio: 16 / 9;
  background: #0e1118;
  overflow: hidden;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body { padding: 1rem 1.05rem 1.15rem; }
.tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.card h3 { margin: 0 0 0.4rem; font-size: 1.02rem; line-height: 1.3; }
.card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.article { padding: 2rem 0 4rem; }
.article-wrap { width: min(820px, calc(100% - 2.4rem)); margin-inline: auto; }
.article .cover {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  margin: 1rem 0 1.4rem;
  background: #111;
}
.article .cover img { width: 100%; height: 100%; object-fit: cover; }
.article h1 { margin: 0.4rem 0 0.8rem; font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.15; }
.article-content { color: #d7dce8; font-size: 1.05rem; line-height: 1.75; }
.article-content h2,
.article-content h2.article-title,
.article-content h3,
.article-content h3.article-sub,
.article-content .article-sub,
.article-content .article-title {
  color: #ffffff !important;
  margin: 1.5rem 0 0.55rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.article-content h2,
.article-content h2.article-title {
  font-size: 1.3rem;
}
.article-content h3,
.article-content h3.article-sub,
.article-content .article-sub {
  font-size: 1.14rem;
}
.article-content h2 *,
.article-content h3 *,
.article-content .article-sub *,
.article-content .article-title * {
  color: #ffffff !important;
}
.article-content .article-meta {
  margin: 0.2rem 0 0.55rem;
  color: #b7bfcf;
  font-size: 0.95rem;
}
.article-content .article-meta strong { color: #ffffff; }
.article-content p { margin: 0 0 1rem; color: #c6ccd8; }
.article-content strong { color: #fff; font-weight: 800; }
.article-content ul.article-list,
.article-content ul {
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
  color: #d7dce8;
}
.article-content li { margin: 0.35rem 0; }
.article-content a {
  color: #5ee0ff;
  text-decoration: underline;
  word-break: break-word;
}
.article-content a:hover { color: #fff; }
.article-content figure { margin: 1.1rem 0 1.3rem; }
.article-content figcaption {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.article-content img {
  display: block;
  width: auto;
  max-width: min(100%, 360px);
  max-height: 420px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  margin: 1rem auto;
  background: #0a0c12;
}
.article-content figure img { margin: 0 auto; }
.article-back { margin-top: 2rem; }

.form {
  display: grid;
  gap: 0.85rem;
  max-width: 720px;
}
label { font-size: 0.88rem; font-weight: 700; color: var(--silver); }
input, select, textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--txt);
  font: inherit;
}
textarea { min-height: 180px; resize: vertical; }
#body, #about-body {
  min-height: 420px;
  line-height: 1.55;
  font-size: 1rem;
}
.admin-body-label { display: grid; gap: 0.3rem; }
.inline-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.55rem;
  margin-top: 0.75rem;
}
.inline-thumb {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #0a0c12;
}
.inline-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  background: #0a0c12;
}
.inline-thumb span {
  display: block;
  padding: 0.35rem 0.45rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}
.inline-remove {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
}
.preview-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  background: #111;
  display: none;
}
.preview-img.is-on { display: block; }
.publish-layout { max-width: 760px; }
.steps {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.steps li {
  margin: 0;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
}
.steps strong { display: block; margin-bottom: 0.25rem; }
.steps span { color: var(--muted); font-size: 0.82rem; }
.publish-card {
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--card2), var(--card));
}
#status a {
  color: var(--cyan);
  font-weight: 800;
  margin-left: 0.4rem;
}
.admin-body { min-height: 100vh; background: #07080e; }
.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 76px;
}
.admin-top-actions { display: flex; gap: 0.5rem; }
.admin-main { width: min(1100px, calc(100% - 2rem)); margin: 0 auto 3rem; }
.admin-kicker {
  margin: 0 0 0.35rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.admin-main h1 { margin: 0 0 0.4rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.admin-card {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--card2), var(--card));
}
.admin-login { max-width: 420px; margin-top: 2rem; }
.admin-login .btn { margin-top: 0.7rem; }
.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin: 0.4rem 0 1rem;
  flex-wrap: wrap;
}
.admin-tabs { display: flex; gap: 0.4rem; }
.admin-tab, .admin-chip {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--silver);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.admin-tab.is-on, .admin-chip.is-on {
  border-color: rgba(0, 194, 255, 0.5);
  background: rgba(0, 194, 255, 0.12);
  color: #fff;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 0.9rem;
  align-items: start;
}
.admin-label { display: block; margin-bottom: 0.4rem; font-size: 0.88rem; font-weight: 700; }
.admin-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.admin-drop {
  display: grid;
  place-items: center;
  gap: 0.25rem;
  min-height: 132px;
  margin-bottom: 0.6rem;
  padding: 1rem;
  border: 1px dashed rgba(0, 194, 255, 0.35);
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
}
.admin-inline-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 0.2rem;
  padding: 0.7rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 194, 255, 0.35);
  background: rgba(0, 194, 255, 0.08);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.admin-hint { margin: 0.45rem 0 0; color: var(--muted); font-size: 0.84rem; font-weight: 500; }
.admin-drop span { color: var(--muted); font-size: 0.86rem; font-weight: 500; }
.admin-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.admin-drop.is-on { background: rgba(0, 194, 255, 0.08); }
.admin-help h2 { margin: 0 0 0.7rem; font-size: 1rem; }
.admin-help ol { margin: 0 0 0.8rem; padding-left: 1.1rem; color: var(--silver); }
.admin-help p { margin: 0; color: var(--muted); }
.admin-list { display: grid; gap: 0.65rem; margin-top: 0.8rem; }
.admin-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.45rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.admin-item img {
  width: 92px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}
.admin-item b { display: block; }
.admin-item small { color: var(--cyan); font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}
.admin-item-actions .btn {
  padding: 0.45rem 0.7rem;
  font-size: 0.82rem;
}
@media (max-width: 700px) {
  .admin-item { grid-template-columns: 92px 1fr; }
  .admin-item-actions { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .admin-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}
.notice {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.25);
  color: var(--muted);
}
.ok { color: #86efac; }
.err { color: #fca5a5; }
.empty { color: var(--muted); padding: 1rem 0; }

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.4rem;
  align-items: center;
}
.about img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.about-page {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
}
.about-logo {
  width: min(240px, 100%);
  height: auto;
  object-fit: contain;
  position: sticky;
  top: 1.2rem;
}
.about-h {
  margin: 1.8rem 0 0.7rem;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.35;
}
.about-h:first-child { margin-top: 0; font-size: 1.4rem; }
.about-p {
  margin: 0 0 1rem;
  color: #d7dce8;
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-list {
  margin: 0 0 1.2rem;
  padding: 0 0 0 0.2rem;
  list-style: none;
}
.about-list li {
  margin: 0.35rem 0;
  color: #d7dce8;
  line-height: 1.55;
}
.grid-latest .card:first-child { grid-column: span 2; }
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1.15rem;
}
a.service { color: inherit; text-decoration: none; }
a.service:hover { border-color: color-mix(in srgb, var(--accent) 45%, transparent); transform: translateY(-2px); }
.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.service img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.service p { margin: 0; padding: 1rem; color: var(--muted); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}
.cta-box {
  margin: 0 auto;
  width: min(1180px, calc(100% - 2.4rem));
  padding: 1.4rem 1.3rem;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent2) 35%, transparent);
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 16%, transparent), color-mix(in srgb, var(--accent2) 16%, transparent));
}
.cta-box h2 { margin: 0 0 0.4rem; }
.cta-box p { margin: 0 0 1rem; color: var(--muted); }

@media (max-width: 980px) {
  .about, .about-page, .services, .gallery, .page-hero-inner, .highlights { grid-template-columns: 1fr; }
  .grid-latest .card:first-child { grid-column: auto; }
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 1.2rem 2rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.9;
}
.site-footer a {
  color: var(--silver);
  margin: 0 0.15rem;
}
.site-footer a:hover { color: var(--cyan); }
.site-footer b { color: var(--silver); }
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}
.social svg { width: 18px; height: 18px; display: block; }
.social:hover {
  color: #fff;
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: rgba(0, 194, 255, 0.1);
}

@media (max-width: 980px) {
  .cats, .grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 0.6rem 0; }
}
@media (max-width: 860px) {
  .menu-btn { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.6rem;
  }
  .nav.is-open { display: flex; }
  .nav a { text-align: center; }
}
@media (max-width: 560px) {
  .cats, .grid { grid-template-columns: 1fr; }
  .brand-word { display: none; }
}
