/* ============================================================
   SQD TEAMWEAR — site stylesheet
   Playfair Display (headings) + Jost (body) · accent #39FF14
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600&family=Jost:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --g: #39ff14;
  --g-deep: #18a000;
  --bg: #07090a;
  --panel: #0c0f0e;
  --panel-2: #101413;
  --line: rgba(255, 255, 255, .1);
  --line-2: rgba(255, 255, 255, .16);
  --t: #eef1f1;
  --m: #9aa0a1;
  --radius: 14px;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--t);
  font-family: 'Jost', system-ui, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: -.5px;
  line-height: 1.06;
}

.w { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.w-narrow { max-width: 820px; margin: 0 auto; padding: 0 22px; }

.eb {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g);
  display: block;
}

.accent { color: var(--g); }
em.accent, .ital { font-style: italic; color: var(--g); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: 'Jost', sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 9px;
  background: var(--g);
  color: #04210a;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .18s, transform .18s;
}
.btn:hover { background: #4dff2e; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--t);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.05); border-color: var(--g); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 10, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { min-width: 44px; min-height: 44px; display: flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.nav-logo img { height: 30px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .3px;
  color: var(--t);
  transition: color .16s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--g); }

.nav-cta { flex: 0 0 auto; }
.nav-cta .btn { padding: 10px 18px; font-size: 11.5px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  width: 44px; height: 44px;
  color: var(--t);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 17px; height: 2px; background: var(--t); border-radius: 2px; position: relative;
}
.nav-toggle span::before { position: absolute; top: -5px; }
.nav-toggle span::after  { position: absolute; top: 5px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { min-height: 48px; display: flex; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav-cta { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 76px;
  text-align: center;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(57,255,20,.10), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: clamp(40px, 7vw, 74px);
  margin: 12px auto 0;
  max-width: 900px;
}
.hero p.lead {
  color: var(--m);
  font-size: clamp(16px, 2vw, 18px);
  max-width: 620px;
  margin: 20px auto 0;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

.facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 30px; }
.facts span {
  font-size: 12.5px;
  font-weight: 500;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--m);
}
.facts b { color: var(--g); font-weight: 700; }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--panel); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 44px); margin-top: 8px; }
.section-head p { color: var(--m); max-width: 620px; margin: 14px auto 0; }

/* ---------- product / range grid ---------- */
.grid { display: grid; gap: 18px; align-items: start; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 430px) { .grid-4, .grid-3 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: rgba(57,255,20,.4); }

