/*
Theme Name: Opstralytic
Theme URI: https://opstralytic.com
Author: Opstralytic Inc.
Description: Custom WordPress theme for Opstralytic Inc. management consultancy
Version: 1.0.0
License: Private
Text Domain: opstralytic
*/

/* ── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --navy:      #00264D;
  --navy-mid:  #002255;
  --navy-dark: #001833;
  --gold:      #FAC83A;
  --lime:      #DFFA3A;
  --green:     #92FA3A;
  --teal:      #3AFAA2;
  --sky:       #A7DCF1;
  --white:     #FFFFFF;
  --text-muted: rgba(255,255,255,0.65);
  --text-dim:   rgba(255,255,255,0.45);
  --card-bg:    rgba(255,255,255,0.05);
  --card-border:rgba(255,255,255,0.09);
  --font-heading: 'Roboto', Georgia, sans-serif;
  --font-body:    'DM Sans', 'Segoe UI', 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-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.8; }

/* ── LAYOUT UTILITIES ─────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.section-pad-lg { padding: 7rem 0; }
.bg-mid  { background: var(--navy-mid); }
.bg-dark { background: var(--navy-dark); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
  vertical-align: middle; margin-right: 0.5rem;
}
.section-title { color: var(--white); margin-bottom: 0.8rem; }
.section-sub   { max-width: 580px; margin-bottom: 3rem; }
.divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--lime));
  border-radius: 2px; margin: 0.8rem 0 1.6rem;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.22s ease; cursor: pointer; border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--lime); border-color: var(--lime); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: var(--sky); color: var(--sky); }
.btn-teal {
  background: var(--teal); color: var(--navy);
  border-color: var(--teal);
}
.btn-teal:hover { background: var(--lime); border-color: var(--lime); }

/* ── NAV ──────────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(0,38,77,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250,200,58,0.18);
  transition: box-shadow 0.3s;
}
#site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.35); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 2rem;
  max-width: 1180px; margin: 0 auto;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem; font-weight: 900;
  color: var(--white); letter-spacing: 0.01em;
}
.site-logo span { color: var(--gold); }
.nav-menu { display: flex; gap: 2.2rem; }
.nav-menu a {
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
  position: relative; padding-bottom: 2px;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.22s;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta-wrap { display: flex; gap: 0.8rem; align-items: center; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--navy-dark); padding: 2rem;
  flex-direction: column; gap: 1.2rem;
  border-bottom: 2px solid var(--gold);
  z-index: 998;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 9rem 2rem 6rem;
  position: relative; overflow: hidden;
  background: var(--navy);
}
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(167,220,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,220,241,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 65% at 80% 50%, rgba(250,200,58,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(58,250,162,0.05) 0%, transparent 55%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 2px; background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 1.3rem; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold) 0%, var(--lime) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 500px; margin-bottom: 2.4rem;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item {}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.8rem; color: var(--text-dim);
  margin-top: 0.3rem; text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.about-text p { margin-bottom: 1.1rem; }
.about-principles { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.principle-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.4rem;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 6px;
}
.principle-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
  background: rgba(250,200,58,0.12); color: var(--gold);
  font-family: var(--font-heading);
}
.principle-item:nth-child(2) .principle-icon { background: rgba(58,250,162,0.12); color: var(--teal); }
.principle-item:nth-child(3) .principle-icon { background: rgba(146,250,58,0.12); color: var(--green); }
.principle-text h4 { color: var(--white); margin-bottom: 0.2rem; font-size: 0.95rem; }
.principle-text p  { font-size: 0.88rem; margin: 0; }

.about-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.about-card {
  padding: 1.6rem 1.8rem;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}
.about-card:nth-child(2) { border-left-color: var(--teal); }
.about-card:nth-child(3) { border-left-color: var(--lime); }
.about-card h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.about-card p  { font-size: 0.9rem; margin: 0; }

/* ── SERVICES / CAPABILITIES ──────────────────────────────── */
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
/* 4-column variant for when AI block is added */
.cap-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.cap-card {
  padding: 2rem 1.8rem;
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; position: relative; overflow: hidden;
  transition: transform 0.22s, border-color 0.22s;
}
.cap-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.cap-card.strategy::before  { background: linear-gradient(90deg, var(--gold), var(--lime)); }
.cap-card.operations::before{ background: linear-gradient(90deg, var(--teal), var(--sky)); }
.cap-card.people::before    { background: linear-gradient(90deg, var(--lime), var(--green)); }
.cap-card.ai::before        { background: linear-gradient(90deg, var(--sky), var(--teal)); }
.cap-card:hover { transform: translateY(-5px); border-color: rgba(250,200,58,0.3); }
.cap-card.ai:hover { border-color: rgba(167,220,241,0.4); }
.cap-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.strategy .cap-icon  { background: rgba(250,200,58,0.12); }
.operations .cap-icon{ background: rgba(58,250,162,0.12); }
.people .cap-icon    { background: rgba(146,250,58,0.12); }
.ai .cap-icon        { background: rgba(167,220,241,0.12); }
.cap-card h3 { color: var(--white); margin-bottom: 0.7rem; font-size: 1.15rem; }
.cap-card > p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.cap-list { display: flex; flex-direction: column; gap: 0.3rem; }
.cap-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.87rem; color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cap-list li::before { content: '›'; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.operations .cap-list li::before { color: var(--teal); }
.people .cap-list li::before     { color: var(--lime); }
.ai .cap-list li::before         { color: var(--sky); }

/* ── OFFERINGS ────────────────────────────────────────────── */
.offerings-grid { display: flex; flex-direction: column; gap: 2rem; }
.offering-card {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 0; border-radius: 10px; overflow: hidden;
  background: var(--card-bg); border: 1px solid var(--card-border);
  transition: border-color 0.22s, transform 0.22s;
}
.offering-card:hover { border-color: rgba(250,200,58,0.35); transform: translateY(-3px); }
.offering-num {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
  writing-mode: vertical-rl;
  background: var(--navy-mid);
  color: var(--gold);
  padding: 1.5rem 0;
  border-right: 3px solid var(--gold);
  letter-spacing: -0.02em;
}
.offering-card:nth-child(2) .offering-num { border-right-color: var(--teal); color: var(--teal); }
.offering-card:nth-child(3) .offering-num { border-right-color: var(--lime); color: var(--lime); }
.offering-body { padding: 2rem 2rem; }
.offering-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.offering-card:nth-child(2) .offering-tag { color: var(--teal); }
.offering-card:nth-child(3) .offering-tag { color: var(--lime); }
.offering-body h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.7rem; }
.offering-body > p { font-size: 0.93rem; margin-bottom: 1.3rem; }
.offering-outcomes {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.3rem;
}
.outcome-pill {
  padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
  background: rgba(250,200,58,0.1); color: var(--gold);
  border: 1px solid rgba(250,200,58,0.2);
}
.offering-card:nth-child(2) .outcome-pill { background: rgba(58,250,162,0.1); color: var(--teal); border-color: rgba(58,250,162,0.2); }
.offering-card:nth-child(3) .outcome-pill { background: rgba(223,250,58,0.1); color: var(--lime); border-color: rgba(223,250,58,0.2); }
.offering-phases {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem;
  margin-top: 1rem;
}
.phase-pill {
  padding: 0.6rem 0.8rem; border-radius: 6px; font-size: 0.78rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted);
}
.phase-pill strong { display: block; color: var(--white); font-size: 0.8rem; margin-bottom: 0.2rem; }

