/* SoccerMagic static page style for Woven Patch Store */

:root {
  --bg: #f6f1e8;
  --paper: #ffffff;
  --ink: #1d1d1d;
  --muted: #5f5f5f;
  --accent: #8b1e1e;
  --accent-dark: #641313;
  --line: #ddd3c4;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

.wrap {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: linear-gradient(135deg, #111 0%, #2a1717 70%, #3b1717 100%);
  color: white;
  padding: 2.5rem 1rem 2.75rem;
  text-align: center;
  border-bottom: 6px solid var(--accent);
}

.masthead-copy { text-align: center; }
.masthead-slogan {
  margin: .85rem auto 0;
  color: #d7b45c;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
}
.masthead-description {
  margin: 1rem auto 0;
  max-width: 820px;
  color: #f1e9dc;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.hero-section { padding: 2rem 0 1rem; }
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.hero-copy { text-align: left; }
.eyebrow {
  margin: 0 0 0.75rem;
  color: #f1e9dc;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: bold;
}

.site-header h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -.04em;
  line-height: 1;
}
.hero-copy .eyebrow { color: var(--accent); }
.lead {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.hero-minimum {
  margin: 1rem 0 0;
  color: var(--ink);
}
.hero-samples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.hero-samples img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: .55rem;
  background: #fffaf2;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--accent);
  padding: 0.75rem 1rem;
  text-align: center;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 0.7rem;
  display: inline-block;
}

.page-content { padding: 1rem 0 2rem; }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
}

.card h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.1;
}

.intro p { font-size: 1.05rem; }
.intro .section-eyebrow {
  margin: 0 0 .5rem;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.intro .section-eyebrow + h2 { margin-top: 0; }

.check-list { padding-left: 1.2rem; }

.check-list li { margin-bottom: 0.45rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  background: #fffaf2;
}

.steps span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: inline-grid;
  place-items: center;
  font-weight: bold;
}

.steps h3 { margin: 0.75rem 0 0.35rem; }

.sample-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem;
  background: #fffaf2;
  text-align: center;
}

figure img {
  max-width: 100%;
  height: 140px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.5rem;
}

figcaption {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact { text-align: center; }

footer {
  margin-top: 2.5rem;
  background: #151515;
  color: #f1e9dc;
  padding: 2rem 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-grid p {
  margin: 0;
  color: #efe4d2;
}

@media (max-width: 760px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-samples img { height: 120px; }
  .steps { grid-template-columns: 1fr; }

  .footer-grid {
    display: block;
    text-align: center;
  }

  .nav a { margin: 0.25rem 0.45rem; }
}
