/**
 * Base Typography & Layout
 * Sales Fundas Theme by Infineural Technologies
 */

body {
  font-family: var(--fb);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

/* Text helpers */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--fd);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-intro {
  font-size: 18px;
  color: var(--g2);
  max-width: 640px;
  line-height: 1.8;
}

.section-intro.light { color: rgba(255,255,255,.72); }

/* Pull quote */
.pull-quote {
  font-family: var(--fd);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
  border-left: 3px solid var(--gold);
  padding-left: 28px;
  font-style: italic;
}

/* Generic page hero (inner pages) */
.inner-hero {
  background: var(--navy);
  padding: 120px 0 80px;
  text-align: center;
}

.inner-hero .eyebrow { color: var(--gold); }
.inner-hero .section-title { color: var(--white); }
.inner-hero p { color: rgba(255,255,255,.7); }

/* Align helpers */
.text-center { text-align: center; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 6px; }

/* WordPress alignment classes */
.alignleft  { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.alignfull  { margin-left: calc(-1 * var(--max) / 2); margin-right: calc(-1 * var(--max) / 2); max-width: 100vw; }

/* WordPress pagination */
.wp-pagenavi,
.navigation.pagination {
  text-align: center;
  margin: 64px 0 0;
}

.nav-links .page-numbers {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 4px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--navy);
  transition: background var(--t-fast), color var(--t-fast);
}

.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Responsive */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
}