/* ── INDUSTRIES ────────────────────────────────────────────── */
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.ind-card {
  padding: 2rem 1.4rem; border-radius: 8px; text-align: center;
  background: var(--card-bg); border: 1px solid var(--card-border);
  transition: all 0.25s;
}
.ind-card:hover { transform: translateY(-5px); }
.ind-card:nth-child(1):hover { background: rgba(250,200,58,0.07); border-color: rgba(250,200,58,0.4); }
.ind-card:nth-child(2):hover { background: rgba(58,250,162,0.07); border-color: rgba(58,250,162,0.4); }
.ind-card:nth-child(3):hover { background: rgba(146,250,58,0.07); border-color: rgba(146,250,58,0.4); }
.ind-card:nth-child(4):hover { background: rgba(167,220,241,0.07); border-color: rgba(167,220,241,0.4); }
.ind-icon { font-size: 2.2rem; margin-bottom: 0.9rem; }
.ind-card h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.ind-card p  { font-size: 0.83rem; margin: 0; }

/* ── TEAM ──────────────────────────────────────────────────── */
.team-section { text-align: center; }
.team-card-wrap { display: flex; justify-content: center; }
.team-card {
  max-width: 680px; width: 100%;
  display: grid; grid-template-columns: auto 1fr; gap: 0;
  background: var(--card-bg); border: 1px solid rgba(250,200,58,0.25);
  border-radius: 12px; overflow: hidden;
  text-align: left;
}
.team-photo-col {
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-dark));
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 180px;
  border-right: 1px solid rgba(250,200,58,0.15);
}
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
  color: var(--gold); margin-bottom: 1rem;
}
.team-name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); text-align: center; margin-bottom: 0.3rem; }
.team-role { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); text-align: center; }
.team-bio-col { padding: 2.2rem 2.2rem; }
.team-bio-col h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.3rem; }
.team-bio-col .role-title { color: var(--gold); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.team-bio-col p { font-size: 0.91rem; margin-bottom: 0.8rem; }
.team-stats { display: flex; gap: 1.8rem; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.07); }
.team-stat .num { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold); font-weight: 900; }
.team-stat .lbl { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.07em; }
.team-credentials { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
.credential-tag {
  padding: 0.28rem 0.75rem; border-radius: 20px; font-size: 0.75rem;
  background: rgba(250,200,58,0.08); color: var(--gold);
  border: 1px solid rgba(250,200,58,0.18);
}
.credential-tag.credential-ai {
  background: rgba(167,220,241,0.1); color: var(--sky);
  border-color: rgba(167,220,241,0.3);
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
}
.credentials-group {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  margin-bottom: 0.8rem;
}
.credentials-group:last-child { margin-bottom: 0; }
.credentials-group-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim);
  width: 100%; margin-bottom: 0.1rem;
}

