/* ═══════════════════════════════════════════════
   AAU CINCO DE MAYO — GRINDER HOCKEY THEME
   Dark navy/charcoal + Electric blue #2563eb
   Fiesta accents: teal #00bfcc, gold #f5a623, red #e63946
   Font: Fugaz One (headings) + Inter (body)
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&family=Inter:wght@400;500;600;700;800&family=Barlow+Condensed:ital,wght@0,600;0,700;0,800;0,900;1,800&display=swap');

:root {
  /* Core dark theme (always dark — matches GrinderHockey) */
  --bg:          #0d1117;
  --bg2:         #111827;
  --surface:     #1a2235;
  --surface2:    #1e2a40;
  --surface3:    #243044;
  --border:      #2d3f5c;
  --divider:     #1f2d42;

  /* Text */
  --text:        #f0f4ff;
  --text-m:      #8899bb;
  --text-f:      #4a5a78;
  --text-inv:    #0d1117;

  /* Brand blue (GrinderHockey primary) */
  --blue:        #2563eb;
  --blue-hover:  #1d4ed8;
  --blue-active: #1e40af;
  --blue-lt:     rgba(37,99,235,0.15);
  --blue-glow:   rgba(37,99,235,0.4);

  /* Cinco de Mayo fiesta accents */
  --teal:        #00bfcc;
  --teal-lt:     rgba(0,191,204,0.12);
  --gold:        #f5a623;
  --gold-lt:     rgba(245,166,35,0.12);
  --red:         #e63946;
  --red-lt:      rgba(230,57,70,0.12);
  --lime:        #7fe000;   /* Howell Hounds jersey */
  --lime-lt:     rgba(127,224,0,0.1);

  /* Status */
  --success:     #22c55e;
  --success-lt:  rgba(34,197,94,0.1);
  --error:       #e63946;
  --error-lt:    rgba(230,57,70,0.1);

  /* Shadows & glows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.6);
  --glow-blue:   0 0 20px rgba(37,99,235,0.4);
  --glow-teal:   0 0 20px rgba(0,191,204,0.4);
  --glow-lime:   0 0 20px rgba(127,224,0,0.4);

  /* Shape */
  --r-sm:   5px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   18px;
  --r-full: 9999px;
  --tr:     180ms cubic-bezier(.16,1,.3,1);

  /* Fonts */
  --font-display: 'Fugaz One', 'Barlow Condensed', Impact, sans-serif;
  --font-heading: 'Barlow Condensed', 'Inter', sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Type */
  --xs:   clamp(.72rem, .68rem + .2vw, .82rem);
  --sm:   clamp(.85rem, .8rem + .25vw, .95rem);
  --base: clamp(.95rem, .9rem + .25vw, 1.05rem);
  --lg:   clamp(1.1rem, 1rem + .5vw, 1.3rem);
  --xl:   clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  --2xl:  clamp(1.9rem, 1.3rem + 2.5vw, 3rem);
  --3xl:  clamp(2.4rem, 1.4rem + 4vw, 4rem);

  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
table { border-collapse: collapse; width: 100%; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: #080d14;
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 2px 30px rgba(37,99,235,.35);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: .6rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: .85rem; }
.nav-logo-img { height: 36px; width: auto; }
.nav-badge-img { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; gap: 0; }
.brand-tourn {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
}
.brand-sub {
  font-size: var(--xs);
  color: var(--text-m);
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-right { display: flex; align-items: center; gap: 1rem; }
.live-pill {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(34,197,94,.1);
  color: var(--success);
  border: 1px solid rgba(34,197,94,.35);
  border-radius: var(--r-full);
  padding: .2rem .8rem;
  font-size: var(--xs); font-weight: 700; letter-spacing: .07em;
  white-space: nowrap;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success); box-shadow: 0 0 6px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.35; transform:scale(.7); }
}
.upd { font-size: var(--xs); color: var(--text-f); white-space: nowrap; }
.theme-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: var(--r-md);
  color: var(--text-f); transition: background var(--tr), color var(--tr);
}
.theme-btn:hover { background: var(--blue-lt); color: var(--blue); }

/* ══════════════════════════════════════
   PAGE TABS
══════════════════════════════════════ */
.page-tabs {
  background: #0a0f1a;
  border-bottom: 1px solid var(--border);
}
.tabs-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; overflow-x: auto; scrollbar-width: none;
  gap: 0;
}
.tabs-inner::-webkit-scrollbar { display: none; }
.ptab {
  padding: .7rem 1.1rem;
  font-size: var(--sm); font-weight: 600;
  color: var(--text-f);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color var(--tr), border-color var(--tr);
  letter-spacing: .01em;
}
.ptab:hover { color: var(--text-m); }
.ptab.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
  font-weight: 700;
}

