/* ============================================================
   FAULKNER HR SOLUTIONS — MAIN STYLESHEET
   Brand Colors:
     Navy:  #1B3A52
     Gold:  #C49A3C
     Light Navy: #2A4F6E
     Off-White: #F8F7F4
     Light Gray: #EEF0F2
     Dark Text: #1A1A2E
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:        #1B3A52;
  --navy-dark:   #122839;
  --navy-light:  #2A4F6E;
  --gold:        #C49A3C;
  --gold-light:  #D4AE5A;
  --gold-dark:   #A07E28;
  --off-white:   #F8F7F4;
  --light-gray:  #EEF0F2;
  --mid-gray:    #8A9BAD;
  --dark-text:   #1A1A2E;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(27,58,82,0.08);
  --shadow-md:   0 6px 24px rgba(27,58,82,0.12);
  --shadow-lg:   0 16px 48px rgba(27,58,82,0.18);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  all 0.3s ease;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background-color: var(--off-white);
}

.section--navy {
  background-color: var(--navy);
  color: var(--white);
}

.section--navy-dark {
  background-color: var(--navy-dark);
  color: var(--white);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title--white {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--mid-gray);
  max-width: 620px;
  line-height: 1.75;
}

.section-subtitle--white {
  color: rgba(255,255,255,0.75);
}

.gold-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 32px;
  border: none;
}

.gold-rule--center {
  margin: 20px auto 32px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(196,154,60,0.2);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar__contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar__contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.topbar__contact a:hover {
  color: var(--gold);
}

.topbar__tagline {
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo {
  height: 48px;
  width: auto;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
}

.navbar__brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.navbar__brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar__nav a:hover::after,
.navbar__nav a.active::after {
  width: calc(100% - 32px);
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--navy);
}

.navbar__cta {
  margin-left: 16px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.navbar__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-md);
  padding: 16px 0;
  z-index: 999;
}

.navbar__mobile.open {
  display: block;
}

.navbar__mobile a {
  display: block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.navbar__mobile a:last-child {
  border-bottom: none;
}

.navbar__mobile a:hover {
  background: var(--off-white);
  color: var(--gold);
  padding-left: 32px;
}

.navbar__mobile .btn {
  margin: 16px 24px 8px;
  display: block;
  text-align: center;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
  padding: 120px 0 140px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C49A3C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C49A3C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
}

/* ============================================================
   VALUE PROPS — HOME
   ============================================================ */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 4px solid var(--gold);
}

.value-prop {
  padding: 48px 40px;
  border-right: 1px solid var(--light-gray);
  position: relative;
  transition: var(--transition);
}

.value-prop:last-child {
  border-right: none;
}

.value-prop:hover {
  background: var(--off-white);
}

.value-prop__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.value-prop:hover .value-prop__number {
  color: var(--gold-light);
}

.value-prop__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-prop__text {
  font-size: 0.95rem;
  color: #5A6A7A;
  line-height: 1.7;
}

/* ============================================================
   WHO WE ARE — HOME
   ============================================================ */
.who-we-are {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-we-are__image {
  position: relative;
}

.who-we-are__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.who-we-are__image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.who-we-are__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.credential {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #4A5A6A;
  line-height: 1.4;
}

.credential__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.credential__icon svg {
  width: 11px;
  height: 11px;
  fill: var(--navy-dark);
}

.signature {
  font-family: 'Brush Script MT', cursive;
  font-size: 1.8rem;
  color: var(--navy);
  margin: 16px 0 4px;
}

.signature-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--navy);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stat {
  padding: 32px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child {
  border-right: none;
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  font-weight: 500;
}

/* ============================================================
   SERVICES PREVIEW — HOME
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
}

.service-card__number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card__text {
  font-size: 0.92rem;
  color: #5A6A7A;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card__link:hover {
  gap: 10px;
}

/* ============================================================
   WORKFLOW SECTION
   ============================================================ */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.workflow-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold-light) 100%);
  z-index: 0;
}

.workflow-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.workflow-step__number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
}

.workflow-step:hover .workflow-step__number {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.1);
}

.workflow-step__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.workflow-step__text {
  font-size: 0.88rem;
  color: #5A6A7A;
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 32px;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--light-gray);
  line-height: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.testimonial-card__text {
  font-size: 1rem;
  color: #3A4A5A;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.testimonial-card__role {
  font-size: 0.82rem;
  color: var(--mid-gray);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C49A3C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section__content {
  position: relative;
  z-index: 2;
}

.cta-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.mv-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border-top: 4px solid var(--gold);
}

.mv-card__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mv-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.mv-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.mv-card__text {
  font-size: 0.92rem;
  color: #5A6A7A;
  line-height: 1.7;
}