/* ── INSIGHTS ──────────────────────────────────────────────── */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.insight-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; overflow: hidden;
  transition: transform 0.22s, border-color 0.22s;
}
.insight-card:hover { transform: translateY(-5px); border-color: rgba(250,200,58,0.3); }
.insight-thumb {
  height: 150px; display: flex; align-items: center;
  justify-content: center; font-size: 2.4rem;
}
.insight-thumb.t1 { background: linear-gradient(135deg, rgba(250,200,58,0.18), rgba(223,250,58,0.08)); }
.insight-thumb.t2 { background: linear-gradient(135deg, rgba(58,250,162,0.18), rgba(167,220,241,0.08)); }
.insight-thumb.t3 { background: linear-gradient(135deg, rgba(146,250,58,0.18), rgba(58,250,162,0.08)); }
.insight-body { padding: 1.4rem 1.5rem; }
.insight-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.insight-card:nth-child(2) .insight-tag { color: var(--teal); }
.insight-card:nth-child(3) .insight-tag { color: var(--lime); }
.insight-body h4 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; line-height: 1.35; }
.insight-body p  { font-size: 0.84rem; margin: 0; }

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  padding: 5rem 2rem; text-align: center;
  background: linear-gradient(135deg, rgba(250,200,58,0.1), rgba(58,250,162,0.05));
  border-top: 1px solid rgba(250,200,58,0.18);
  border-bottom: 1px solid rgba(250,200,58,0.18);
}
.cta-band h2 { color: var(--white); margin-bottom: 0.8rem; }
.cta-band p  { max-width: 480px; margin: 0 auto 2rem; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info h3 { color: var(--white); margin-bottom: 0.8rem; }
.contact-info p  { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 0.8rem;
}
.contact-detail .icon { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 0.8rem 1rem;
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold); background: rgba(250,200,58,0.05);
}
.form-field select option { background: var(--navy); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 130px; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.28); }

