/* ============================================================
   Gen Y LED Display — stylesheet
   Concept: a screen switched on in a dark room.
   ============================================================ */

:root {
  --bg:        #0a0a0c;
  --panel:     rgba(20, 22, 28, 0.82);
  --panel-2:   #16191f;
  --line:      #23272f;
  --text:      #f5f5f7;
  --muted:     #8a8d97;
  --muted-2:   #5f636d;
  --accent:    #ec3f13;
  --accent-hi: #ff5b1a;
  --accent-dk: #b62f0c;
  --glow:      rgba(236,63,19,.35);
  --radius:    14px;
  --maxw:      1200px;
  --ff-display: "Space Grotesk", system-ui, sans-serif;
  --ff-body:    "Inter", system-ui, sans-serif;
}

html[lang="zh"] { --ff-display: "Noto Sans SC", "Space Grotesk", sans-serif; }
html[lang="zh"] body { font-family: "Noto Sans SC", "Inter", sans-serif; }

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

html { scroll-behavior: smooth; background: var(--bg); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  background: transparent;   /* let the living background canvas show through */
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* living background canvas — sits behind everything */
#bgCanvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  display: block;
}

/* subtle film grain / pixel texture overlay */
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.025) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: .6;
}

.eyebrow {
  font-family: var(--ff-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent-hi);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.section-lede {
  color: var(--muted);
  max-width: 46ch;
  margin-top: 1rem;
  font-size: 1.02rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--ff-display);
  font-weight: 600; font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-full { width: 100%; }
.btn-accent {
  background: linear-gradient(135deg, var(--accent-hi), var(--accent));
  color: #fff;
  box-shadow: 0 0 0 0 var(--glow);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -6px var(--glow);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-hi); }

/* ---------- header ---------- */
/* ---------- office locations top bar ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: rgba(6,6,8,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  font-size: .78rem;
}
.topbar-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 1.25rem;
  padding: .5rem clamp(1rem, 4vw, 2.5rem);
}
.topbar-label {
  font-family: var(--ff-display); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-hi); font-size: .68rem;
  white-space: nowrap; flex: none;
}
.topbar-locations {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 1.25rem; margin: 0; padding: 0;
}
.topbar-locations li {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--muted); white-space: nowrap;
}
.topbar-locations .pin { color: var(--accent); flex: none; }

.site-header {
  position: fixed; top: 37px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(10,10,12,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; }
.brand-mark {
  display: inline-flex; align-items: center;
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.25rem; letter-spacing: .02em;
  background: linear-gradient(135deg, var(--accent-hi), var(--accent-dk));
  color: #fff; padding: .2rem .55rem; border-radius: 8px;
  box-shadow: 0 2px 12px -2px var(--glow);
}
.brand-mark.small { font-size: 1.05rem; }
.brand-gen { }
.brand-y { margin-left: .28em; }
.brand-sub {
  font-family: var(--ff-display); font-weight: 500;
  font-size: .68rem; letter-spacing: .28em;
  color: var(--muted);
}

.main-nav { display: flex; gap: 1.75rem; margin-left: auto; }
.main-nav a {
  color: var(--muted); text-decoration: none;
  font-size: .92rem; font-weight: 500;
  transition: color .18s ease; position: relative;
}
.main-nav a:hover { color: var(--text); }

.header-right { display: flex; align-items: center; gap: 1rem; }

.lang-switch { display: flex; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; }
.lang-switch button {
  background: transparent; border: none; cursor: pointer;
  color: var(--muted); font-family: var(--ff-display);
  font-size: .8rem; font-weight: 600;
  padding: .4rem .75rem; transition: background .18s, color .18s;
}
.lang-switch button.active { background: var(--accent); color: #fff; }
.lang-switch button:not(.active):hover { color: var(--text); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
  margin-left: auto;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--text); transition: .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 1;
  min-height: auto;
  display: flex; align-items: center;
  padding: 9rem clamp(1rem, 4vw, 2.5rem) 4.5rem;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 40%, #000 30%, transparent 75%);
  opacity: .5;
}
.hero-glow {
  position: absolute; top: -10%; right: -5%;
  width: 55vw; height: 55vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, var(--glow), transparent 62%);
  filter: blur(30px); opacity: .8;
  animation: pulse 7s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:.55; transform: scale(1);} 50% { opacity:.9; transform: scale(1.08);} }

.hero-inner {
  position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-title {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: .98; letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}
.hero-lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 3.5rem;
  border-top: 1px solid var(--line); padding-top: 2rem;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--ff-display); font-size: 2rem; font-weight: 700;
  color: var(--text); line-height: 1;
}
.hero-stats span { color: var(--muted); font-size: .85rem; margin-top: .4rem; }

/* hero visual — floating product images with glow */
.hero-visual {
  position: relative; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-glow {
  position: absolute; inset: 8% 4%;
  background: radial-gradient(ellipse at 55% 45%, var(--glow), transparent 68%);
  filter: blur(36px); opacity: .85; z-index: 0;
}
.hero-img {
  position: absolute; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.8);
  object-fit: cover;
}
.hero-img-1 {
  z-index: 2; width: 58%; top: 2%; right: 2%;
  aspect-ratio: 4/3.4;
  animation: floatA 9s ease-in-out infinite;
}
.hero-img-2 {
  z-index: 1; width: 62%; bottom: 2%; left: 0;
  aspect-ratio: 2/1;
  opacity: .9;
  animation: floatB 11s ease-in-out infinite;
}
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }


