/* Strata Custom Apparel — static rebuild (out of Magic Patterns) */

:root {
  --green: #25D366;
  --green-dark: #1fb855;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, .font-display, .btn, nav a, .badge, .logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

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

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 4px solid #000;
}
.site-header .inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.logo svg { width: 28px; height: 28px; }
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
nav.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #000;
  text-decoration: none;
  font-weight: 700;
}
nav.main-nav a:hover { color: var(--gray-600); }
.phone-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
}
.header-actions { display: flex; align-items: center; gap: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-black { background: #000; color: #fff; padding: 0.65rem 1.5rem; font-size: 0.85rem; }
.btn-black:hover { background: #262626; }
.btn-black-lg { background: #000; color: #fff; padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-black-lg:hover { background: #262626; }
.btn-outline { background: #fff; color: #000; border: 4px solid #000; padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-outline:hover { background: #000; color: #fff; }
.btn-green { background: var(--green); color: #fff; padding: 1rem 2.5rem; font-size: 1.1rem; box-shadow: 0 10px 25px rgba(0,0,0,.15); }
.btn-green:hover { background: var(--green-dark); }
.btn-green-block { background: var(--green); color: #fff; padding: 1rem; width: 100%; font-size: 1rem; margin-bottom: 2rem; }
.btn-green-block:hover { background: var(--green-dark); }

/* Hero */
.hero {
  padding: 7rem 1.5rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.badge-black { display: inline-block; background: #000; color: #fff; padding: 0.35rem 1rem; font-size: 0.8rem; letter-spacing: 0.1em; }
.badge-green { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--green); color: #fff; padding: 0.35rem 1rem; font-size: 0.8rem; letter-spacing: 0.1em; }
.hero h1 {
  font-size: 3.4rem;
  line-height: 1.08;
  margin: 0 0 1.5rem;
  max-width: 900px;
}
.hero h1 .light { color: var(--gray-400); }
.hero p.sub {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.hero .fineprint { font-family: 'Inter', sans-serif; text-transform: none; font-weight: 500; color: var(--gray-400); font-size: 0.9rem; }
.hero .fineprint + .fineprint { margin-top: 0.25rem; }

/* Stats bar */
.stats-bar {
  background: #000;
  color: #fff;
  padding: 2rem 1.5rem;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}
.stats-bar .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stats-bar .stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Section shell */
section { padding: 6rem 1.5rem; }
.bg-gray { background: var(--gray-50); }
.border-top { border-top: 4px solid #000; }
.border-y { border-top: 4px solid #000; border-bottom: 4px solid #000; }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { font-size: 2.6rem; margin: 0 0 0.75rem; }
.section-head .underline { width: 70px; height: 4px; background: #000; margin: 0 auto; }
.section-head p { font-family: 'Inter', sans-serif; text-transform: none; font-weight: 500; color: var(--gray-500); max-width: 700px; margin: 1rem auto 0; font-size: 1.1rem; }

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.work-card {
  position: relative;
  overflow: hidden;
  border: 4px solid #000;
  background: var(--gray-200);
  aspect-ratio: 3/4;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.5s;
}
.work-card:hover img { filter: grayscale(1); }
.work-card .cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: #000;
  color: #fff;
  padding: 0.6rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
}

/* Artwork help */
.artwork-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.artwork-help img { border: 4px solid #000; }
.artwork-help h2 { font-size: 2.6rem; margin: 0 0 1rem; line-height: 1.15; }
.artwork-help p { font-family: 'Inter', sans-serif; text-transform: none; font-weight: 500; color: var(--gray-600); font-size: 1.1rem; margin-bottom: 1.5rem; }

/* Quote form */
.quote-box {
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
  border: 4px solid #000;
  padding: 3rem;
}
.quote-box .divider { display: flex; align-items: center; gap: 1rem; color: var(--gray-400); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 1.5rem; }
.quote-box .divider::before, .quote-box .divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.8rem; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--gray-300);
  padding: 0.75rem;
  font-size: 1rem;
  background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #000; }
.form-group textarea { resize: none; min-height: 100px; }
.quote-box .fineprint { text-align: center; color: var(--gray-400); font-family: 'Inter', sans-serif; font-weight: 500; text-transform: none; font-size: 0.85rem; margin-top: 0.75rem; }

/* Compare */
.compare {
  display: flex;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
  flex-wrap: wrap;
}
.compare-card { flex: 1; min-width: 280px; padding: 2rem; }
.compare-card.them { background: #fff; border: 4px solid var(--gray-300); opacity: 0.85; }
.compare-card.us { background: #000; color: #fff; border: 4px solid #000; position: relative; transform: scale(1.05); }
.compare-card h3 { text-align: center; margin-bottom: 1.5rem; font-size: 1.4rem; }
.compare-card.them h3 { color: var(--gray-500); }
.compare-card .best-value {
  position: absolute; top: -1rem; left: 50%; transform: translateX(-50%);
  background: #fff; color: #000; padding: 0.3rem 1rem; font-size: 0.8rem;
  border: 2px solid #000; font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 0.1em;
}
.compare-card ul { list-style: none; margin: 0; padding: 0; }
.compare-card li { display: flex; align-items: center; gap: 0.75rem; font-family: 'Inter', sans-serif; font-weight: 600; padding: 0.6rem 0; }
.compare-card.them li { color: var(--gray-600); }
.compare-card .icon-x, .compare-card .icon-check {
  flex-shrink: 0; width: 1.4rem; height: 1.4rem; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 0.9rem; border-radius: 2px;
}
.compare-card.them .icon-x { background: var(--gray-300); color: #fff; }
.compare-card.us .icon-check { background: #fff; color: #000; }

/* Why cards */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { background: #fff; border: 4px solid #000; padding: 2rem; text-align: center; transition: background-color .3s, color .3s; }
.why-card:hover { background: #000; color: #fff; }
.why-card .icon-circle {
  width: 4rem; height: 4rem; border-radius: 50%; background: #000; color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  transition: background-color .3s, color .3s;
}
.why-card:hover .icon-circle { background: #fff; color: #000; }
.why-card h3 { font-size: 1.05rem; margin: 0 0 0.75rem; letter-spacing: 0.03em; }
.why-card p { font-family: 'Inter', sans-serif; text-transform: none; font-weight: 500; color: var(--gray-600); font-size: 0.95rem; }
.why-card:hover p { color: var(--gray-300); }

/* Testimonials (dark section) */
.testimonials-section { background: #000; color: #fff; }
.testimonials-section .section-head p { color: var(--gray-400); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 950px; margin: 0 auto; }
.testimonial-card { background: var(--gray-900); border: 2px solid #262626; padding: 2rem; }
.stars { color: #fff; letter-spacing: 0.2em; margin-bottom: 1rem; font-size: 1.1rem; }
.testimonial-card p.quote { font-family: 'Inter', sans-serif; text-transform: none; font-weight: 500; font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.5rem; }
.testimonial-card .author { font-family: 'Oswald', sans-serif; font-weight: 700; text-transform: uppercase; font-size: 0.95rem; }
.testimonial-card .role { font-family: 'Inter', sans-serif; text-transform: none; color: var(--gray-500); font-size: 0.9rem; font-weight: 500; }

/* CTA */
.cta-section { text-align: center; }
.cta-section h2 { font-size: 2.8rem; margin: 0 0 1rem; }
.cta-section p { font-family: 'Inter', sans-serif; text-transform: none; font-weight: 500; color: var(--gray-600); font-size: 1.15rem; max-width: 600px; margin: 0 auto 0.75rem; }
.cta-section .fineprint { font-family: 'Inter', sans-serif; text-transform: none; font-weight: 500; color: var(--gray-400); font-size: 0.9rem; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item button {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
  color: #000;
}
.faq-item .plus {
  flex-shrink: 0;
  width: 1.75rem; height: 1.75rem;
  background: #000; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 400;
  transition: transform .2s;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-transform: none;
  color: var(--gray-700);
  line-height: 1.6;
  padding: 0 3rem 1.5rem 0;
  margin: 0;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 3rem 1.5rem;
  border-top: 1px solid #262626;
  text-align: center;
}
footer .logo { justify-content: center; margin-bottom: 1.5rem; color: #fff; }
footer .footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem;
  margin-bottom: 1.5rem; color: var(--gray-400); font-weight: 500; font-family: 'Inter', sans-serif;
}
footer .footer-links a { color: var(--gray-400); text-decoration: none; }
footer .footer-links a:hover { color: #fff; }
footer .copyright { color: var(--gray-500); font-size: 0.85rem; font-family: 'Inter', sans-serif; }

/* Mobile nav */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-menu { display: none; }

/* Responsive */
@media (max-width: 900px) {
  nav.main-nav, .header-actions .phone-link, .header-actions .btn-black { display: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2.3rem; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .compare { flex-direction: column; }
  .compare-card.us { transform: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .artwork-help { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-bar .wrap { grid-template-columns: 1fr; gap: 1rem; }
}