.card-media {
  position: relative;
  aspect-ratio: 1 / 1.05;
  background: radial-gradient(120% 90% at 50% 20%, #16201a, #0a0d0c);
  border-bottom: 1px solid var(--line);
}
.card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Studio renders arrive on a black background and must not be cropped -
   sit them on black and contain them instead of covering. */
.card-media.render { background: #000; }
.card-media.render img { object-fit: contain; padding: 6%; }
.split-media.render { background: #000; }

.badge {
  position: absolute; top: 11px; left: 11px; z-index: 2;
  font-size: 10px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase;
  color: #04210a; background: var(--g); padding: 5px 9px; border-radius: 6px;
}

.card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.card-title { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.card-title h3 { font-size: 17px; }
.price { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--g); white-space: nowrap; }
.card-desc { font-size: 13px; color: var(--m); }

/* ---------- feature / step blocks ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { display: flex; gap: 14px; }
.step b { font-family: 'Playfair Display', serif; color: var(--g); font-size: 24px; line-height: 1; flex: 0 0 auto; }
.step strong { display: block; color: var(--t); font-weight: 600; font-size: 16px; margin-bottom: 3px; }
.step p { font-size: 14.5px; color: var(--m); }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; gap: 11px; font-size: 15px; color: var(--m); }
.feature-list li::before { content: '▸'; color: var(--g); flex: 0 0 auto; font-size: 13px; line-height: 1.7; }
.feature-list b { color: var(--t); font-weight: 600; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split h2 { font-size: clamp(28px, 4vw, 40px); margin: 10px 0 16px; }
.split p { color: var(--m); margin-bottom: 18px; }
.split-media { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--panel); }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 76px 0;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(57,255,20,.12), transparent 70%),
    var(--panel);
  border-top: 1px solid var(--line);
}
.cta-band h2 { font-size: clamp(30px, 4.6vw, 46px); margin-bottom: 14px; }
.cta-band p { color: var(--m); max-width: 560px; margin: 0 auto 26px; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: 54px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid img { height: 30px; width: auto; margin-bottom: 14px; }
.footer-grid p { color: var(--m); font-size: 14px; max-width: 300px; }
.footer-grid h4 { font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--t); margin-bottom: 14px; }
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-grid ul a { text-decoration: none; color: var(--m); font-size: 14px; transition: color .16s; }
.footer-grid ul a:hover { color: var(--g); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: var(--m); font-size: 13px;
}

/* ---------- page header (interior pages) ---------- */
.page-head {
  padding: 62px 0 34px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(70% 70% at 50% 0%, rgba(57,255,20,.07), transparent 70%), var(--bg);
}
.page-head h1 { font-size: clamp(34px, 6vw, 58px); margin: 8px 0; }
.page-head p { color: var(--m); max-width: 600px; margin: 14px auto 0; }

/* ---------- prose (size guide, policies) ---------- */
.prose { padding: 50px 0 70px; }
.prose h2 { font-size: 28px; margin: 38px 0 14px; }
.prose h3 { font-size: 20px; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--m); font-size: 15.5px; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 16px 20px; display: flex; flex-direction: column; gap: 7px; }
.prose strong { color: var(--t); }
.prose a { color: var(--g); }

table.tbl { width: 100%; border-collapse: collapse; margin: 18px 0 26px; font-size: 14.5px; }
table.tbl th, table.tbl td { border: 1px solid var(--line); padding: 10px 13px; text-align: left; }
table.tbl th { background: var(--panel); color: var(--t); font-weight: 600; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
table.tbl td { color: var(--m); }
table.tbl tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.table-scroll { overflow-x: auto; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 10px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; color: var(--m); }
input, select, textarea {
  width: 100%;
  background: #0a0d0c;
  border: 1px solid var(--line-2);
  color: var(--t);
  border-radius: 8px;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 15px;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--g); }
input:disabled { opacity: .4; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }


/* ---------- trusted-by strip ---------- */
.trusted { border-bottom: 1px solid var(--line); padding: 26px 0 30px; }
.trusted-lab {
  text-align: center; font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: #6E7473; margin-bottom: 14px;
}
.trusted-list {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 26px; margin: 0;
}
.trusted-list li {
  font-size: 14.5px; font-weight: 500; color: #C2C7C6; white-space: nowrap;
}
@media (max-width: 640px) { .trusted-list li { font-size: 13px; } .trusted-list { gap: 8px 16px; } }

/* ---------- 5-across design grid ---------- */
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1040px) { .grid-5 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 820px)  { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .grid-5 { grid-template-columns: repeat(2, 1fr); } }

.grid-note {
  text-align: center; color: var(--m); font-size: 14px; margin-top: 28px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.grid-note a { color: var(--g); text-decoration: none; white-space: nowrap; }
.grid-note a:hover { text-decoration: underline; }

/* ---------- price grid ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .price-grid { grid-template-columns: 1fr; } }
.price {
  border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.02);
  padding: 20px; display: flex; flex-direction: column; gap: 4px;
}
.price span { font-size: 13.5px; color: var(--m); }
.price b {
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--g);
}
.price em { font-style: normal; font-size: 12.5px; color: #6E7473; }

/* ---------- 4-up steps ---------- */
.steps-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .steps-4 { grid-template-columns: repeat(2, 1fr); gap: 26px; } }
@media (max-width: 560px) { .steps-4 { grid-template-columns: 1fr; } }