/* ---------- sections ---------- */
.section {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 4vw, 2.5rem);
}
.section-head { margin-bottom: 3rem; }

/* ---------- filter bar ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }
.filter-btn {
  font-family: var(--ff-display); font-weight: 500; font-size: .9rem;
  padding: .55rem 1.2rem; border-radius: 100px;
  border: 1px solid var(--line); background: var(--panel);
  color: var(--muted); cursor: pointer;
  transition: all .18s ease;
}
.filter-btn:hover { color: var(--text); border-color: var(--muted-2); }
.filter-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ---------- product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}
.product-card {
  position: relative;
  background: var(--panel);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
  text-align: left;
  color: var(--text);       /* buttons don't inherit color — set it explicitly */
  font: inherit;            /* and reset button font too */
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px -20px var(--glow), 0 0 0 1px var(--accent-dk) inset;
}
.pc-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #000; }
.pc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
  filter: brightness(.82) saturate(1.05);
}
.product-card:hover .pc-media img { transform: scale(1.06); filter: brightness(1.05) saturate(1.15); }
.pc-cat {
  position: absolute; top: .8rem; left: .8rem; z-index: 2;
  font-family: var(--ff-display); font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); background: rgba(10,10,12,.65);
  backdrop-filter: blur(6px);
  padding: .3rem .6rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.12);
}
.pc-body { padding: 1.2rem 1.25rem 1.4rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.pc-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; letter-spacing: -.01em; color: var(--text); }
.pc-tag { color: #a7abb5; font-size: .88rem; }
.pc-view {
  margin-top: auto; padding-top: .8rem;
  font-family: var(--ff-display); font-size: .82rem; font-weight: 600;
  color: var(--accent-hi); display: inline-flex; align-items: center; gap: .35rem;
}
.pc-view::after { content: "→"; transition: transform .2s ease; }
.product-card:hover .pc-view::after { transform: translateX(4px); }

/* ---------- why ---------- */
.section-why { }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}
.why-card {
  background: var(--panel);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.6rem;
  transition: border-color .25s ease;
}
.why-card:hover { border-color: var(--muted-2); }
.why-num {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem;
  color: var(--accent); margin-bottom: 1.2rem;
  border: 1px solid var(--accent-dk); width: 2.4rem; height: 2.4rem;
  display: flex; align-items: center; justify-content: center; border-radius: 8px;
}
.why-card h3 { font-family: var(--ff-display); font-size: 1.15rem; margin-bottom: .6rem; }
.why-card p { color: var(--muted); font-size: .92rem; }

/* ---------- contact ---------- */
.section-contact { }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
  background: var(--panel);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(1.8rem, 4vw, 3.5rem);
}
.contact-copy .section-title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.contact-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-list li { display: flex; flex-direction: column; gap: .2rem; }
.ci-label {
  font-family: var(--ff-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2);
}
.contact-list a { color: var(--text); text-decoration: none; font-size: 1.05rem; transition: color .18s; }
.contact-list a:hover { color: var(--accent-hi); }