.mv-card__list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mv-card__list li {
  font-size: 0.88rem;
  color: #4A5A6A;
  padding-left: 16px;
  position: relative;
}

.mv-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.consultant-bio {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

.consultant-bio__photo {
  position: relative;
}

.consultant-bio__photo img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.consultant-bio__photo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.consultant-bio__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.portfolio-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.portfolio-item__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 48px;
}

.portfolio-item__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-full-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-full-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-full-card__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.service-full-card__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-full-card__icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold);
}

.service-full-card__num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.service-full-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.service-full-card__text {
  font-size: 0.93rem;
  color: #5A6A7A;
  line-height: 1.75;
}

.service-full-card__cta {
  margin-top: auto;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-item__icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-gray);
}

.feature-item__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.feature-item__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-item__text {
  font-size: 0.87rem;
  color: #5A6A7A;
  line-height: 1.6;
}

/* ============================================================
   INSIGHTS PAGE
   ============================================================ */
.insights-redirect {
  text-align: center;
  padding: 120px 0;
}

.insights-redirect__icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.insights-redirect__icon svg {
  width: 48px;
  height: 48px;
  fill: var(--gold);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.contact-info__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.97rem;
  color: var(--dark-text);
  font-weight: 500;
}

.contact-info__value a {
  color: var(--navy);
  transition: color 0.2s;
}

.contact-info__value a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: var(--gold);
  margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--dark-text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,82,0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231B3A52' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.85rem;
  color: #5A6A7A;
  line-height: 1.5;
  cursor: pointer;
}

.form-success {
  display: none;
  background: #EBF7F0;
  border: 1px solid #6DBF8A;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #1A6B3A;
  font-size: 0.9rem;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}

.form-success.show {
  display: flex;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--off-white);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  fill: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 24px 24px;
  font-size: 0.93rem;
  color: #4A5A6A;
  line-height: 1.75;
  border-top: 1px solid var(--light-gray);
  padding-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

/* 4-column layout: Brand | Services | Industries+Locations | Contact */
.footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1.4fr 1.4fr 1.6fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
}

/* Credential tags in brand column */
.footer__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.footer__credential-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  fill: var(--gold);
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer__contact-item a:hover {
  color: var(--gold);
}

/* CTA button in contact column */
.footer__cta-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 11px 22px;
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease;
  letter-spacing: 0.02em;
}

.footer__cta-btn:hover {
  background: var(--gold-dark);
}

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer__bottom-links a:hover {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer: 2 cols at tablet */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .consultant-bio {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .topbar {
    display: none;
  }

  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar {
    position: sticky;
  }

  .hero {
    min-height: 88vh;
    padding: 80px 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .value-props {
    grid-template-columns: 1fr;
  }

  .value-prop {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
  }

  .who-we-are {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .who-we-are__image {
    max-width: 380px;
    margin: 0 auto;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-grid::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .consultant-bio {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .consultant-bio__photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer: single col on mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__tagline {
    max-width: 100%;
  }

  .footer__credentials {
    gap: 6px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .who-we-are__credentials {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 2rem;
  }
}
/* ── Section wrapper ─────────────────────────────────────────── */
.texas-section {
  background: var(--off-white);
}

/* ── Map + City List two-column layout ───────────────────────── */
.texas-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

/* ── SVG Map ─────────────────────────────────────────────────── */
.texas-map-wrap {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.texas-map-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* City dots */
.texas-dot {
  fill: var(--gold);
  stroke: var(--white);
  stroke-width: 2;
  cursor: pointer;
  transition: r 0.2s ease, fill 0.2s ease;
}

.texas-dot--home {
  fill: var(--gold);
  stroke: var(--white);
  stroke-width: 3;
}

/* Pulse ring on home base dot */
.texas-dot-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  opacity: 0.5;
  animation: texas-pulse 2.2s ease-out infinite;
}

@keyframes texas-pulse {
  0%   { r: 10; opacity: 0.5; }
  100% { r: 22; opacity: 0; }
}

/* City labels — navy on white map */
.texas-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  fill: var(--navy);
  pointer-events: none;
  letter-spacing: 0.02em;
}

.texas-label--home {
  font-size: 12px;
  fill: #8B6914;
  font-weight: 800;
}

/* Hover state on city links */
.texas-city-link:hover .texas-dot {
  fill: var(--gold-light);
}

.texas-city-link:hover .texas-label {
  fill: var(--gold-dark);
}

/* ── City List (right column) ────────────────────────────────── */
.texas-city-list {
  display: flex;
  flex-direction: column;
}

.texas-city-list__header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.texas-city-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.texas-city-list__item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(27, 58, 82, 0.08);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
}

.texas-city-list__item a:hover {
  color: var(--gold-dark);
  padding-left: 4px;
}

.texas-city-list__item em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--mid-gray);
  font-weight: 400;
}

.texas-city-list__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.texas-city-list__item--home .texas-city-list__dot {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 60, 0.25);
}

/* ── Industries Row ──────────────────────────────────────────── */
.texas-industries {
  border-top: 1px solid rgba(27, 58, 82, 0.1);
  padding-top: 56px;
}

.texas-industries__header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 32px;
}

