:root {
  --pink:        #CF5BB3;
  --pink-dark:   #A8419A;
  --green:       #4A8C3F;
  --green-mid:   #6DB862;
  --green-pale:  #D6EFCF;
  --cream:       #FDFAF4;
  --yellow:      #F2D155;
  --red-anger:   #E8332A;
  --dark:        #1A1A1A;
  --white:       #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   GATE
══════════════════════════════════════ */
#gate {
  /* gate-local color overrides */
  --g-pink:       #E8719A;
  --g-pink-light: #F5B8CC;
  --g-pink-pale:  #FDE8EE;
  --g-olive:      #6B7A2E;
  --g-red:        #D94F4F;
  --g-green:      #5EAF78;
  --g-blue:       #6AAED4;
  --g-blue-pale:  #CCE6F5;
  --g-yellow:     #E8C94A;
  --g-yellow-pale:#FBF3CC;
  --g-dark:       #2C2134;
  --g-mid:        #6B5B7B;
  --g-light-text: #9E8DAE;

  position: fixed; inset: 0; z-index: 500;
  background: var(--g-pink-pale);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 2rem; overflow: hidden;
}
#gate::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, var(--g-pink) 2.5px, transparent 2.5px),
    radial-gradient(circle, var(--g-blue) 2px, transparent 2px),
    radial-gradient(circle, var(--g-green) 2px, transparent 2px),
    radial-gradient(circle, var(--g-yellow) 2.5px, transparent 2.5px);
  background-size: 110px 110px, 75px 75px, 95px 95px, 85px 85px;
  background-position: 12px 12px, 48px 38px, 28px 65px, 68px 18px;
  opacity: 0.22;
  pointer-events: none;
}
.gate-card {
  position: relative; z-index: 2;
  background: var(--white);
  border-radius: 2.5rem;
  padding: 2.8rem 2.4rem 2.4rem;
  max-width: 420px; width: 100%;
  box-shadow: 0 5px 0 var(--g-pink-light), 0 10px 40px rgba(232,113,154,0.12);
  text-align: center;
}
.mascot-wrap { margin-bottom: 0.2rem; display: flex; justify-content: center; }
.gate-mascot { height: 100px; width: auto; }
.coming-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--g-yellow-pale); border: 2px solid var(--g-yellow);
  color: var(--g-dark); font-family: 'Fredoka', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 0.28rem 0.9rem; border-radius: 2rem; margin-bottom: 1rem;
}
.gate-wordmark {
  font-family: 'Fredoka', sans-serif; font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 3rem); line-height: 1.05;
  margin-bottom: 0.5rem;
}
.gate-wordmark .w1,
.gate-wordmark .w2,
.gate-wordmark .w3 {
  color: var(--g-pink-light);
  -webkit-text-stroke: 3px var(--g-olive);
  paint-order: stroke fill;
}
.gate-tagline {
  font-size: 0.88rem; color: var(--g-light-text);
  margin-bottom: 1.8rem; line-height: 1.65; font-weight: 600;
}
.pw-label {
  display: block; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--g-light-text); margin-bottom: 0.45rem; text-align: left;
}
.pw-row {
  display: flex; border: 2.5px solid var(--g-pink-light);
  border-radius: 1rem; overflow: hidden; margin-bottom: 0.35rem;
  transition: border-color 0.2s;
}
.pw-row:focus-within { border-color: var(--g-pink); }
.pw-row input {
  flex: 1; border: none; outline: none;
  padding: 0.75rem 1rem; font-family: 'Nunito', sans-serif;
  font-size: 0.92rem; color: var(--g-dark); background: transparent;
}
.pw-row input::placeholder { color: var(--g-pink-light); }
.pw-row button {
  background: var(--g-pink); color: white; border: none;
  padding: 0.75rem 1.2rem; font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.pw-row button:hover { background: var(--g-red); }
.pw-error { font-size: 0.76rem; color: var(--g-red); min-height: 1.1em; text-align: left; font-weight: 700; margin-bottom: 0.3rem; }
.gate-or {
  display: flex; align-items: center; gap: 0.8rem;
  margin: 1rem 0; color: var(--g-light-text);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.gate-or::before, .gate-or::after { content: ''; flex: 1; height: 1.5px; background: var(--g-pink-pale); }
.gate-notify { font-size: 0.8rem; color: var(--g-light-text); margin-bottom: 0.45rem; font-weight: 600; text-align: left; }
.email-row {
  display: flex; border: 2.5px solid var(--g-blue-pale);
  border-radius: 1rem; overflow: hidden; transition: border-color 0.2s;
}
.email-row:focus-within { border-color: var(--g-blue); }
.email-row input {
  flex: 1; border: none; outline: none; padding: 0.75rem 1rem;
  font-family: 'Nunito', sans-serif; font-size: 0.92rem;
  color: var(--g-dark); background: transparent;
}
.email-row input::placeholder { color: #B8D8EE; }
.email-row button {
  background: var(--g-blue); color: white; border: none;
  padding: 0.75rem 1.1rem; font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s; white-space: nowrap;
}
.email-row button:hover { background: #5499C0; }
.email-success { font-size: 0.78rem; color: var(--g-green); min-height: 1.2em; margin-top: 0.4rem; font-weight: 700; text-align: left; }

/* ══════════════════════════════════════
   SITE
══════════════════════════════════════ */
#site { display: none; opacity: 0; transition: opacity 0.5s; }
#site.visible { display: block; opacity: 1; }

/* ── Announce bar ─────────────────────────── */
.announce {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Nav ──────────────────────────────────── */
nav {
  background: var(--cream);
  border-bottom: 3px solid var(--dark);
  padding: 0.9rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--pink);
  -webkit-text-stroke: 1.5px var(--dark);
  paint-order: stroke fill;
}
.nav-pills { display: flex; gap: 0.6rem; list-style: none; }
.nav-pill {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem; font-weight: 800;
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  text-decoration: none;
  border: 2.5px solid var(--dark);
  box-shadow: 2px 2px 0 var(--dark);
  transition: all 0.12s;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-pill:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--dark); }
.nav-pill:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--dark); }
.np-green  { background: var(--green);  color: white; }
.np-yellow { background: var(--yellow); color: var(--dark); }
.np-pink   { background: var(--pink);   color: white; }

/* ── Hero ─────────────────────────────────── */
.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 3rem;
  background: var(--cream);
  position: relative;
  overflow: visible;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,140,63,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,140,63,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ── TV Mosaic ────────────────────────────── */
.tv-mosaic {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  padding: 4rem 4px 0;
  width: 100%;
  overflow: visible;
  position: relative; z-index: 2;
}
.tv-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 0.7;
  min-width: 60px;
  align-items: stretch;
  justify-content: flex-end;
  overflow: visible;
}
.tv-col-inner  { flex: 1.0; }
.tv-col-center { flex: 2.2; min-width: 180px; }
.tv-wrap { position: relative; overflow: visible; }
.tv-float {
  position: absolute;
  font-size: 2.2rem;
  animation: floatbob 3s ease-in-out infinite;
  z-index: 10;
  filter: drop-shadow(2px 2px 0 var(--dark));
}
.tf1  { top: -18px;  left: -30px;  animation-delay: 0s; }
.tf2  { top: -10px;  right: -24px; animation-delay: 0.4s; font-size: 2.6rem; }
.tf3  { top: 30%;    left: -44px;  animation-delay: 0.8s; font-size: 1.8rem; }
.tf4  { top: 30%;    right: -44px; animation-delay: 1.2s; font-size: 2rem; }
.tf5  { bottom: 10%; left: -28px;  animation-delay: 0.3s; font-size: 1.6rem; }
.tf6  { bottom: 10%; right: -28px; animation-delay: 0.9s; font-size: 1.8rem; }
.tf7  { top: 55%;    left: -55px;  animation-delay: 1.5s; font-size: 2.4rem; }
.tf8  { top: 55%;    right: -55px; animation-delay: 0.6s; font-size: 2rem; }
@keyframes floatbob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-8px) rotate(5deg); }
  66%       { transform: translateY(4px) rotate(-4deg); }
}
.tv-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(4px 6px 0 rgba(0,0,0,0.2));
}
.tv-screen-content {
  position: absolute;
  top: 9.5%; left: 9%;
  width: 52%; height: 53%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; border-radius: 8px;
}
.tv-screen-content::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0,0,0,0.12) 3px, rgba(0,0,0,0.12) 4px
  );
  pointer-events: none; border-radius: 8px;
}
.tv-screen-content::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none; border-radius: 8px;
}
.tv-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 0.9; letter-spacing: 0.04em; text-align: center;
  color: var(--pink);
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
  paint-order: stroke fill;
  text-shadow: 0 0 20px rgba(207,91,179,0.8), 0 0 40px rgba(207,91,179,0.4);
  animation: glow 2.5s ease-in-out infinite alternate;
  position: relative; z-index: 2;
}
.tv-brand-name .tb1 { display: block; }
.tv-brand-name .tb2 { display: block; color: var(--pink); }
@keyframes glow {
  from { text-shadow: 0 0 15px rgba(207,91,179,0.7), 0 0 30px rgba(207,91,179,0.3); }
  to   { text-shadow: 0 0 25px rgba(207,91,179,1),   0 0 50px rgba(207,91,179,0.6); }
}
.tv-mascot-lg { height: 40px; width: auto; margin-bottom: 0.1rem; position: relative; z-index: 2; }
.tv-tagline {
  font-size: clamp(0.48rem, 1.1vw, 0.68rem); font-weight: 900;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(109,184,98,0.7);
  position: relative; z-index: 2; margin-top: 0.3rem;
}

