/* ================================================================
   254 SPORTS — Brand Stylesheet
   Kenyan Running Apparel · Born Kenyan, Born to Run
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --red:        #CC2200;
  --red-dark:   #991A00;
  --red-light:  #FF3D1A;
  --green:      #006B3C;
  --green-dark: #004D2A;
  --green-light:#00A05A;
  --black:      #0D0D0D;
  --white:      #FFFFFF;
  --cream:      #F8F5F0;
  --gray:       #F0EDEA;
  --gray-mid:   #C8C4BE;
  --gray-dark:  #5C5754;

  --display:    'Bebas Neue', sans-serif;
  --condensed:  'Barlow Condensed', sans-serif;
  --body:       'Barlow', sans-serif;
}

/* ── Base Reset ─────────────────────────────────────────────── */
body {
  background: var(--black) !important;
  color: var(--black) !important;
  font-family: var(--body) !important;
  font-size: 14px;
  line-height: 1.6;
}

/* ── Full-Width Layout ──────────────────────────────────────── */
/* full_width=1 in page context removes Frappe's container my-4  */
/* This handles any remaining wrapper padding                     */
.page-content-wrapper {
  padding: 0 !important;
}

.s254-home-page {
  width: 100%;
  overflow-x: hidden;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

/* ── Frappe Navbar Override ─────────────────────────────────── */
.navbar {
  background: var(--black) !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 1.5rem !important;
  min-height: 60px !important;
}

.navbar-brand {
  font-family: var(--display) !important;
  font-size: 26px !important;
  color: var(--white) !important;
  letter-spacing: 0.05em;
  line-height: 60px;
  padding: 0 !important;
}

.navbar-brand:hover { color: var(--red-light) !important; }

.nav-link,
.navbar-nav .nav-link {
  font-family: var(--condensed) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  padding: 0 12px !important;
  line-height: 60px !important;
  transition: color 0.15s;
}

.nav-link:hover,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--red-light) !important;
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.3) !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* Cart / login icons in navbar */
.navbar .btn-sm {
  font-family: var(--condensed) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: var(--white) !important;
  border-radius: 6px;
  padding: 6px 14px !important;
}

.navbar .btn-sm:hover {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
}

#cart-icon-badge,
.cart-icon .badge {
  background: var(--red) !important;
}

/* ── Announcement Bar ───────────────────────────────────────── */
.s254-announce {
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 1rem;
}

/* ── Hero Section ───────────────────────────────────────────── */
@keyframes s254-fade-out-in {
  0%, 38%  { opacity: 1; }
  48%, 88% { opacity: 0; }
  98%, 100% { opacity: 1; }
}

.s254-hero {
  background: var(--black);
  position: relative;
  overflow: hidden;
  height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2rem;
}

.s254-hero-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  flex: 0 0 auto;
}

.s254-hero-images {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
}

.s254-hero-img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom right;
}

/* Front starts visible; back starts mid-cycle (already faded out) */
.s254-hero-img--front {
  animation: s254-fade-out-in 8s ease-in-out infinite;
}

.s254-hero-img--back {
  animation: s254-fade-out-in 8s ease-in-out infinite;
  animation-delay: -4s;
}

@media (max-width: 768px) {
  .s254-hero {
    height: 500px;
  }
  .s254-hero-images {
    width: 100%;
    opacity: 0.35;
  }
  .s254-hero-img {
    object-position: bottom center;
  }
}

.s254-hero-eyebrow {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 10px;
}

.s254-hero-title {
  font-family: var(--display);
  font-size: clamp(42px, 8vw, 80px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.s254-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Section Labels ─────────────────────────────────────────── */
.s254-section-label {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-mid);
  margin-bottom: 1.5rem;
}

.s254-section {
  padding: 3rem 0;
}

/* ── Category Tabs ──────────────────────────────────────────── */
.s254-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.s254-cat-tab {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  border: 1.5px solid var(--gray-mid);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.s254-cat-tab:hover,
.s254-cat-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white) !important;
}