.texas-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Industry card — <a> tag used as card wrapper */
.texas-industry-card {
  display: flex;           /* keeps icon + title + text + link stacked */
  flex-direction: column;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid rgba(27, 58, 82, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;   /* removes underline from <a> */
  color: inherit;          /* prevents browser default blue link color */
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.texas-industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}

/* Icon container */
.texas-industry-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;         /* prevents icon from squishing on narrow screens */
  background: rgba(27, 58, 82, 0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* SVG icon inside — explicit fill so it always shows navy */
.texas-industry-card__icon svg {
  width: 24px;
  height: 24px;
  fill: var(--navy);
  display: block;          /* removes inline-block gap */
  flex-shrink: 0;
}

.texas-industry-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.texas-industry-card__text {
  font-size: 0.88rem;
  color: #4A5A6A;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

/* "Learn More →" — styled as a link cue, not plain text */
.texas-industry-card__link {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: auto;
  transition: color 0.2s, letter-spacing 0.2s;
  text-decoration: none;
}

.texas-industry-card:hover .texas-industry-card__link {
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* ── Responsive ──────────────────────────────────────────────── */

/* Tablet: narrow the city list column */
@media (max-width: 1024px) {
  .texas-layout {
    grid-template-columns: 1fr 220px;
    gap: 32px;
  }

  .texas-map-wrap {
    max-width: 100%;
  }
}

/* Mobile landscape: stack map above city list */
@media (max-width: 768px) {
  .texas-section {
    padding: 56px 0;
  }

  .texas-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .texas-map-wrap {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
  }

  .texas-city-list {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid rgba(27, 58, 82, 0.1);
    padding-top: 24px;
  }

  /* 2-column city list on tablet/landscape phone */
  .texas-city-list__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .texas-industries {
    padding-top: 40px;
  }

  /* Industry cards: single column, centered */
  .texas-industries__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Ensure card stays a flex column (not inline) on mobile */
  .texas-industry-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

/* Small phones: single column everything */
@media (max-width: 480px) {
  .texas-section {
    padding: 48px 0;
  }

  .texas-map-wrap {
    max-width: 100%;
  }

  .texas-city-list {
    max-width: 100%;
  }

  /* Single column city list on small phones */
  .texas-city-list__items {
    grid-template-columns: 1fr;
  }

  .texas-city-list__item a {
    padding: 11px 0;
    font-size: 0.95rem;
  }

  .texas-industries__grid {
    max-width: 100%;
  }

  .texas-industry-card {
    padding: 24px 20px;
  }
}  
.sp-main p a,
.sp-main li a,
.sp-callout a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 154, 60, 0.5);
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.sp-main p a:hover,
.sp-main li a:hover,
.sp-callout a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
/* =========================
   MOBILE HEADER FIX
   ========================= */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .navbar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .navbar__logo {
    width: 56px;
    height: auto;
    flex-shrink: 0;
  }

  .navbar__brand-text {
    min-width: 0;
  }

  .navbar__brand-name {
    font-size: 1rem;
    line-height: 1.1;
  }

  .navbar__brand-sub {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }
}
/* =========================
   TABLET HEADER FIX
   Switch to mobile nav earlier
   ========================= */
@media (max-width: 1100px) {
  .topbar {
    display: none;
  }

  .navbar__inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar__brand {
    min-width: 0;
    max-width: calc(100% - 56px);
  }

  .navbar__logo {
    height: 48px;
    width: auto;
    flex-shrink: 0;
  }

  .navbar__brand-text {
    min-width: 0;
  }

  .navbar__brand-name {
    font-size: 1rem;
    line-height: 1.1;
  }

  .navbar__brand-sub {
    font-size: 0.62rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
  }

  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
    flex-shrink: 0;
  }
}

/* Testimonial Carousel - faster scroll-snap version */
.testimonials-section {
  overflow: hidden;
}

.testimonial-carousel {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 52px;
}

.testimonial-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonial-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-carousel__track {
  display: flex;
  gap: 24px;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 24px) / 2);
  scroll-snap-align: start;
  min-width: 0;
}

.testimonial-card {
  height: 100%;
}

.testimonial-card__stars {
  color: #C7942D;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
  line-height: 1;
}

.testimonial-card__text {
  min-height: 150px;
}

.testimonial-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(21, 53, 76, 0.18);
  background: #fff;
  color: #15354C;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(8, 28, 45, 0.14);
}