/* ── FOOTER ────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 0 3rem;
}
.footer-brand .site-logo { font-size: 1.2rem; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.85rem; max-width: 220px; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem; color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.28);
}

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(250,200,58,0.06), transparent 65%);
}
.page-hero .hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(167,220,241,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167,220,241,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 { margin-bottom: 0.8rem; }
.page-hero p  { font-size: 1.1rem; max-width: 540px; }

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.65s ease both; }
.hero-eyebrow   { animation-delay: 0.1s; }
.hero h1        { animation-delay: 0.22s; }
.hero-sub       { animation-delay: 0.36s; }
.hero-btns      { animation-delay: 0.5s; }
.hero-stats     { animation-delay: 0.62s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cap-grid, .cap-grid-4 { grid-template-columns: 1fr 1fr; }
  .ind-grid  { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .offering-phases { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo-col { border-right: none; border-bottom: 1px solid rgba(250,200,58,0.15); flex-direction: row; gap: 1.5rem; padding: 1.5rem 2rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.8rem; }
  .offering-card { grid-template-columns: 1fr; }
  .offering-num { writing-mode: horizontal-tb; padding: 1rem 1.5rem; border-right: none; border-bottom: 3px solid var(--gold); font-size: 1rem; text-align: left; }
}
@media (max-width: 480px) {
  .ind-grid { grid-template-columns: 1fr; }
  .cap-grid-4 { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
}

/* ── LOGO IMAGE ────────────────────────────────────────────── */
.site-logo img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-brand .site-logo img { height: 32px; }

/* ── TEAM HEADSHOT ─────────────────────────────────────────── */
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ── FIRM OFFERINGS PAGE — INTERACTIVE CARDS ──────────────── */
.offerings-page-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.offering-expand-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.offering-expand-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.offering-expand-card:nth-child(1):hover { border-color: rgba(250,200,58,0.5); }
.offering-expand-card:nth-child(2):hover { border-color: rgba(58,250,162,0.5); }
.offering-expand-card:nth-child(3):hover { border-color: rgba(223,250,58,0.5); }

/* Summary row — always visible */
.offering-summary {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0;
}
.offering-summary .offering-num {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
  background: var(--navy-mid); color: var(--gold);
  padding: 1.8rem 0; height: 100%;
  border-right: 3px solid var(--gold);
  letter-spacing: -0.02em;
}
.offering-expand-card:nth-child(2) .offering-summary .offering-num { border-right-color: var(--teal); color: var(--teal); }
.offering-expand-card:nth-child(3) .offering-summary .offering-num { border-right-color: var(--lime); color: var(--lime); }
.offering-summary-text { padding: 1.6rem 2rem; }
.offering-summary-text .offering-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem;
}
.offering-expand-card:nth-child(2) .offering-tag { color: var(--teal); }
.offering-expand-card:nth-child(3) .offering-tag { color: var(--lime); }
.offering-summary-text h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 0.4rem; }
.offering-summary-text p  { font-size: 0.9rem; margin: 0; }
.offering-hover-hint {
  padding: 1.6rem 1.8rem;
  font-size: 0.75rem; color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.1em;
  white-space: nowrap;
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
}
.offering-hover-hint .hint-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  display: block;
}
.offering-expand-card:hover .hint-arrow { transform: rotate(180deg); }