/* ── Product Grid ───────────────────────────────────────────── */
.s254-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* ── Product Card ───────────────────────────────────────────── */
.s254-product-card,
.item-card-group-row .item-card,
.website-list .item-card {
  background: var(--white) !important;
  border-radius: 12px !important;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06) !important;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  box-shadow: none !important;
}

.s254-product-card:hover,
.item-card-group-row .item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
}

.s254-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.s254-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s254-card-img-placeholder {
  background: linear-gradient(135deg, var(--red) 55%, var(--green) 55%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 64px;
  color: rgba(255,255,255,0.18);
}

.s254-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}

.s254-card-badge.badge-green { background: var(--green); }
.s254-card-badge.badge-dark  { background: var(--gray-dark); }

.s254-card-body {
  padding: 16px;
}

.s254-card-category,
.item-card .product-category {
  font-family: var(--condensed) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-dark) !important;
  margin-bottom: 4px;
}

.s254-card-name,
.item-card .product-title {
  font-family: var(--condensed) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 10px;
}

.s254-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.s254-card-price,
.item-card .product-price {
  font-family: var(--condensed) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--red) !important;
}

.s254-card-price-original {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-dark);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-s254-primary,
.btn-primary,
.s254-hero-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--condensed) !important;
  font-weight: 700 !important;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--red) !important;
  background: var(--red) !important;
  color: var(--white) !important;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-s254-primary:hover,
.btn-primary:hover {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  color: var(--white) !important;
}

.btn-s254-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--condensed) !important;
  font-weight: 700 !important;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--black) !important;
  background: transparent !important;
  color: var(--black) !important;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.btn-s254-secondary:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}

.btn-s254-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--condensed) !important;
  font-weight: 700 !important;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--white) !important;
  background: var(--white) !important;
  color: var(--red) !important;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-s254-white:hover {
  background: transparent !important;
  color: var(--white) !important;
}

.btn-s254-ghost {
  background: transparent !important;
  border: 2px solid var(--green) !important;
  color: var(--green) !important;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--condensed) !important;
  font-weight: 700 !important;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-s254-ghost:hover {
  background: var(--green) !important;
  color: var(--white) !important;
}

/* Add to cart button on cards */
.s254-card-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.s254-card-btn:hover { background: var(--red); }

/* ── Stock Badges ───────────────────────────────────────────── */
.s254-stock-in {
  background: var(--green);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.s254-stock-low {
  background: rgba(204,34,0,0.1);
  color: var(--red);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.s254-stock-out {
  background: var(--gray);
  color: var(--gray-dark);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Form Elements ──────────────────────────────────────────── */
.s254-label {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dark);
  display: block;
  margin-bottom: 6px;
}

.s254-input,
.s254-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 6px;
  font-family: var(--body);
  font-size: 14px;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
}

.s254-input:focus,
.s254-select:focus {
  border-color: var(--red);
}

/* Size selector */
.s254-size-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.s254-size-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gray-mid);
  border-radius: 6px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  background: var(--white);
  color: var(--black);
  transition: all 0.15s;
}

.s254-size-btn:hover,
.s254-size-btn.selected {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.s254-size-btn.sold-out {
  opacity: 0.3;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* Color picker */
.s254-color-grid {
  display: flex;
  gap: 8px;
}

.s254-color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray);
  cursor: pointer;
  transition: transform 0.15s;
}

.s254-color-swatch.selected { border-color: var(--black); }
.s254-color-swatch:hover    { transform: scale(1.12); }

/* ── Divider Band (KE flag stripe) ─────────────────────────── */
.s254-divider {
  height: 4px;
  border-radius: 2px;
  margin: 2.5rem 0;
  background: linear-gradient(
    90deg,
    var(--red)   0%,   var(--red)   33%,
    var(--black) 33%,  var(--black) 66%,
    var(--green) 66%,  var(--green) 100%
  );
}

