/* Base layout */

html, body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

body {
  line-height: 1.6;
}

/* Main wrapper: constrain width for editorial feel */

.afs-main {
  padding: 0 1.5rem 3rem;
}

/* Jumbotron (header) */

:root {
  --jumbotron-padding-y: 3.5rem;
}

.jumbotron {
  padding-top: var(--jumbotron-padding-y);
  padding-bottom: 2rem;
  margin-bottom: 0;
  background-color: #000;
  border-bottom: 1px solid #222;
}

.jumbotron .container {
  max-width: 640px;
}

.jumbotron-heading {
  font-weight: 600;
  font-size: 2.4rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.jumbotron-heading em {
  font-style: normal;
  opacity: 0.9;
}

.text-small {
  font-size: 0.9rem;
}

.text-muted {
  color: #aaa !important;
}

/* Generic container override for sections */

.afs-section .container,
.afs-footer .container {
  max-width: 860px;
}

/* Section base styling */

.afs-section {
  padding: 4.5rem 0 4rem;
}

.afs-section-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.afs-section-body {
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Paragraphs & lists */

.afs-section-body p {
  margin-bottom: 1.4rem;
}

.afs-section-body ul {
  margin: 1.2rem 0 1.4rem;
  padding-left: 1.2rem;
}

.afs-section-body li {
  margin-bottom: 0.6rem;
}

/* Pullquotes: used sparingly as editorial beats */

.afs-pullquote {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 2.3rem 0 2.3rem;
  padding-left: 1.2rem;
  border-left: 2px solid #fff;
  opacity: 0.9;
  line-height: 1.6;
}

/* Section-specific tweaks for pacing */

/* Intro: slightly more breathing room at top */

.afs-section-intro {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

/* Services: feels like a “chapter” – a bit denser */

.afs-section-services .afs-section-body {
  max-width: 760px;
}

/* Clients: lighter, list-centric */

.afs-section-clients .afs-section-title {
  margin-bottom: 1.25rem;
}

.afs-section-clients .afs-section-body ul {
  columns: 1;
}

/* About: credibility block, slightly heavier */

.afs-section-about .afs-section-title {
  margin-bottom: 1.5rem;
}

.afs-section-about .afs-section-body {
  max-width: 780px;
}

/* Contact: quiet CTA, centered */

.afs-section-contact {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  text-align: center;
}

.afs-section-contact .afs-section-body {
  max-width: 520px;
  margin: 0 auto;
}

/* Email link in contact */

.afs-section-contact a {
  text-decoration: underline;
}

/* Divider between sections for editorial rhythm */

.afs-divider {
  width: 80px;
  height: 1px;
  background: #666;
  opacity: 0.25;
  margin: 0 auto 1.5rem;
}

/* Footer */

.afs-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid #222;
  margin-top: 1rem;
}

.afs-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: #777;
}

/* Links */

a {
  color: #fff;
  text-decoration: underline;
}

a:hover {
  opacity: 0.8;
}

/* Responsive adjustments */

@media (min-width: 992px) {
  .afs-main {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .jumbotron-heading {
    font-size: 2.8rem;
  }

  .afs-section-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .jumbotron img {
    width: 120px;
    height: 120px;
  }

  .jumbotron-heading {
    font-size: 2rem;
  }

  .afs-section {
    padding: 3.5rem 0 3rem;
  }
}