/* ══════════════════════════════════════
   PAGES
══════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════════════
   TOURNAMENT HERO BANNER
══════════════════════════════════════ */
.tourn-hero {
  background: linear-gradient(135deg, #080d14 0%, #0f1a2e 40%, #0d1a30 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem 2rem;
  position: relative; overflow: hidden;
}
.tourn-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 15% 50%, rgba(37,99,235,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 85% 50%, rgba(0,191,204,.1) 0%, transparent 55%);
  pointer-events: none;
}
/* diagonal slash */
.tourn-hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(150deg, transparent 40%, rgba(37,99,235,.06) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  gap: 2.5rem; position: relative; z-index: 1;
}
.hero-logo-wrap { display: flex; align-items: center; }
.hero-cinco-logo { width: clamp(120px, 18vw, 200px); height: auto; filter: drop-shadow(0 4px 20px rgba(0,191,204,.3)); }
.hero-text {}
.hero-eyebrow {
  font-size: var(--xs); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: .4rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--3xl);
  color: #fff; line-height: 1;
  letter-spacing: .02em;
  margin-bottom: .3rem;
}
.hero-title span { color: var(--blue); }
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: var(--xl);
  font-weight: 800; color: var(--gold);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .75rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: .5rem .75rem;
  font-size: var(--xs); color: var(--text-m); margin-bottom: 1.25rem;
}
.hero-meta span { display: flex; align-items: center; gap: .3rem; }
.sponsor-row { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.sponsor-label { font-size: var(--xs); color: var(--text-f); text-transform: uppercase; letter-spacing: .06em; }
.sponsor-logo { height: 30px; width: auto; opacity: .75; filter: brightness(1.3); }

/* ══════════════════════════════════════
   HOWELL HOUNDS SECTION
══════════════════════════════════════ */
.hounds-section {
  background: linear-gradient(180deg, #0a1408 0%, #0d1a0a 100%);
  border-bottom: 3px solid var(--lime);
  padding: 2rem 1.5rem 2.5rem;
  position: relative; overflow: hidden;
}
.hounds-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(127,224,0,.15) 0%, transparent 65%);
  pointer-events: none;
}
.hounds-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.hounds-hdr {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.hounds-badge-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(127,224,0,.1);
  color: var(--lime);
  border: 1px solid rgba(127,224,0,.4);
  border-radius: var(--r-full);
  padding: .25rem .9rem;
  font-size: var(--xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
}
.hounds-name {
  font-family: var(--font-display);
  font-size: var(--2xl); color: var(--lime);
  text-shadow: var(--glow-lime); line-height: 1.05;
  letter-spacing: .02em;
}
.hounds-name span { color: rgba(255,255,255,.35); font-size: .6em; }
.hounds-div-label { font-size: var(--xs); color: rgba(255,255,255,.4); margin-top: .2rem; }

/* game cards */
.game-cards { display: flex; flex-direction: column; gap: .75rem; }
.gcard {
  background: rgba(255,255,255,.03);
  border: 1.5px solid rgba(127,224,0,.22);
  border-radius: var(--r-lg);
  padding: 1rem 1.4rem;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 1.25rem;
  transition: box-shadow var(--tr), border-color var(--tr), transform var(--tr);
}
.gcard:hover { border-color: rgba(127,224,0,.55); box-shadow: var(--glow-lime); transform: translateY(-1px); }
.gdt {
  display: flex; flex-direction: column; align-items: center;
  min-width: 72px; padding-right: 1.25rem;
  border-right: 1px solid rgba(127,224,0,.15);
}
.gdt-day { font-size: var(--xs); font-weight: 800; color: var(--lime); text-transform: uppercase; letter-spacing: .05em; }
.gdt-time { font-size: var(--sm); font-weight: 700; color: #fff; margin-top: 2px; }
.gdt-rink { font-size: var(--xs); color: rgba(255,255,255,.3); margin-top: 2px; }
.gmatch { display: flex; flex-direction: column; gap: 4px; }
.gteam { display: flex; align-items: center; gap: .5rem; font-size: var(--sm); font-weight: 500; color: rgba(255,255,255,.6); }
.gteam.hl { font-weight: 800; color: var(--lime); font-size: var(--base); }
.grole {
  font-size: 9px; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; padding: 2px 7px; border-radius: var(--r-full);
  line-height: 1.6; flex-shrink: 0;
}
.grole.home { background: var(--lime); color: #0a1408; }
.grole.away { background: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
.gvs { font-size: var(--xs); color: rgba(255,255,255,.2); padding-left: .6rem; font-style: italic; }
.gscore-wrap { text-align: center; min-width: 78px; }
.gscore {
  font-family: 'Barlow Condensed', var(--font-body);
  font-size: var(--xl); font-weight: 900; color: var(--lime);
  font-variant-numeric: tabular-nums; line-height: 1;
  text-shadow: var(--glow-lime);
}
.gscore.nil { color: rgba(255,255,255,.18); font-size: var(--base); font-weight: 400; text-shadow: none; }
.gscore-lbl { font-size: var(--xs); color: rgba(255,255,255,.25); margin-top: 4px; }

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.section { padding: 2.5rem 1.5rem; }
.section.alt { background: var(--bg2); }
.sec-inner { max-width: var(--max); margin: 0 auto; }
.sec-hdr {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: .9rem;
  border-bottom: 2px solid var(--blue);
}
.sec-title {
  font-family: var(--font-heading);
  font-size: var(--lg); font-weight: 800;
  color: #fff; text-transform: uppercase; letter-spacing: .06em;
  display: flex; align-items: center; gap: .55rem;
}
.sec-title::before {
  content: '';
  display: inline-block; width: 4px; height: 1.1em;
  background: var(--blue); border-radius: 2px;
  box-shadow: 0 0 10px var(--blue-glow);
}

/* tabs */
.tab-row {
  display: flex; gap: 2px;
  background: rgba(255,255,255,.05);
  border-radius: var(--r-md); padding: 3px;
  border: 1px solid var(--border);
}
.tab-btn {
  padding: .25rem .9rem;
  border-radius: var(--r-sm);
  font-size: var(--sm); font-weight: 600;
  color: var(--text-m);
  transition: background var(--tr), color var(--tr);
  white-space: nowrap;
}
.tab-btn.active {
  background: var(--blue); color: #fff;
  font-weight: 700; box-shadow: 0 0 10px var(--blue-glow);
}
.tab-btn:hover:not(.active) { color: #fff; background: rgba(37,99,235,.15); }

/* ══════════════════════════════════════
   STANDINGS TABLES
══════════════════════════════════════ */
.stand-wrap {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.stand-table { font-size: var(--sm); }
.stand-table thead tr { background: #080d14; }
.stand-table th {
  padding: .6rem 1rem;
  font-family: var(--font-heading);
  font-size: var(--xs); font-weight: 800;
  color: var(--blue); text-transform: uppercase; letter-spacing: .08em;
  text-align: left; white-space: nowrap;
}
.stand-table th.r, .stand-table td.r { text-align: right; font-variant-numeric: tabular-nums; }
.stand-table tbody tr { border-top: 1px solid var(--divider); transition: background var(--tr); }
.stand-table tbody tr:hover { background: rgba(37,99,235,.08); }
.stand-table tbody tr.hl-row {
  background: rgba(127,224,0,.07);
  border-left: 3px solid var(--lime);
}
.stand-table tbody tr.hl-row:hover { background: rgba(127,224,0,.13); }
.stand-table td { padding: .55rem 1rem; color: var(--text); }
.stand-table td.tname { font-weight: 600; }
.stand-table td.tname.hounds { color: #7fe000; font-weight: 800; }
.seed-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface3); color: var(--text-m);
  font-size: 11px; font-weight: 700; margin-right: .4rem;
}
.seed-num.top { background: var(--blue); color: #fff; box-shadow: 0 0 8px var(--blue-glow); }
.diff-p { color: var(--success); font-weight: 700; }
.diff-n { color: var(--error); font-weight: 700; }
.diff-0 { color: var(--text-m); }
.pts-cell { font-weight: 800; color: #fff; }

/* master grid */
.master-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}
.div-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--tr), transform var(--tr);
}
.div-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.div-card-hdr {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 1rem; background: #080d14;
  border-bottom: 2px solid;
}
.div-card-name {
  font-family: var(--font-heading);
  font-size: var(--sm); font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: .05em;
}
.div-chip {
  font-size: 10px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: 2px 9px; border-radius: var(--r-full);
}

/* ══════════════════════════════════════
   SCHEDULE TABLE
══════════════════════════════════════ */
.sched-wrap {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.sched-table { font-size: var(--sm); }
.sched-table thead tr, .day-hdr { background: #080d14; }
.sched-table th {
  padding: .6rem 1rem;
  font-family: var(--font-heading);
  font-size: var(--xs); font-weight: 800;
  color: var(--blue); text-transform: uppercase; letter-spacing: .08em;
  text-align: left; white-space: nowrap;
}
.day-hdr td {
  padding: .35rem 1rem;
  font-family: var(--font-heading);
  font-size: var(--xs); font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em; color: var(--teal);
}
.sched-table tbody tr { border-top: 1px solid var(--divider); transition: background var(--tr); }
.sched-table tbody tr:hover { background: rgba(37,99,235,.07); }
.sched-table tbody tr.hg {
  background: rgba(127,224,0,.06);
  border-left: 3px solid var(--lime);
}
.sched-table tbody tr.hg:hover { background: rgba(127,224,0,.12); }
.sched-table tbody tr.playoff { background: rgba(37,99,235,.05); }
.sched-table td { padding: .55rem 1rem; color: var(--text); vertical-align: middle; white-space: nowrap; }
.sched-table td.tc { font-weight: 500; white-space: normal; }
.sched-table td.tc.ht { font-weight: 800; color: #7fe000; }
.sc { font-variant-numeric: tabular-nums; font-weight: 800; font-family: 'Barlow Condensed', sans-serif; font-size: 1.05em; text-align: center; }
.sc.nil { color: var(--text-f); font-weight: 400; font-family: var(--font-body); }
.pchip {
  display: inline-block; padding: 2px 8px; border-radius: var(--r-full);
  font-size: 10px; font-weight: 700; letter-spacing: .04em; border: 1px solid;
}
.pchip.a { background: rgba(37,99,235,.15); color: #60a5fa; border-color: rgba(37,99,235,.3); }
.pchip.b { background: rgba(0,191,204,.12); color: var(--teal); border-color: rgba(0,191,204,.3); }
.pchip.po { background: rgba(245,166,35,.1); color: var(--gold); border-color: rgba(245,166,35,.25); font-style: italic; }
.hstar { color: var(--lime); font-size: 12px; margin-right: 3px; }

/* ══════════════════════════════════════
   DIVISION HERO PAGES
══════════════════════════════════════ */
.div-hero {
  background: linear-gradient(135deg, #080d14, #0f1a2e);
  padding: 2rem 1.5rem 1.75rem;
  border-bottom: 3px solid;
  position: relative; overflow: hidden;
}
.div-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 5% 50%, rgba(37,99,235,.12), transparent 60%);
  pointer-events: none;
}
.div-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.div-eyebrow {
  font-size: var(--xs); font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: .4rem;
}
.div-title {
  font-family: var(--font-display);
  font-size: var(--2xl); color: #fff; line-height: 1.05; letter-spacing: .02em;
  margin-bottom: .2rem;
}
.div-fun-name {
  font-family: var(--font-heading);
  font-size: var(--lg); font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; opacity: .7;
  margin-top: .3rem;
}
.div-meta { font-size: var(--xs); color: var(--text-f); margin-top: .4rem; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: #080d14;
  border-top: 3px solid var(--blue);
  padding: 2rem 1.5rem;
}
.foot-inner { max-width: var(--max); margin: 0 auto; }
.foot-top {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2rem;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.foot-logo { height: 32px; width: auto; opacity: .85; }
.foot-div-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.foot-div-btn {
  padding: .3rem .85rem; border-radius: var(--r-full);
  font-size: var(--xs); font-weight: 700; border: 1.5px solid;
  transition: background var(--tr), box-shadow var(--tr);
  letter-spacing: .03em; cursor: pointer;
}
.foot-cinco-logo { height: 64px; width: auto; }
.foot-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem;
  font-size: var(--xs); color: var(--text-f);
}
.refresh-badge {
  display: flex; align-items: center; gap: .4rem;
  color: var(--success); font-size: var(--xs); font-weight: 600;
}

/* ══════════════════════════════════════
   SKELETONS
══════════════════════════════════════ */
.skel {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface3) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--r-md);
}
.skel-row { height: 90px; border: 1px solid rgba(37,99,235,.08); }
.skel-table { height: 200px; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 700px) {
  .nav-inner { padding: .5rem 1rem; }
  .upd { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-cinco-logo { width: 100px; }
  .hero-title { font-size: var(--2xl); }
  .tourn-hero, .hounds-section, .section { padding: 1.5rem 1rem; }
  .gcard { grid-template-columns: 1fr; gap: .75rem; padding: .9rem 1rem; }
  .gdt { flex-direction: row; border-right: none; border-bottom: 1px solid rgba(127,224,0,.12); padding: 0 0 .6rem; gap: .75rem; min-width: unset; }
  .gscore-wrap { text-align: left; }
  .sched-table td, .sched-table th { padding: .4rem .6rem; font-size: var(--xs); }
  .tab-row { flex-wrap: wrap; }
  .hm { display: none; }
  .master-grid { grid-template-columns: 1fr; }
  .tabs-inner { padding: 0 1rem; }
  .ptab { padding: .55rem .75rem; font-size: var(--xs); }
  .sec-hdr { flex-direction: column; align-items: flex-start; }
  .foot-top { grid-template-columns: 1fr; gap: 1rem; }
  .foot-cinco-logo { height: 48px; }
}
