/* ===== NAV ===== */
.s-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0 80px;
}

.s-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.s-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

.s-nav-links {
  display: flex;
  gap: 32px;
}

.s-nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

.s-nav-link:hover,
.s-nav-link.active {
  color: var(--ink);
}

/* ===== HERO ===== */
.s-hero {
  padding: 100px 80px 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.s-hero-inner {
  max-width: 900px;
}

.s-hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-hero-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.s-hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

.s-hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: #5A5550;
  max-width: 680px;
  margin-bottom: 44px;
  font-weight: 300;
}

.s-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.s-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
}

.s-btn--cta {
  background: var(--accent);
  color: #fff;
}

.s-btn--cta:hover {
  background: #e0322a;
  transform: translateY(-1px);
}

/* ===== WHAT WE SHIP ===== */
.s-ships {
  padding: 80px;
  border-bottom: 1px solid var(--border);
}

.s-ships-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.s-ships-header {
  margin-bottom: 48px;
  max-width: 720px;
}

.s-ships-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}

.s-ships-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.s-ships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.s-ship {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
}

.s-ship-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.s-ship-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.s-ship-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s-ship-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
  font-weight: 400;
  line-height: 1.55;
}

.s-ship-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== BRIEF-TO-PRODUCTION FLOW ===== */
.s-flow {
  padding: 80px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.s-flow-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.s-flow-header {
  margin-bottom: 56px;
  max-width: 720px;
}

.s-flow-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}

.s-flow-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.s-flow-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.s-step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.s-step-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.s-step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: #5A5550;
  font-weight: 300;
}

/* ===== SOCIAL PROOF STRIP ===== */
.s-proof {
  padding: 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.s-proof-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.s-proof-quote-wrap { }

.s-proof-quote-mark {
  font-family: var(--font-head);
  font-size: 64px;
  font-weight: 800;
  color: var(--accent);
  line-height: 0.6;
  margin-bottom: 20px;
  display: block;
}

.s-proof-quote {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.s-proof-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}

.s-proof-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}

.s-proof-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.s-proof-role {
  font-size: 13px;
  color: var(--mid);
  margin-top: 2px;
}

.s-proof-story {
  font-size: 12px;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.s-proof-link:hover .s-proof-quote-wrap {
  opacity: 0.85;
}

/* ===== PRIMARY CTA BAND ===== */
.s-cta-band {
  padding: 100px 80px;
  background: var(--ink);
  color: #fff;
}

.s-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.s-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.s-cta-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.s-footer {
  padding: 48px 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.s-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.s-footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.s-footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.s-footer-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
}

.s-footer-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.s-footer-link:hover {
  color: rgba(255,255,255,0.8);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .s-nav, .s-hero, .s-ships, .s-flow, .s-proof, .s-cta-band, .s-footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .s-ships-grid {
    grid-template-columns: 1fr;
  }
  .s-flow-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .s-nav, .s-hero, .s-ships, .s-flow, .s-proof, .s-cta-band, .s-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .s-hero { padding-top: 72px; padding-bottom: 64px; }
  .s-hero-headline { font-size: 32px; }
  .s-flow-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .s-hero-actions { flex-direction: column; }
  .s-footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}