/* ── Brand Feature Banner ───────────────────────────────────── */
.s254-brand-band {
  background: var(--black);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 2rem 0;
}

.s254-brand-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, var(--red) 0%, var(--green) 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.9;
}

.s254-brand-band::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 2px,
    transparent 2px, transparent 8px
  );
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.s254-brand-num {
  font-family: var(--display);
  font-size: clamp(56px, 10vw, 100px);
  color: var(--white);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.s254-brand-word {
  font-family: var(--condensed);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--red-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: -6px;
  position: relative;
  z-index: 1;
}

.s254-brand-tagline {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Product Detail Page ────────────────────────────────────── */
.s254-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}

.s254-product-gallery {
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.s254-product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s254-product-info-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--black);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.s254-product-info-price {
  font-family: var(--condensed);
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.s254-product-info-price .original {
  font-size: 16px;
  color: var(--gray-dark);
  text-decoration: line-through;
  margin-left: 8px;
}

.s254-product-desc {
  font-family: var(--body);
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.s254-breadcrumb {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding: 1rem 0;
  display: flex;
  gap: 8px;
  align-items: center;
}

.s254-breadcrumb a {
  color: var(--gray-dark);
  text-decoration: none;
}

.s254-breadcrumb a:hover { color: var(--red); }
.s254-breadcrumb .sep   { color: var(--gray-mid); }
.s254-breadcrumb .current { color: var(--black); }

/* ── Footer ─────────────────────────────────────────────────── */
.s254-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 3rem 2rem 1.5rem;
  margin-top: 4rem;
}

.s254-footer-logo {
  font-family: var(--display);
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.s254-footer-tagline {
  font-family: var(--condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2rem;
}

.s254-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.s254-footer-heading {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.s254-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.s254-footer-links li { margin-bottom: 6px; }

.s254-footer-links a {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.s254-footer-links a:hover { color: var(--red-light); }

.s254-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--condensed);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* Override Frappe/ERPNext footer if needed */
footer.web-footer,
.web-footer {
  display: none !important;
}

/* ── Container / Layout ─────────────────────────────────────── */
.s254-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Content section — full-width cream background, content centered at 1200px */
.s254-home-page > .s254-container {
  background: var(--cream);
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding-left: max(1.5rem, calc((100% - 1200px) / 2));
  padding-right: max(1.5rem, calc((100% - 1200px) / 2));
}

/* ── Shop Page Sidebar ──────────────────────────────────────── */
.s254-shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
}

.s254-filter-panel {
  position: sticky;
  top: 80px;
  height: fit-content;
}

.s254-filter-section {
  margin-bottom: 1.5rem;
}

.s254-filter-title {
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray);
}

.s254-filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--gray-dark);
  margin-bottom: 6px;
  cursor: pointer;
}

.s254-filter-checkbox input[type="checkbox"] {
  accent-color: var(--red);
  width: 14px;
  height: 14px;
  cursor: pointer;
}

/* ── Pagination ─────────────────────────────────────────────── */
.s254-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 2rem 0;
}

.s254-page-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--gray-mid);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.s254-page-btn:hover,
.s254-page-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white) !important;
}

/* ── ERPNext Webshop Overrides ──────────────────────────────── */
.item-card-group-row {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 20px !important;
}

.webshop-footer { display: none !important; }

.page-header-wrapper h1,
.page-header-wrapper .page-title {
  font-family: var(--display) !important;
  color: var(--black) !important;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .s254-shop-layout {
    grid-template-columns: 1fr;
  }

  .s254-filter-panel {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .s254-filter-section {
    min-width: 180px;
    flex: 1;
    margin-bottom: 0;
  }

  .s254-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .s254-product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .s254-hero { min-height: 360px; padding: 2rem 1.25rem; }
  .s254-product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .s254-footer-grid { grid-template-columns: 1fr; }
  .navbar-nav { display: none; }
}