/* ── Side TV screen overlays ─────────────── */
.tv-screen-left {
  position: absolute;
  top: 6%; left: 7.5%;
  width: 58%; height: 48%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; border-radius: 5px;
}
.tv-screen-right {
  position: absolute;
  top: 6%; left: 7%;
  width: 61%; height: 48%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; border-radius: 5px;
}
.tv-screen-left::after, .tv-screen-right::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom, transparent 0px, transparent 3px,
    rgba(0,0,0,0.12) 3px, rgba(0,0,0,0.12) 4px
  );
  pointer-events: none;
}
.tv-brand-name-sm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(0.5rem, 1.3vw, 0.9rem);
  line-height: 0.9; letter-spacing: 0.04em; text-align: center;
  color: var(--pink);
  text-shadow: 0 0 10px rgba(207,91,179,0.9), 0 0 20px rgba(207,91,179,0.5);
  animation: glow 2.5s ease-in-out infinite alternate;
  position: relative; z-index: 2;
}
.tv-brand-name-sm .tb1, .tv-brand-name-sm .tb2 { display: block; }
.screen-emoji {
  position: absolute; z-index: 3;
  pointer-events: none; font-size: 1.1rem; opacity: 0.85;
  filter: drop-shadow(0 0 6px rgba(207,91,179,0.6));
}
.se1 { top: 8%;  left: 6%;  animation: scrnfloat1 3.2s ease-in-out infinite; }
.se2 { top: 5%;  right: 8%; animation: scrnfloat2 2.8s ease-in-out infinite 0.4s; }
.se3 { top: 42%; left: 4%;  animation: scrnfloat1 3.6s ease-in-out infinite 0.9s; font-size: 0.9rem; }
.se4 { top: 42%; right: 4%; animation: scrnfloat2 3.0s ease-in-out infinite 0.2s; font-size: 0.9rem; }
.se5 { bottom: 12%; left: 8%;  animation: scrnfloat2 2.6s ease-in-out infinite 1.1s; font-size: 0.85rem; }
.se6 { bottom: 12%; right: 6%; animation: scrnfloat1 3.4s ease-in-out infinite 0.7s; font-size: 0.85rem; }
.se7 { top: 18%; left: 50%; transform: translateX(-50%); animation: scrnfloat2 4s ease-in-out infinite 1.4s; font-size: 0.75rem; opacity: 0.5; }
@keyframes scrnfloat1 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-7px) rotate(5deg); }
}
@keyframes scrnfloat2 {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%       { transform: translateY(6px) rotate(-6deg); }
}

