/* =============================================
   ENYO & PARTNERS — STATIC SITE STYLESHEET
   ============================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&family=Roboto+Slab:wght@400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --cream:     #FAF9F7;
  --white:     #FFFFFF;
  --dark:      #0A0A0A;
  --dark-mid:  #1C1C1C;
  --dark-bg:   #0B0B0B;
  --gold:      #DBB13A;
  --orange:    #FF9D4D;
  --orange-h:  #DE8339;
  --muted:     #777777;
  --light-gray:#F4F5F0;
  --border:    #DDDDDD;
  --font-main: 'Roboto', sans-serif;
  --font-slab: 'Roboto Slab', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Page Transition ---- */
.page-transition {
  position: fixed; inset: 0;
  background: var(--dark-bg);
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.page-transition.active { opacity: 1; pointer-events: all; }

/* ---- Top Bar ---- */
.topbar {
  background: var(--dark-bg);
  color: #B5B3B1;
  font-size: 0.82rem;
  padding: 0.5rem 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a { color: #B5B3B1; transition: color 0.2s; }
.topbar a:hover { color: var(--gold); }
.topbar-phone { display: flex; align-items: center; gap: 0.5rem; }
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }

/* ---- Navigation ---- */
.nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta-btn {
  background: var(--gold);
  color: var(--white) !important;
  border: none !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 2px;
  transition: background 0.2s !important;
}
.nav-cta-btn:hover { background: var(--orange-h) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.25rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Hero Slider ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Slides wrapper */
.hero-slides {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.52);
}
.hero-slide-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
/* Dots */
.hero-dots {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
  z-index: 10;
}
.hero-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}
/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 2rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
  line-height: 1;
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }
.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-slab);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--orange-h); border-color: var(--orange-h); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--dark-bg);
  background-image: url('https://enyoandpartners.com/wp-content/uploads/2023/11/enyo2.jpg');
  background-size: cover;
  background-position: center 20%;
  position: relative;
  padding: 7rem 2rem 4rem;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
}
.page-hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: var(--font-slab);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0;
}