/* ---------- form ---------- */
.quote-form { display: flex; flex-direction: column; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  font-family: var(--ff-display); font-size: .78rem; font-weight: 500;
  letter-spacing: .04em; color: var(--muted);
}
.field input, .field select, .field textarea {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; padding: .8rem .9rem;
  color: var(--text); font-family: var(--ff-body); font-size: .95rem;
  transition: border-color .18s ease, box-shadow .18s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(236,63,19,.15);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a8d97' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { font-size: .9rem; min-height: 1.2em; }
.form-status.ok { color: #4ade80; }
.form-status.err { color: var(--accent-hi); }
.btn-accent:disabled { opacity: .6; cursor: wait; }

/* ---------- footer ---------- */
.site-footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line); margin-top: 2rem;
  padding: 3rem clamp(1rem, 4vw, 2.5rem) 2rem;
}
.footer-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; max-width: 34ch; }
.footer-brand p { color: var(--muted); font-size: .92rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a { color: var(--muted); text-decoration: none; transition: color .18s; }
.footer-contact a:hover { color: var(--accent-hi); }
.footer-legal {
  max-width: var(--maxw); margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  color: var(--muted-2); font-size: .82rem;
}

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,4,6,.82); backdrop-filter: blur(6px); }
.modal-panel {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: min(920px, 94vw); max-height: 90vh; overflow-y: auto;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 18px;
  animation: modalIn .3s cubic-bezier(.2,.7,.3,1);
}
@keyframes modalIn { from { opacity: 0; transform: translate(-50%, -46%) scale(.98); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
.modal-close {
  position: sticky; top: 0; float: right;
  margin: .8rem .8rem -3rem 0; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10,10,12,.7); border: 1px solid var(--line);
  color: var(--text); font-size: 1.5rem; line-height: 1; cursor: pointer;
  transition: background .18s, border-color .18s;
}
.modal-close:hover { background: var(--accent); border-color: var(--accent); }
.modal-body { padding: 0 0 2rem; }

.m-hero { position: relative; aspect-ratio: 16/8; overflow: hidden; background: #000; border-radius: 18px 18px 0 0; }
.m-hero img { width: 100%; height: 100%; object-fit: cover; }
.m-hero-grad { position: absolute; inset: 0; background: linear-gradient(to top, var(--panel) 2%, transparent 45%); }
.m-content { padding: 0 clamp(1.5rem, 4vw, 2.5rem); margin-top: -2.5rem; position: relative; }
.m-cat {
  font-family: var(--ff-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent-hi);
}
.m-title { font-family: var(--ff-display); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; letter-spacing: -.02em; margin: .4rem 0; }
.m-tag { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.m-summary { font-size: 1rem; line-height: 1.7; max-width: 66ch; color: #d6d8dd; }

.m-highlights { list-style: none; margin: 1.8rem 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: .7rem; }
.m-highlights li {
  display: flex; gap: .6rem; align-items: flex-start;
  font-size: .92rem; color: #d6d8dd;
  background: var(--bg); border: 1px solid var(--line);
  padding: .7rem .9rem; border-radius: 10px;
}
.m-highlights li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: .45rem; border-radius: 2px; background: var(--accent); box-shadow: 0 0 8px var(--glow); }

.m-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px,1fr)); gap: .6rem; margin: 1.5rem 0; }
.m-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }

.m-specs-title { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; margin: 2rem 0 1rem; }
.spec-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 420px; }
.spec-table th, .spec-table td { padding: .7rem .9rem; text-align: left; border-bottom: 1px solid var(--line); }
.spec-table tr:last-child td, .spec-table tr:last-child th { border-bottom: none; }
.spec-table th { font-family: var(--ff-display); font-weight: 500; color: var(--muted); white-space: nowrap; background: var(--panel-2); }
.spec-table td { color: var(--text); }
.spec-table td:empty::after { content: "·"; color: var(--muted-2); }

.m-cta { margin: 2rem 0 0; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  /* office bar: hide label, let cities scroll horizontally on one line */
  .topbar-label { display: none; }
  .topbar-inner {
    gap: 0; padding-top: .45rem; padding-bottom: .45rem;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .topbar-inner::-webkit-scrollbar { display: none; }
  .topbar-locations { flex-wrap: nowrap; gap: 1rem; }
  .topbar-locations li { font-size: .74rem; }

  .main-nav, .header-right { display: none; }
  .menu-toggle { display: flex; }
  .site-header.open {
    flex-wrap: wrap;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .site-header.open .main-nav {
    display: flex; flex-direction: column; gap: 1.1rem;
    order: 3; width: 100%;
    padding: 1.4rem 0 0.4rem;
    margin-left: 0;
  }
  .site-header.open .main-nav a { font-size: 1.05rem; }
  .site-header.open .header-right {
    display: flex; order: 4; width: 100%;
    justify-content: space-between;
    padding: 0.4rem 0 1.2rem;
  }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .field-row { grid-template-columns: 1fr; }

  /* stack hero: text on top, images below */
  .hero { padding: 8rem clamp(1rem, 4vw, 2.5rem) 4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { min-height: 300px; order: 2; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 1.5rem; }
  .hero-stats strong { font-size: 1.6rem; }
  .brand-sub { display: none; }
  .hero-visual { min-height: 240px; }
}