/* ── Pink rolling banner ──────────────────── */
.pink-banner {
  background: var(--pink);
  border-top: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.7rem 0;
}
.banner-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: bannerscroll 22s linear infinite;
}
.banner-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; letter-spacing: 0.1em;
  color: white; padding: 0 1.4rem;
}
.banner-sep { font-size: 1rem; color: var(--yellow); padding: 0 0.4rem; }
@keyframes bannerscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sub-hero copy ────────────────────────── */
.hero-copy { margin-top: 2rem; text-align: center; max-width: 520px; padding: 0 2rem; position: relative; z-index: 2; }
.hero-copy p {
  font-size: 1rem; color: #5A4E68;
  font-weight: 700; line-height: 1.7; margin-bottom: 1.5rem;
}
.hero-copy p strong { color: var(--dark); }
.cta-row { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.cta-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; font-weight: 900;
  padding: 0.8rem 1.8rem; border-radius: 0.7rem;
  border: 3px solid var(--dark); cursor: pointer;
  text-decoration: none; transition: all 0.12s;
  box-shadow: 4px 4px 0 var(--dark);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.cta-btn:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--dark); }
.cta-btn:active { transform: translate(2px,2px);   box-shadow: 2px 2px 0 var(--dark); }
.cta-green { background: var(--green);  color: white; }
.cta-white { background: white;         color: var(--dark); }

