/* Prodify Sports — landing (hero uses static banner image) */
:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --text: #1a2332;
  --muted: #5c6778;
  --navy: #0c1424;
  --navy-soft: #151f33;
  --brand-maroon: #8f1d32;
  --brand-yellow: #f4c430;
  --accent: #e85d2c;
  --accent-hover: #cf4f22;
  --border: #e2e6ec;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 12px 40px rgba(12, 20, 36, 0.08);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Outfit", var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.container.narrow {
  width: min(720px, calc(100% - 40px));
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.logo-mark {
  width: 52px;
  height: 52px;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.logo-text > span {
  color: var(--brand-maroon);
}

.logo--footer .logo-mark {
  width: 48px;
  height: 48px;
}

.logo--footer {
  color: #fff;
}

.logo--footer .logo-text > span {
  color: var(--brand-yellow);
}

.footer-brand .logo {
  margin-bottom: 0.35rem;
}

.site-footer .logo.logo--footer:hover .logo-text {
  opacity: 0.92;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav ul {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--accent);
}

.header-cta {
  flex-shrink: 0;
}

/* Hero — image replaces video */
.hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 8vw, 5rem);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12, 20, 36, 0.92) 0%,
    rgba(12, 20, 36, 0.55) 45%,
    rgba(12, 20, 36, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.12;
  margin: 0 0 1rem;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Stats */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  color: var(--navy);
}

.stat-suffix {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  margin: 0 0 0.6rem;
  color: var(--navy);
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.section-head--light h2 {
  color: #fff;
}

.section-head--light p {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

/* Product category showcases (uniforms + activewear grids) */
.products {
  background: var(--surface);
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.showcase-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 8vw, 5rem);
}

.showcase-block-spaced {
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--border);
}

.showcase-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.showcase-title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

.showcase-desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cat-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(12, 20, 36, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cat-card:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 36px rgba(12, 20, 36, 0.16);
}

.cat-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
  transition: background 0.25s ease;
}

.cat-card:hover .cat-card__overlay {
  background: rgba(0, 0, 0, 0.35);
}

.cat-card__label {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1rem 1.25rem;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.showcase-cta {
  text-align: center;
  margin: 2rem 0 0;
}

.btn-categories {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background: #d92323;
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(217, 35, 35, 0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-categories:hover {
  background: #c41e1e;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(217, 35, 35, 0.4);
}

@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-card {
    min-height: 160px;
  }
}

@media (max-width: 520px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-card {
    min-height: 200px;
  }
}

.link-arrow {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
}

.link-arrow:hover {
  text-decoration: underline;
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr minmax(260px, 340px);
  align-items: start;
}

.about h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-top: 0;
  color: var(--navy);
}

.about-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-panel h3 {
  font-family: var(--display);
  margin-top: 0;
  font-size: 1.1rem;
}

.check-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.check-list li {
  margin-bottom: 0.45rem;
}

/* Audiences */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.audience-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.audience-card h3 {
  font-family: var(--display);
  margin-top: 0;
  font-size: 1.05rem;
}

.audience-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(232, 93, 44, 0.12);
  color: var(--accent-hover);
}

/* Reasons dark band */
.reasons {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #e8ecf2;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.reason-grid article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.reason-grid h3 {
  font-family: var(--display);
  margin-top: 0;
  font-size: 1.05rem;
  color: #fff;
}

.reason-grid p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(232, 236, 242, 0.82);
}

/* Process */
.process-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.process-track li {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border);
  display: grid;
  gap: 0.35rem;
}

.step-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.process-track strong {
  font-size: 1.05rem;
}

.process-track span:last-child {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Testimonials */
.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.testimonial-track {
  position: relative;
  min-height: 160px;
}

.testimonial {
  margin: 0;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial p {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  font-style: italic;
}

.testimonial footer {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  font-size: 0.9rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
}

.testimonial footer span {
  color: var(--muted);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}

.slider-dots button[aria-current="true"] {
  background: var(--accent);
}

/* FAQ */
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.65rem;
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr minmax(280px, 420px);
}

.contact h2 {
  font-family: var(--display);
  margin-top: 0;
  color: var(--navy);
}

.contact-lead {
  color: var(--muted);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-details li {
  margin-bottom: 1rem;
}

.contact-details strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-details a {
  color: var(--accent);
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr;
  padding-bottom: 2rem;
}

.footer-about {
  font-size: 0.92rem;
  max-width: 36ch;
  margin-top: 0.75rem;
}

.site-footer h4 {
  font-family: var(--display);
  font-size: 0.95rem;
  margin: 0 0 1rem;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer a.logo.logo--footer {
  color: #fff;
}

.site-footer a.logo.logo--footer:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
}

/* Mobile */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand .logo--footer {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
  }

  .logo--footer .logo-mark {
    width: 44px;
    height: 44px;
  }

  .logo--footer .logo-text {
    font-size: clamp(0.95rem, 3.8vw, 1.12rem);
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    flex: none;
    justify-content: stretch;
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    width: 100%;
    left: 0;
    right: 0;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: 20px;
  }

  .site-nav a {
    display: block;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius);
  }

  .site-nav a:hover {
    background: var(--bg);
  }

  .header-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.65rem;
    min-height: 64px;
  }

  /* Keep crest + “Prodify Sports” side-by-side like desktop; hamburger stays right */
  .logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 52px);
    align-items: center;
    gap: 0.45rem;
  }

  .logo-mark {
    width: 44px;
    height: 44px;
  }

  .logo-text {
    font-size: clamp(0.92rem, 3.85vw, 1.12rem);
    white-space: nowrap;
    line-height: 1.15;
  }

  .nav-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }

  .testimonial-slider {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }
}

@media (max-width: 380px) {
  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 0.88rem;
    letter-spacing: -0.03em;
  }

  .logo {
    gap: 0.35rem;
    max-width: calc(100% - 48px);
  }

  .logo--footer .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo--footer .logo-text {
    font-size: 0.88rem;
    letter-spacing: -0.03em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .testimonial.active {
    animation: none;
  }

  .cat-card:hover,
  .cat-card:hover img {
    transform: none;
  }

  .btn-categories:hover {
    transform: none;
  }
}