/* Expanded detail — hidden by default, shown on hover */
/* Expanded detail — hidden by default, shown on hover */
.offering-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1),
              opacity 0.4s ease;
  opacity: 0;
  border-top: 1px solid transparent;
}
.offering-expand-card:hover .offering-detail {
  max-height: 1400px; /* tall enough for text + full-size image */
  opacity: 1;
  border-top-color: rgba(255,255,255,0.07);
}

/* Detail text — full width, padding */
.offering-detail-text {
  padding: 2rem 2rem 1.5rem;
}
.offering-detail-text .offering-outcomes {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem;
}
.offering-detail-text .offering-phases {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.8rem;
}

/* Image — full width below text, no cropping */
.offering-detail-image {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.07);
  line-height: 0; /* remove gap under img */
}
.offering-detail-image img {
  width: 100%;
  height: auto;      /* natural aspect ratio — no cropping */
  display: block;
}

@media (max-width: 900px) {
  .offering-detail-text .offering-phases { grid-template-columns: 1fr; }
  .offering-summary { grid-template-columns: 60px 1fr; }
  .offering-hover-hint { display: none; }
  /* On mobile always show the detail */
  .offering-detail { max-height: none; opacity: 1; border-top-color: rgba(255,255,255,0.07); }
}

/* ── CONTACT FORM SUCCESS MESSAGE ──────────────────────────── */
.form-success {
  padding: 1.5rem 2rem;
  background: rgba(58,250,162,0.1);
  border: 1px solid rgba(58,250,162,0.3);
  border-radius: 8px;
  color: var(--teal);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ── INSIGHTS PAGE — FEATURED POST ────────────────────────── */
.insights-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  overflow: hidden;
  min-height: 380px;
}
.insights-featured-img {
  position: relative;
  background: var(--navy-mid) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  min-height: 300px;
}
.insights-featured-icon {
  font-size: 4rem; opacity: 0.25;
}
.insights-featured-badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--gold); color: var(--navy-dark);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.3rem 0.8rem;
  border-radius: 20px;
}
.insights-featured-body {
  padding: 2.5rem 2.2rem;
  display: flex; flex-direction: column; justify-content: center;
}
.insights-featured-title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  color: var(--white); line-height: 1.2;
  margin: 0.6rem 0 1rem;
}
.insights-featured-title a {
  color: inherit; text-decoration: none;
}
.insights-featured-title a:hover { color: var(--gold); }
.insights-featured-exc {
  color: var(--text-muted); font-size: 0.92rem;
  line-height: 1.65; margin-bottom: 1.6rem;
}

/* Meta row — category tag + date */
.insights-meta {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
}
.insights-date {
  font-size: 0.72rem; color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Read more link in cards */
.insights-read-more {
  font-size: 0.8rem; color: var(--gold);
  text-decoration: none; font-weight: 600;
  letter-spacing: 0.04em;
}
.insights-read-more:hover { color: var(--lime); }

/* ── SINGLE POST ───────────────────────────────────────────── */
.post-hero { padding-bottom: 3rem; }
.post-hero-inner { max-width: 780px; }
.post-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15; margin: 0.5rem 0 1.5rem;
}
.post-author-row {
  display: flex; align-items: center; gap: 0.9rem;
}
.post-author-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(250,200,58,0.35); flex-shrink: 0;
}
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-author-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.post-author-role { font-size: 0.75rem; color: var(--text-dim); }

.post-featured-image { margin-bottom: -1rem; padding: 0 1.5rem; }