/* ── Products ─────────────────────────────── */
.products-section { padding: 5rem 2.5rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.68rem; font-weight: 900;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark); margin-bottom: 2.5rem; letter-spacing: 0.04em;
}
.section-title em { font-style: normal; color: var(--pink); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.prod-card {
  background: white; border-radius: 1.4rem;
  padding: 2rem 1.5rem; text-align: center;
  border: 3px solid var(--dark);
  box-shadow: 5px 5px 0 var(--dark);
  transition: transform 0.15s, box-shadow 0.15s;
}
.prod-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--dark); }
.prod-card.coming { border-style: dashed; border-color: #CCC; box-shadow: none; opacity: 0.6; }
.prod-card.coming:hover { transform: none; }
.prod-col-1 { background: var(--green-pale); }
.prod-col-2 { background: #F7E0F3; }
.prod-icon { font-size: 2.8rem; margin-bottom: 0.8rem; }
.prod-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.05em;
  color: var(--dark); margin-bottom: 0.3rem;
}
.prod-desc { font-size: 0.78rem; font-weight: 700; color: #7A6B8A; line-height: 1.55; margin-bottom: 0.8rem; }
.prod-badge {
  display: inline-block;
  font-size: 0.62rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 2rem;
  border: 2px solid var(--dark); background: white; color: var(--dark);
}

/* ── About dark section ───────────────────── */
.about-section { background: var(--dark); padding: 5rem 2.5rem; }
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: white; line-height: 1.05;
  letter-spacing: 0.04em; margin-bottom: 1rem;
}
.about-text h2 em { font-style: normal; color: var(--green-mid); }
.about-text p { color: rgba(255,255,255,0.55); line-height: 1.8; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.about-text p strong { color: white; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 1.2rem; padding: 1.4rem 1.2rem;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; line-height: 1; margin-bottom: 0.25rem; letter-spacing: 0.03em;
}
.sn-green { color: var(--green-mid); }
.sn-pink  { color: var(--pink); }
.stat-label { font-size: 0.7rem; font-weight: 800; color: rgba(255,255,255,0.35); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.4; }

/* ── Bottom: Find Us + Signup ─────────────── */
.bottom-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 3px solid var(--dark); }
.find-panel { padding: 4rem 2.5rem; background: white; border-right: 3px solid var(--dark); }
.find-panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.04em;
  color: var(--dark); margin-bottom: 0.8rem;
}
.find-panel h2 em { font-style: normal; color: #3D6B2A; }
.find-panel .no-events { font-size: 0.88rem; color: #9E8DAE; font-weight: 700; font-style: italic; padding: 1rem 0; }
.signup-panel { padding: 4rem 2.5rem; background: var(--green-pale); }
.signup-panel h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.04em;
  color: var(--dark); margin-bottom: 0.5rem;
}
.signup-panel h2 em { font-style: normal; color: var(--green); }
.signup-panel p { font-size: 0.88rem; color: #5A7050; font-weight: 700; line-height: 1.65; margin-bottom: 1.5rem; }
.email-form {
  display: flex; border: 3px solid var(--dark);
  border-radius: 0.8rem; overflow: hidden;
  box-shadow: 4px 4px 0 var(--dark);
}
.email-form input {
  flex: 1; border: none; outline: none;
  padding: 0.85rem 1.1rem;
  font-family: 'Nunito', sans-serif; font-size: 0.92rem;
  color: var(--dark); background: white;
}
.email-form input::placeholder { color: #AACCA2; }
.email-form button {
  background: var(--pink); color: white; border: none;
  padding: 0.85rem 1.4rem;
  font-family: 'Nunito', sans-serif; font-size: 0.88rem; font-weight: 900;
  cursor: pointer; transition: background 0.15s;
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.06em;
}
.email-form button:hover { background: var(--pink-dark); }
.email-ok { font-size: 0.8rem; color: var(--green); min-height: 1.2em; margin-top: 0.5rem; font-weight: 800; }

/* ── Footer ───────────────────────────────── */
footer {
  background: var(--dark); border-top: 3px solid var(--green);
  padding: 1.8rem 2.5rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.06em;
  color: var(--pink);
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  paint-order: stroke fill;
}
footer p { font-size: 0.7rem; color: rgba(255,255,255,0.2); font-weight: 700; letter-spacing: 0.04em; }

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .tv-col:first-child, .tv-col:last-child { display: none; }
}
@media (max-width: 700px) {
  .product-grid { grid-template-columns: 1fr; }
  .about-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .bottom-grid  { grid-template-columns: 1fr; }
  .find-panel   { border-right: none; border-bottom: 3px solid var(--dark); }
  .tv-float     { display: none; }
}
@media (max-width: 640px) {
  .tv-col-inner { display: none; }
  .tv-col-center { flex: 1; }
}