.testimonial-carousel__btn:hover,
.testimonial-carousel__btn:focus {
  background: #15354C;
  color: #fff;
}

.testimonial-carousel__btn--prev {
  left: 0;
}

.testimonial-carousel__btn--next {
  right: 0;
}

.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testimonial-carousel__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(21, 53, 76, 0.28);
  cursor: pointer;
  padding: 0;
}

.testimonial-carousel__dot.is-active {
  background: #C7942D;
}

@media (max-width: 820px) {
  .testimonial-carousel {
    padding: 0 42px;
  }

  .testimonial-slide {
    flex-basis: 100%;
  }

  .testimonial-card__text {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .testimonial-carousel {
    padding: 0;
  }

  .testimonial-carousel__btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-carousel__viewport {
    scroll-behavior: auto;
  }
}
.gold-link {
  color: #b8912f;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(184, 145, 47, 0.45);
  text-underline-offset: 3px;
}

.gold-link:hover,
.gold-link:focus {
  color: #8f6f1f;
  text-decoration-color: currentColor;
}
/* Credibility Logo Strip */
.credibility-logo-strip {
  background: #fff;
  border-top: 1px solid rgba(21, 53, 76, 0.08);
  border-bottom: 1px solid rgba(21, 53, 76, 0.08);
  overflow: hidden;
}

.credibility-logo-strip__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  padding: 18px 0;
}

.credibility-logo-strip__label {
  color: #15354C;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.credibility-logo-strip__marquee {
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.credibility-logo-strip__marquee::before,
.credibility-logo-strip__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 76px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.credibility-logo-strip__marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.credibility-logo-strip__marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0) 100%);
}

.credibility-logo-strip__track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: credibilityLogoScroll 52s linear infinite;
}

.credibility-logo-strip__track img {
  display: block;
  height: 30px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.credibility-logo-strip__track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-1px);
}

.credibility-logo-strip:hover .credibility-logo-strip__track {
  animation-play-state: paused;
}

@keyframes credibilityLogoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

@media (max-width: 760px) {
  .credibility-logo-strip__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .credibility-logo-strip__label {
    text-align: center;
    white-space: normal;
    line-height: 1.35;
  }

  .credibility-logo-strip__track {
    gap: 34px;
    animation-duration: 60s;
  }

  .credibility-logo-strip__track img {
    height: 26px;
    max-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .credibility-logo-strip__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    gap: 20px 30px;
  }

  .credibility-logo-strip__marquee::before,
  .credibility-logo-strip__marquee::after {
    display: none;
  }
}

/* FAQ question link cards (overrides earlier list styling) */
.sp-faq-links,
.hr-questions-callout__links,
.faq-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.sp-faq-links li,
.hr-questions-callout__links li,
.faq-links-grid li { margin: 0; }
.sp-faq-links a,
.hr-questions-callout__links a,
.faq-links-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid rgba(21, 53, 76, 0.10);
  border-left: 3px solid #C7942D;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(8, 28, 45, 0.06);
  color: #15354C;
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.45;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.sp-faq-links a::after,
.hr-questions-callout__links a::after,
.faq-links-grid a::after {
  content: "\2192";
  color: #C7942D;
  font-weight: 700;
  flex: 0 0 auto;
}
.sp-faq-links a:hover,
.hr-questions-callout__links a:hover,
.faq-links-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 148, 45, 0.5);
  box-shadow: 0 14px 30px rgba(8, 28, 45, 0.12);
  color: #15354C;
}
@media (max-width: 760px) {
  .sp-faq-links,
  .hr-questions-callout__links,
  .faq-links-grid { grid-template-columns: 1fr; }
}

/* Q&A answer cards */
.qa-card {
  background: #fff;
  border: 1px solid rgba(21, 53, 76, 0.10);
  border-left: 3px solid #C7942D;
  border-radius: 14px;
  padding: 24px 26px;
  margin-bottom: 16px;
  box-shadow: 0 10px 26px rgba(8, 28, 45, 0.06);
  text-align: left;
}
.qa-card h3 {
  color: #15354C;
  font-size: 1.08rem;
  line-height: 1.35;
  margin: 0 0 10px;
}
.qa-card p {
  color: #4A5A6A;
  line-height: 1.72;
  margin: 0;
}

/* ============================================================
   FIX (2026-07-22): outline-navy buttons were invisible on navy
   sections (page hero, CTA blocks). Restyle contextually.
   ============================================================ */
.page-hero .btn--outline-navy,
.sp-cta-section .btn--outline-navy,
.cta-section .btn--outline-navy,
.diagnostic-box .btn--outline-navy {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.page-hero .btn--outline-navy:hover,
.sp-cta-section .btn--outline-navy:hover,
.cta-section .btn--outline-navy:hover,
.diagnostic-box .btn--outline-navy:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