/* Two-column: article + sidebar */
.post-content-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.post-body {
  color: var(--text-muted); font-size: 1rem; line-height: 1.8;
}
.post-body h2, .post-body h3, .post-body h4 { color: var(--white); margin: 2rem 0 0.7rem; }
.post-body h2 { font-size: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 0.5rem; }
.post-body h3 { font-size: 1.2rem; color: var(--gold); }
.post-body p  { margin-bottom: 1.2rem; }
.post-body ul, .post-body ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.post-body li { margin-bottom: 0.4rem; }
.post-body blockquote {
  border-left: 3px solid var(--gold); padding: 0.8rem 1.4rem;
  background: rgba(250,200,58,0.05); border-radius: 0 6px 6px 0;
  font-style: italic; color: rgba(255,255,255,0.75);
  margin: 1.5rem 0;
}
.post-body a { color: var(--gold); }
.post-body a:hover { color: var(--lime); }
.post-body img { max-width: 100%; border-radius: 6px; margin: 1rem 0; }
.post-body .wp-caption-text { font-size: 0.78rem; color: var(--text-dim); text-align: center; }

/* Sidebar */
.post-sidebar-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 1.6rem;
  text-align: center;
}
.post-author-avatar-lg {
  width: 72px; height: 72px; margin: 0 auto 0.8rem;
  border-width: 2px;
}
.sidebar-related-link {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
}
.sidebar-related-link:last-of-type { border-bottom: none; }
.sidebar-related-title {
  font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.3;
  text-align: left;
}
.sidebar-related-link:hover .sidebar-related-title { color: var(--gold); }

/* Post tags row */
.post-tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.post-tags-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-dim);
}
.post-tag-pill {
  padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem;
  background: rgba(250,200,58,0.07); color: var(--gold);
  border: 1px solid rgba(250,200,58,0.18);
  text-decoration: none; transition: background 0.2s;
}
.post-tag-pill:hover { background: rgba(250,200,58,0.15); }

/* Sidebar CTA card */
.post-sidebar-cta {
  margin-top: 1.2rem;
  text-align: center;
  border-top: 3px solid var(--gold) !important;
}
.post-sidebar-cta-icon {
  font-size: 2rem; margin-bottom: 0.6rem;
}
.post-sidebar-cta h5 {
  color: var(--white); font-size: 0.95rem; margin-bottom: 0.5rem;
}
.post-sidebar-cta p {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.2rem;
}

/* Prev / Next navigation bar */
.post-nav-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.2rem 0;
}
.post-nav-bar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
.post-nav-prev a,
.post-nav-next a {
  display: flex; flex-direction: column; gap: 0.2rem;
  text-decoration: none;
}
.post-nav-next a { text-align: right; align-items: flex-end; }
.post-nav-dir {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
}
.post-nav-title {
  font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.3;
  max-width: 280px;
  transition: color 0.2s;
}
.post-nav-prev a:hover .post-nav-title,
.post-nav-next a:hover .post-nav-title { color: var(--white); }
.post-nav-center { display: flex; justify-content: center; }

/* Page links (<!--nextpage-->) */
.post-page-links {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem;
  margin: 2rem 0; font-size: 0.85rem; color: var(--text-dim);
}
.post-page-link {
  padding: 0.2rem 0.7rem; border-radius: 4px;
  background: var(--card-bg); border: 1px solid var(--card-border);
  color: var(--gold); text-decoration: none; font-size: 0.82rem;
}

/* ── INSIGHTS RESPONSIVE ───────────────────────────────────── */
@media (max-width: 860px) {
  .insights-featured { grid-template-columns: 1fr; }
  .insights-featured-img { min-height: 200px; }
  .post-content-wrap { grid-template-columns: 1fr; }
  .post-sidebar { order: -1; }
  .post-sidebar-card { text-align: left; }
  .post-author-avatar-lg { margin: 0 0 0.8rem; }
  .post-nav-bar .container { grid-template-columns: 1fr 1fr; }
  .post-nav-center { display: none; }
  .post-nav-next a { align-items: flex-end; }
}
@media (max-width: 560px) {
  .post-nav-bar .container { grid-template-columns: 1fr; gap: 0.8rem; }
  .post-nav-next a { text-align: left; align-items: flex-start; }
}
