/* ShopConnect Pro — Cult-preview structural overrides
   Loads AFTER base styles.css.

   Founder revision pass (2026-05-24):
   - KEEP all existing colors, fonts, buttons, eyebrows, navs from live site
   - This file now ONLY adds NEW page structures (Our Story, Standing Position,
     Named-Practice Callouts) using the SAME color + font system as the live site
   - No visual identity shift. Pure copy + new-page repositioning.
*/

/* ============ NAV FIT-FIX ============ */
/* "Our Story" + "Log in" pushed the nav past its width budget. Force every
   nav item to stay on one line and tighten the gap so everything fits
   without wrapping. */

.brand,
.brand span {
  white-space: nowrap;
}

.nav-links {
  flex-wrap: nowrap;
}

.nav-links a {
  white-space: nowrap;
}

/* Tighten gap so all 7 nav items + brand + 2 CTAs fit on one row. */
@media (min-width: 900px) {
  .nav-links {
    gap: 22px;
  }
}

/* Compress more on narrower desktops (900-1180px) to avoid wraps. */
@media (min-width: 900px) and (max-width: 1180px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13.5px; }
}

/* ============ OUR STORY PAGE ============ */
/* Editorial layout for the renamed manifesto. Uses live-site Inter + accent
   colors. */

.manifesto-page {
  background: var(--bg);
  padding-block: clamp(80px, 10vw, 144px) clamp(64px, 8vw, 112px);
}

.manifesto-page .container {
  max-width: 720px;
}

.manifesto-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-deep);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 24px;
}

.manifesto-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 48px;
}

.manifesto-body {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 400;
}

.manifesto-body p {
  margin: 0 0 1.4em;
}

.manifesto-body p:first-of-type {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}

.manifesto-takeitback {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin: 56px 0 24px;
  display: block;
}

.manifesto-signature {
  font-size: 14px;
  color: var(--ink-3);
  font-style: italic;
  margin-top: 32px;
}

.manifesto-rule {
  border: 0;
  border-top: 1px solid var(--line-2);
  margin: 56px 0;
  width: 64px;
}

/* ============ STANDING POSITION PAGE ============ */

.standing-page {
  background: var(--bg);
  padding-block: clamp(80px, 10vw, 144px) clamp(64px, 8vw, 112px);
}

.standing-page .container {
  max-width: 760px;
}

.standing-commitments {
  margin: 64px 0;
  list-style: none;
  padding: 0;
  counter-reset: commitment;
}

.standing-commitments li {
  counter-increment: commitment;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}

.standing-commitments li:last-child {
  border-bottom: 1px solid var(--line);
}

.standing-commitments li::before {
  content: counter(commitment, decimal-leading-zero);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-deep);
  line-height: 1;
}

.standing-commitments h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}

.standing-commitments p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.standing-exclusions {
  margin-top: 64px;
  padding: 32px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
}

.standing-exclusions h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
}

.standing-exclusions p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

/* ============ NAMED-PRACTICE CALLOUTS ============ */
/* Used across pages to call out a specific industry practice the brand
   refuses. Uses live-site accent color, not a new ink-navy. */

.practice-callout {
  margin: 56px 0;
  padding: 32px;
  border-left: 4px solid var(--accent-deep);
  background: var(--accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.practice-callout-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  display: block;
  margin-bottom: 8px;
}

.practice-callout-name {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}

.practice-callout-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* Contact form trust line */
.form-trust {
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 8px;
}

/* Mobile: full-width submit button */
@media (max-width: 768px) {
  #contact-form .btn {
    width: 100%;
    justify-content: center;
  }
}
