/* =========================================================
   Full Stop Technics — Mockup styles
   Palette pulled from current fullstoptechnics.com
   --gold      #cb9f41   Primary brand gold
   --gold-lt   #e6c158   Accent / hover gold
   --ink       #1a1a1a   Body text
   --cream     #f6f1e6   Page background / soft panels
   --tan       #e8dcc4   Secondary tan accent
   --slate     #2a2620   Dark sections (warm black)
   --line      #d9cdb3   Borders / dividers
   ========================================================= */

:root {
  --gold: #cb9f41;
  --gold-lt: #e6c158;
  --ink: #1a1a1a;
  --cream: #f6f1e6;
  --tan: #e8dcc4;
  --slate: #2a2620;
  --line: #d9cdb3;
  --muted: #6b6357;
}

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

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); text-decoration: underline; }

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- TOP NAV ---------- */
.topnav {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topnav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.topnav .logo img { height: 48px; }
.topnav nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.topnav nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.topnav nav a.active,
.topnav nav a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ---------- PAGE TITLE BAND ---------- */
.title-band {
  background: var(--gold);
  color: #fff;
}
.title-band .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.title-band h1 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.title-band .contact {
  font-size: 13px;
  text-align: right;
  letter-spacing: 0.05em;
}
.title-band .contact span { display: block; opacity: 0.85; font-size: 11px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(20,16,8,0.55), rgba(20,16,8,0.7)),
    url('https://images.unsplash.com/photo-1569629743817-70d8db6c323b?w=1800&q=80') center/cover no-repeat;
  color: #fff;
  padding: 120px 0 140px;
  min-height: 460px;
}
.hero.hero-short { padding: 80px 0 90px; min-height: 320px; }
.hero h2 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: 24px;
}
.hero h2 .accent {
  background: var(--gold);
  padding: 2px 10px;
  display: inline-block;
}
.hero p { max-width: 600px; font-size: 17px; opacity: 0.92; margin-bottom: 28px; }
.hero .cta {
  display: inline-block;
  color: var(--gold-lt);
  border-bottom: 2px solid var(--gold-lt);
  padding-bottom: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
}
.hero .cta:hover { color: #fff; border-color: #fff; text-decoration: none; }

/* hero-history variant for company page */
.hero-history {
  background:
    linear-gradient(rgba(20,16,8,0.65), rgba(20,16,8,0.75)),
    url('https://images.unsplash.com/photo-1556388158-158ea5ccacbd?w=1800&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  min-height: 380px;
  color: #fff;
  padding: 60px 0;
}
.hero-history .inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-history h2 {
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-history p { font-size: 15px; line-height: 1.7; opacity: 0.9; }
.hero-history .stats { text-align: left; }
.hero-history .stats .stat {
  margin-bottom: 28px;
}
.hero-history .stats .num {
  font-size: 56px;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.hero-history .stats .lbl {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

/* ---------- SUB-HERO CONTACT STRIP ---------- */
.contact-strip {
  background: var(--slate);
  color: #fff;
  padding: 14px 0;
  font-size: 14px;
  text-align: center;
}
.contact-strip a { color: var(--gold-lt); }
.contact-strip .sep { margin: 0 14px; opacity: 0.4; }

/* ---------- DARK ADVANTAGE PANEL ---------- */
.dark-panel {
  background: var(--slate);
  color: #fff;
  padding: 90px 0;
}
.dark-panel .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.dark-panel .visual {
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),
    url('https://images.unsplash.com/photo-1583416750470-965b2707b355?w=1200&q=80') center/cover no-repeat;
}
.dark-panel .visual span {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dark-panel h3 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.dark-panel h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1.15;
}
.dark-panel h2 .gold { color: var(--gold-lt); }
.dark-panel p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 22px;
}
.dark-panel .more {
  color: var(--gold-lt);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  border-bottom: 1px solid var(--gold-lt);
  padding-bottom: 3px;
}

/* ---------- CALLOUT / TEASER ---------- */
.teaser {
  background: #0e0a05;
  color: #fff;
  padding: 110px 0;
  text-align: center;
  position: relative;
}
.teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542296332-2e4473faf563?w=1800&q=80') center/cover no-repeat;
  opacity: 0.15;
}
.teaser .inner { position: relative; max-width: 800px; margin: 0 auto; padding: 0 24px; }
.teaser h2 {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.teaser h2 .gold { color: var(--gold-lt); font-weight: 700; }
.teaser p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.7;
}

/* ---------- STATS + CARDS ROW ---------- */
.stats-cards {
  padding: 80px 0;
  background: var(--cream);
}
.stats-cards .inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stats-cards h3 {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
.stats-cards .stat-block { margin-bottom: 32px; }
.stats-cards .num {
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stats-cards .lbl {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.client-card {
  background: #fff;
  border: 1px solid var(--line);
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.04em;
}
.client-card.muted { color: var(--muted); font-weight: 500; }

/* ---------- VALUES (3-icon row) ---------- */
.values {
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.values .lead {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 50px;
  letter-spacing: 0.04em;
}
.values .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.values .pillar { padding: 0 12px; }
.values .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.values .icon svg { width: 48px; height: 48px; }
.values h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.values p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.55;
}

/* ---------- TWO COL NARRATIVE ---------- */
.two-col {
  background: #fff;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}
.two-col .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.two-col h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 12px;
  display: inline-block;
  width: 100%;
}
.two-col p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 16px;
}

/* ---------- PROGRAMS LIST (Solutions page) ---------- */
.programs {
  padding: 100px 0;
  background: var(--slate);
  color: #fff;
}
.programs .inner {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.programs .num-wrap { position: relative; }
.programs .num-big {
  font-size: 200px;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(230,193,88,0.55);
  font-weight: 800;
}
.programs .num-label {
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
}
.programs .item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}
.programs .item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }
.programs .item h4 {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 6px;
  font-weight: 700;
}
.programs .item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.programs .closer {
  margin-top: 30px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.programs .closer a { color: var(--gold-lt); }

/* ---------- 4-CARD CAPABILITIES (Solutions) ---------- */
.capabilities {
  padding: 90px 0;
  background: var(--cream);
}
.capabilities h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: var(--ink);
}
.capabilities h2 .gold { color: var(--gold); }
.capabilities .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.cap-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cap-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cap-card p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.65;
}
.cap-card .platforms {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  margin-top: auto;
}

/* ---------- ADVANTAGE GRID (Solutions) ---------- */
.advantage {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}
.advantage h2 {
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.advantage .sub {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 0.02em;
}
.advantage .sub .gold { color: var(--gold); }
.advantage .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.advantage .grid.row2 { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin-top: 40px; }
.advantage .pt h3 {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.advantage .pt p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- GET TO KNOW CALLOUT ---------- */
.callout {
  padding: 80px 0;
  background: var(--tan);
}
.callout .inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.callout .brand-block {
  background: var(--gold);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.callout .brand-block img { max-width: 100%; height: auto; }
.callout h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.callout p {
  font-size: 15px;
  line-height: 1.7;
}

/* ---------- CONTACT PAGE HQ BLOCK ---------- */
.hq {
  background: var(--slate);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.hq h2 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.hq .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.hq .item .icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.hq .item .icon svg { width: 28px; height: 28px; }
.hq .item p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.hq .item a { color: var(--gold-lt); }
.hq .career-cta {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hq .career-cta p {
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.hq .btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 30px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}
.hq .btn:hover { background: var(--gold-lt); text-decoration: none; }

/* ---------- GLOBAL REACH STRIP ---------- */
.global-strip {
  background: var(--tan);
  padding: 22px 0;
  text-align: center;
  font-size: 15px;
  color: var(--ink);
}
.global-strip .icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 12px;
  line-height: 22px;
  font-weight: 700;
}

/* ---------- MAP ---------- */
.map-block {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.map-block h3 {
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.map-block iframe {
  width: 100%;
  max-width: 1000px;
  height: 380px;
  border: 1px solid var(--line);
  display: block;
  margin: 0 auto;
}

/* ---------- CAREERS PAGE ---------- */
.careers-intro {
  padding: 70px 0 40px;
  background: var(--cream);
}
.careers-intro .inner { max-width: 800px; margin: 0 auto; padding: 0 24px; text-align: center; }
.careers-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}
.openings {
  padding: 50px 0 80px;
  background: var(--cream);
}
.openings .inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.openings h2 {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
}
.openings .empty {
  background: #fff;
  border: 1px solid var(--line);
  padding: 40px;
  text-align: center;
  color: var(--ink);
  line-height: 1.7;
}
.openings .empty a { color: var(--gold); font-weight: 600; }
.eeo {
  background: var(--slate);
  color: rgba(255,255,255,0.85);
  padding: 50px 0;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}
.eeo .inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.eeo h3 {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 14px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--slate);
  color: #fff;
  padding: 60px 0 30px;
}
footer .inner {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
footer h4 {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
}
footer p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
footer .newsletter input {
  width: 70%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 13px;
}
footer .newsletter button {
  padding: 10px 16px;
  background: var(--gold);
  border: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
footer .newsletter button:hover { background: var(--gold-lt); }
footer .affiliations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
footer .aff {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
}
footer .aog-block { text-align: left; }
footer .aog-block .phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-lt);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  display: block;
}
footer .aog-block a { color: var(--gold-lt); font-size: 14px; display: block; margin-top: 8px; }
footer .bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
footer .bottom a { color: rgba(255,255,255,0.7); margin: 0 10px; }

/* ---------- REVIEWER NOTE BANNER ---------- */
.reviewer-banner {
  background: #fff8e0;
  border-bottom: 1px solid #ecd98f;
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  color: #6b5a1e;
}
.reviewer-banner strong { color: #5a4a14; }
.reviewer-banner a { color: #8c6f1c; font-weight: 600; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .topnav nav { gap: 16px; }
  .topnav nav a { font-size: 12px; }
  .hero h2 { font-size: 32px; }
  .hero-history .inner,
  .stats-cards .inner,
  .dark-panel .inner,
  .two-col .inner,
  .programs .inner,
  .callout .inner,
  footer .inner { grid-template-columns: 1fr; gap: 40px; }
  .values .grid,
  .capabilities .grid,
  .advantage .grid,
  .hq .grid { grid-template-columns: 1fr 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .programs .num-big { font-size: 120px; }
}
@media (max-width: 600px) {
  .hero h2 { font-size: 26px; }
  .title-band h1 { font-size: 20px; }
  .values .grid,
  .capabilities .grid,
  .advantage .grid,
  .hq .grid,
  .client-grid { grid-template-columns: 1fr; }
}
