/* ===================================
   PENTEK SOLUTIONS – EXECUTIVE STYLE SYSTEM
   Clean Production Build
=================================== */

/* ===== GLOBAL RESET ===== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: #f3f6f9;
  color: #1e2a33;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== BRAND COLORS ===== */

:root {
  --navy: #0f1b2d;
  --navy-light: #0a2a43;
  --executive-blue: #163a59;
  --accent-gold: #cfa64a;
  --soft-gold: #e7c873;
  --panel-bg: #f4f7fa;
}

/* ===== TYPOGRAPHY ===== */

h1, h2, h3, h4 {
  color: var(--executive-blue);
}

p {
  font-size: 18px;
  margin-bottom: 18px;
}

/* ===== CONTAINER ===== */

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===================================
   HEADER
=================================== */

.site-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  text-align: center;
  padding: 50px 20px 30px;
}

.site-logo {
  width: 310px;
  margin: 0 auto;
}

/* ===================================
   HERO SECTION
=================================== */

.hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  text-align: center;
  padding: 35px 20px 50px;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.2;
  color: #e7c873;
  margin-bottom: 14px;
}

.hero p {
  font-size: 1.05rem;
  color: #e7c873;
  max-width: 850px;
  margin: auto;
}

/* ===================================
   STANDARD SECTIONS
=================================== */

section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

h2 {
  font-size: 2.3rem;
  margin-bottom: 14px;
  text-align: center;
}

.accent {
  width: 70px;
  height: 4px;
  background: var(--accent-gold);
  margin: 0 auto 40px;
}

/* ===================================
   ABOUT SECTION
=================================== */

.about {
  background: #eef2f6;
}

.about-content {
  max-width: 760px;
  margin: auto;
  background: var(--panel-bg);
  padding: 50px 60px;
  border-radius: 6px;
  border-left: 4px solid var(--accent-gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.about-content p {
  color: var(--executive-blue);
  line-height: 1.9;
}

.about-content strong {
  font-size: 20px;
}

/* ===================================
   SERVICES
=================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.card {
  background: white;
  border-radius: 14px;
  padding: 38px 32px;
  border-left: 6px solid var(--accent-gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  color: var(--executive-blue);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card p {
  color: var(--executive-blue);
  font-size: 1.05rem;
}

/* ===================================
   FEATURE SECTION
=================================== */

.feature-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.feature-section h2 {
  color: var(--soft-gold);
}

.feature-section p {
  max-width: 800px;
  margin: auto;
  color: #d9e4ec;
  font-size: 1.15rem;
}

/* ===================================
   LEADERSHIP + ENDORSEMENTS
=================================== */

.leadership-grid,
.endorsements-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 30px;
}

.leadership-photo img,
.endorsement-photo img {
  width: 240px;
  border-radius: 10px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

/* ===================================
   INSIGHTS SECTION
=================================== */

.insights-section {
  background: #f7f9fc;
  padding-top: 70px;
  padding-bottom: 60px;
}

.insights-section h2 {
  color: var(--accent-gold);
}

.insights-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--executive-blue);
}

.insights-section .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.insights-section em {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.6px;
  color: #6b7a88;
  margin-bottom: 10px;
}

.read-more {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* ===================================
   CONTACT + ENGAGEMENT SPACING
=================================== */

#engagement {
  padding-bottom: 20px;
}

#schedule {
  padding-top: 20px;
}

/* ===================================
   FOOTER
=================================== */

footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #6a7b8a;
}

/* ===================================
   MOBILE
=================================== */

@media (max-width: 768px) {

  .site-logo {
    width: 200px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .leadership-grid,
  .endorsements-content {
    grid-template-columns: 1fr;
  }

}

/* HEADER LOGO SIZE */

.site-logo {
  width: 310px;
  margin: 0 auto;
}

/* HERO FINAL SIZE LOCK */

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1.2;
  color: #e7c873;
  margin-bottom: 14px;
}

.hero p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: #e7c873;
  max-width: 850px;
  margin: auto;
}
/* INSIGHTS HERO TEXT COLOR */

.insights-page .hero h1,
.insights-page .hero p {
  color: var(--executive-blue);
}
/* FINAL HEADER LOGO SIZE */

.site-header .site-logo {
  width: 340px;
  max-width: none;
}
.insights-hero h1,
.insights-hero p {
  color: #e7c873 !important;
}