/* ---- Section Basics ---- */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--dark-bg); color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 1.4rem; height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}
.section-title {
  font-family: var(--font-slab);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--dark);
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
}
.section-dark .section-sub { color: #B5B3B1; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-center .section-label { padding-left: 0; }
.text-center .section-label::before { display: none; }

/* ---- Gold Line Separator ---- */
.gold-line {
  width: 50px; height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
.text-center .gold-line { margin: 1rem auto 1.5rem; }

/* ---- Intro / About Strip ---- */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-img { position: relative; }
.intro-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.intro-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  min-width: 120px;
}
.intro-img-badge .big { font-size: 2.5rem; font-weight: 700; line-height: 1; }
.intro-img-badge .label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.25rem; }
.intro-text { }
.intro-text h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 1.25rem;
  color: var(--dark);
}
.intro-text p { color: #555; font-size: 0.97rem; line-height: 1.8; }

/* ---- Services Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { background: var(--cream); box-shadow: 0 4px 20px rgba(0,0,0,0.08); z-index: 1; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  object-fit: contain;
}
.service-icon-emoji {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.service-card h3 {
  font-family: var(--font-slab);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.service-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.7rem; }

/* ---- Stats / Counter ---- */
.stats-section {
  background: var(--dark-bg);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.stats-image {
  height: 420px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}
.stats-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.stat-item { }
.stat-number {
  font-family: var(--font-slab);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}

/* ---- Industry / Two Col Info ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-img {
  height: 400px;
  object-fit: cover;
  width: 100%;
}
.check-list { display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
  padding-left: 1.5rem;
  position: relative;
  color: #555;
  font-size: 0.95rem;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---- Team Cards ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.team-card-img {
  position: relative;
  overflow: hidden;
}
.team-card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-social {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(219,177,58,0.92);
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.team-card:hover .team-card-social { transform: translateY(0); }
.team-card-social a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.team-card-social a:hover { opacity: 0.75; }
.team-card-body,
.team-card-content {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
}
.team-card-body h3,
.team-card-content h3 {
  font-family: var(--font-slab);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--dark);
}
.team-card-body span,
.team-card-content span {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.team-card-role {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.team-card-bio {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ---- Advisory Grid (single card, centered) ---- */
.advisory-grid {
  display: flex;
  justify-content: center;
}
.advisory-grid .team-card {
  width: 100%;
  max-width: 340px;
}

/* ---- Blog Cards ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-card-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-meta-cat {
  background: var(--gold);
  color: var(--white);
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-card-body h3 {
  font-family: var(--font-slab);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.blog-card-body h3 a { color: var(--dark); transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { font-size: 0.88rem; color: var(--muted); flex: 1; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold);
  margin-top: 1.25rem;
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 0.7rem; }

/* ---- Blog Post Page ---- */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.blog-post-content { }
.blog-post-content h1 {
  font-family: var(--font-slab);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.75rem;
  color: var(--dark);
  line-height: 1.3;
}
.blog-post-content .blog-meta { margin-bottom: 1.5rem; }
.blog-post-content .featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: 2rem;
}
.blog-post-content h2 {
  font-family: var(--font-slab);
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--dark);
}
.blog-post-content p { font-size: 0.97rem; color: #555; line-height: 1.85; }
.blog-post-content ol, .blog-post-content ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
.blog-post-content ol li, .blog-post-content ul li {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

/* Sidebar */
.blog-sidebar { }
.sidebar-widget {
  background: var(--white);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.sidebar-widget h4 {
  font-family: var(--font-slab);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  color: var(--dark);
}
.sidebar-post {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post img { width: 70px; height: 60px; object-fit: cover; flex-shrink: 0; }
.sidebar-post-text h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 0.2rem;
}
.sidebar-post-text h5 a:hover { color: var(--gold); }
.sidebar-post-text span { font-size: 0.75rem; color: var(--muted); }
.sidebar-cta {
  background: var(--dark-bg);
  padding: 2rem 1.75rem;
  text-align: center;
  color: var(--white);
}
.sidebar-cta h4 { border-color: var(--gold); color: var(--white); }
.sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }

/* ---- Contact Section ---- */
.contact-section {
  background: #0F1C2E;
  padding: 3.5rem 2rem;
  color: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.5rem;
  color: var(--white);
}
.contact-info .gold-line { background: var(--gold); }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(219,177,58,0.15);
  border: 1px solid rgba(219,177,58,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-item-text h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.contact-item-text p, .contact-item-text a { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.contact-item-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form { }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-check input[type=checkbox] { margin-top: 0.2rem; accent-color: var(--gold); }
.form-check label { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-transform: none; letter-spacing: 0; }
.form-check label a { color: var(--gold); text-decoration: underline; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--gold);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-slab);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1rem; margin-bottom: 1.75rem; }

/* ---- Footer ---- */
.footer { background: var(--dark-bg); color: rgba(255,255,255,0.65); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top {
  padding: 3rem 2rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand img { height: 45px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; align-items: flex-start; }
.footer-contact-item span:first-child { color: var(--gold); margin-top: 0.1rem; }
.footer-contact-item span:last-child { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.55; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold); }

/* ---- Testimonial / Quote ---- */
.testimonial-strip {
  background: var(--gold);
  padding: 3rem 2rem;
  text-align: center;
}
.testimonial-strip blockquote {
  font-family: var(--font-slab);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--white);
  font-weight: 400;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.testimonial-strip cite {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Industry Expertise Tags ---- */
.industry-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.industry-tag {
  padding: 0.4rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.industry-tag:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ---- Page hero z-index fix (for .container used inside .page-hero) ---- */
.page-hero .container,
.page-hero-content { position: relative; z-index: 1; }
.page-hero-bg { display: none; } /* decorative div some pages include - hide it */

/* ---- Contact page custom layout ---- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  font-family: var(--font-slab);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.contact-card-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.contact-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-items-grid { grid-template-columns: 1fr; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .intro-grid { gap: 3rem; }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .hero-arrow { width: 42px; height: 42px; font-size: 1.6rem; }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    align-items: flex-start;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  /* Hide topbar on mobile */
  .topbar { display: none; }
  /* Hero */
  .hero { max-height: 600px; min-height: 520px; }
  .hero-slide-content { padding: 0 1.25rem; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: 1.5rem; }
  /* Layouts */
  .intro-grid,
  .two-col,
  .stats-section,
  .contact-grid { grid-template-columns: 1fr; }
  .intro-img-badge { right: 1rem; bottom: -1rem; }
  .intro-img img { height: 280px !important; }
  .two-col-img { height: 240px !important; }
  .stats-image { height: 260px; }
  .stats-content { padding: 2.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(n) { border-right: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  /* Page hero */
  .page-hero { padding: 5rem 1.25rem 3rem; }
  /* Contact section */
  .contact-section { padding: 2.5rem 1.25rem; }
  .contact-grid { gap: 2.5rem; }
  /* Blog listing layout (inline on blog.html) */
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-items-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero h1, .hero-slide-content h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero p, .hero-slide-content p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .nav-logo-img { height: 36px !important; }
  .nav-inner { padding: 0 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-section { display: block; }
  .stats-image { width: 100%; }
  .testimonial-strip { padding: 2rem 1rem; }
}

/* ---- Blog Post Hero (compact inner-page header) ---- */
.post-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-bg) 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  color: var(--cream);
}
.post-hero h1 {
  font-family: var(--font-slab);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--white);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.post-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
@media (max-width: 768px) {
  .post-hero { padding: 4rem 1.25rem 3rem; }
}

/* ---- Blog Post Two-Column Grid (responsive) ---- */
.blog-post-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
}
@media (max-width: 900px) {
  .blog-post-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  /* Reset sticky sidebar on mobile */
  .blog-post-grid aside,
  .blog-post-grid [style*="sticky"] {
    position: static !important;
    top: auto !important;
  }
  /* Ensure blog post content images don't overflow */
  .blog-post-grid img { max-width: 100%; height: auto !important; }
  .blog-post-grid div[style*="height: 380px"],
  .blog-post-grid div[style*="height:380px"] { height: 220px !important; }
}

/* ---- Team Profile Pages ---- */
.profile-role-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.profile-name {
  font-family: var(--font-slab);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.profile-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  background: #e0e0e0;
  display: block;
}
.profile-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #d0d0d0;
  border-radius: 4px;
}
.profile-bio p {
  font-size: 1rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.profile-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.profile-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.profile-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.profile-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3rem;
  transition: gap 0.2s;
}
.profile-back-link:hover { gap: 0.7rem; }
@media (max-width: 768px) {
  .profile-layout { grid-template-columns: 1fr; gap: 2rem; }
  .profile-photo, .profile-photo-placeholder { aspect-ratio: 4/3; object-position: center 20%; }
}
