/* The Spiral Squad — brand-aligned styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

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

:root {
  --brand-yellow: #FCB121;
  --brand-charcoal: #231F20;
  --brand-white: #FFFFFF;
  --charcoal-muted: rgba(35, 31, 32, 0.6);
  --white-muted: rgba(255, 255, 255, 0.6);
  --white-soft: rgba(255, 255, 255, 0.85);
  --border-dark: rgba(35, 31, 32, 0.12);
  --radius: 3px;
  --max-w: 1100px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--brand-white);
  color: var(--brand-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- layout ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* ---------- nav ---------- */
.nav {
  background: var(--brand-charcoal);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--brand-yellow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { height: 44px; width: auto; display: block; }
.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a {
  text-decoration: none;
  color: var(--white-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--brand-yellow); }

/* ---------- hero ---------- */
.hero {
  background: var(--brand-charcoal);
  padding: 96px 0 88px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--brand-yellow);
  color: var(--brand-charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--brand-white);
}
.hero h1 span { color: var(--brand-yellow); }
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--white-muted);
  max-width: 540px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.75;
}

/* ---------- services section (white) ---------- */
.section { padding: 80px 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--brand-charcoal);
}
.section-body {
  font-size: 1rem;
  color: var(--charcoal-muted);
  max-width: 580px;
  line-height: 1.75;
  font-weight: 400;
}

/* ---------- cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border: 1px solid var(--brand-charcoal);
}
.card {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--brand-charcoal);
  background: var(--brand-white);
}
.card:last-child { border-right: none; }
.card-bar {
  width: 36px;
  height: 3px;
  background: var(--brand-yellow);
  margin-bottom: 22px;
}
.card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-charcoal);
  line-height: 1.3;
}
.card p {
  font-size: 0.88rem;
  color: var(--charcoal-muted);
  line-height: 1.65;
  font-weight: 400;
}

/* ---------- how we work (yellow section) ---------- */
.section-yellow {
  background: var(--brand-yellow);
  padding: 80px 0;
}
.section-yellow .section-label {
  color: var(--brand-charcoal);
  opacity: 0.55;
}
.section-yellow .section-title { color: var(--brand-charcoal); }
.section-yellow .section-body { color: rgba(35,31,32,0.72); max-width: 680px; }

/* ---------- cta (charcoal) ---------- */
.cta-section {
  background: var(--brand-charcoal);
  padding: 88px 0;
  text-align: center;
  border-top: 3px solid var(--brand-yellow);
}
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--brand-white);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-section p {
  color: var(--white-muted);
  max-width: 460px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

/* ---------- footer ---------- */
footer {
  background: var(--brand-charcoal);
  border-top: 2px solid var(--brand-yellow);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 26px; width: auto; display: block; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--brand-yellow); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

/* ---------- privacy page ---------- */
.prose-hero {
  background: var(--brand-charcoal);
  padding: 64px 0 52px;
  border-bottom: 3px solid var(--brand-yellow);
}
.prose-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--brand-white);
}
.prose-hero .effective {
  font-size: 0.85rem;
  color: var(--white-muted);
  font-weight: 500;
}
.prose-wrap { max-width: 740px; margin: 0 auto; padding: 0 32px; }
.prose {
  background: var(--brand-white);
  padding: 60px 0 96px;
}
.prose h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-charcoal);
  margin: 44px 0 12px;
  padding-top: 36px;
  border-top: 1px solid var(--border-dark);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.prose h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.prose p {
  font-size: 0.97rem;
  color: #3A3838;
  margin-bottom: 14px;
  line-height: 1.8;
  font-weight: 400;
}
.prose ul { list-style: none; padding: 0; margin: 0 0 16px; }
.prose ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.97rem;
  color: #3A3838;
  line-height: 1.8;
  margin-bottom: 8px;
  font-weight: 400;
}
.prose ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--brand-yellow);
  font-weight: 700;
}
.prose a {
  color: var(--brand-charcoal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--brand-yellow);
}
.prose a:hover { color: var(--brand-yellow); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card:nth-child(2) { border-right: none; }
  .card:nth-child(3) { border-top: 1px solid var(--brand-charcoal); }
  .card:nth-child(4) { border-right: none; border-top: 1px solid var(--brand-charcoal); }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .prose-wrap { padding: 0 20px; }
  .nav-inner { height: 64px; }
  .nav-logo { height: 38px; }
  .nav-links { display: none; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 56px 0; }
  .section-yellow { padding: 56px 0; }
  .cta-section { padding: 64px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .card { border-right: none; border-top: 1px solid var(--brand-charcoal); }
  .card:first-child { border-top: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
