/* ============================================================
   JC CONSULTING SERVICES v2 — main.css
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ── */
:root {
  --navy:        #739668;
  --navy-mid:    #5e7c57;
  --navy-dark:   #0d1b2a;
  --gold:        #c6b48a;
  --gold-light:  #e2d6b8;
  --gold-dim:    rgba(198,180,138,0.15);
  --red:         #2f3e34;
  --red-light:   #3f5246;
  --cream:       #f5f4ef;
  --cream-dark:  #e7e4dc;
  --white:       #fbfaf7;
  --text:        #1f2a24;
  --text-muted:  #6e756e;
  --nav-bg:      rgba(13,27,42,0.97);
  --transition:  cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Josefin Sans", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(198,180,138,0.15);
  transition: box-shadow 0.4s var(--transition), padding 0.4s var(--transition);
}

#site-nav.scrolled {
  padding: 0.9rem 4rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}

.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--transition);
}
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links .current-menu-item > a::after { transform: scaleX(1); }

.nav-cta {
  background: var(--red);
  border: 1px solid rgba(198,180,138,0.3);
  color: var(--gold-light);
  padding: 0.6rem 1.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  font-weight: 600;
}
.nav-cta:hover {
  background: var(--red-light);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,20,15,0.98);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-drawer.open { opacity: 1; pointer-events: auto; }
.nav-drawer a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .drawer-cta {
  margin-top: 1.5rem;
  background: var(--red);
  color: var(--gold-light);
  padding: 0.9rem 2.8rem;
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(198,180,138,0.3);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* diagonal dark panel */
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 50%;
  background: linear-gradient(135deg, #162335 0%, #0d1b2a 60%);
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
}

/* animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 50vw; height: 50vw;
  top: -15%; right: -5%;
  background: radial-gradient(circle, rgba(115,150,104,0.18) 0%, transparent 70%);
  animation-duration: 9s;
}
.hero-orb-2 {
  width: 35vw; height: 35vw;
  bottom: -10%; left: 5%;
  background: radial-gradient(circle, rgba(198,180,138,0.08) 0%, transparent 70%);
  animation-duration: 12s;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 25vw; height: 25vw;
  top: 30%; left: 25%;
  background: radial-gradient(circle, rgba(47,62,52,0.25) 0%, transparent 70%);
  animation-duration: 7s;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, 5%) scale(1.08); }
}

/* decorative grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,180,138,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,180,138,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem 4rem 6rem 6rem;
}

/* staggered entrance animations */
.hero-eyebrow { animation: slideUp 0.8s var(--transition) 0.2s both; }
.hero-title   { animation: slideUp 0.9s var(--transition) 0.4s both; }
.hero-sub     { animation: slideUp 0.8s var(--transition) 0.6s both; }
.hero-desc    { animation: slideUp 0.8s var(--transition) 0.75s both; }
.hero-btns    { animation: slideUp 0.8s var(--transition) 0.9s both; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-eyebrow::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--gold);
  animation: expandLine 0.8s var(--transition) 0.2s both;
}
@keyframes expandLine {
  from { width: 0; opacity: 0; }
  to   { width: 40px; opacity: 1; }
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-sub {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  line-height: 2.2;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-bottom: 3rem;
}

.hero-btns { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--red);
  color: var(--gold-light);
  padding: 1rem 2.4rem;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(198,180,138,0.25);
  display: inline-block;
  transition: all 0.35s var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(198,180,138,0.08);
  transform: translateX(-100%);
  transition: transform 0.35s var(--transition);
}
.btn-primary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.btn-primary:hover::before { transform: translateX(0); }

.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 1rem 2.4rem;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  transition: all 0.35s var(--transition);
}
.btn-secondary:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

/* Hero Right */
.hero-right {
  position: relative;
  z-index: 2;
  padding: 10rem 5rem 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.2s var(--transition) 0.3s both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-logo-wrap {
  width: 260px;
  height: 260px;
  margin-bottom: 2.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* spinning ring around logo */
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(198,180,138,0.2);
  animation: spinSlow 20s linear infinite;
}
.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px dashed rgba(198,180,138,0.1);
  animation: spinSlow 30s linear infinite reverse;
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.hero-logo-img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 32px rgba(115,150,104,0.3));
  animation: logoPulse 4s ease-in-out infinite alternate;
}
@keyframes logoPulse {
  0%   { filter: drop-shadow(0 0 24px rgba(115,150,104,0.2)); }
  100% { filter: drop-shadow(0 0 48px rgba(115,150,104,0.45)); }
}

/* Stat cards */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 100%; }

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(198,180,138,0.12);
  padding: 1.8rem 1.5rem;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.stat-card:hover { background: rgba(198,180,138,0.06); border-color: rgba(198,180,138,0.25); transform: translateY(-2px); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   SHARED UTILITIES
══════════════════════════════════════ */
section { padding: 7rem 6rem; }

.section-label {
  font-size: 0.58rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after { content: ""; flex: 1; max-width: 60px; height: 1px; background: currentColor; }

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.lead {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 720px;
}

/* Fade animations (scroll-triggered) */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   VALUE SECTION
══════════════════════════════════════ */
.value-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: center;
  position: relative;
}
.value-section::before {
  content: "VALUE";
  position: absolute;
  top: 50%; left: -2rem;
  transform: translateY(-50%) rotate(-90deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  font-weight: 300;
  color: rgba(115,150,104,0.05);
  letter-spacing: 0.4em;
  white-space: nowrap;
  pointer-events: none;
}

.value-list { list-style: none; margin-top: 2.5rem; }
.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.82rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.3s;
}
.value-list li:hover { color: var(--text); }
.value-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 0.65rem;
  transition: transform 0.3s;
}
.value-list li:hover::before { transform: scale(1.5); }

.quote-block {
  border-left: 3px solid var(--red);
  padding: 1.6rem 2rem;
  margin-top: 2.5rem;
  background: rgba(47,62,52,0.05);
  position: relative;
}
.quote-block::before {
  content: "\201C";
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  color: rgba(47,62,52,0.08);
  position: absolute;
  top: -1rem; left: 1rem;
  line-height: 1;
  pointer-events: none;
}
.quote-block p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--navy);
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { background: var(--navy); padding: 7rem 6rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 4rem;
}

.service-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(198,180,138,0.08);
  padding: 2.8rem 2.2rem;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition);
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(115,150,104,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { background: rgba(198,180,138,0.05); border-color: rgba(198,180,138,0.18); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.2); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; }

.service-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(198,180,138,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(198,180,138,0.22); }

.service-title {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.service-items { list-style: none; }
.service-items li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  letter-spacing: 0.04em;
  line-height: 1.6;
  transition: color 0.3s;
}
.service-card:hover .service-items li { color: rgba(255,255,255,0.58); }

/* ══════════════════════════════════════
   LEADERSHIP / ABOUT
══════════════════════════════════════ */
.leadership-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.leader-panel {
  background: var(--navy);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
}
.leader-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--gold), var(--red));
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.leader-panel::after {
  content: '\201C';
  position: absolute;
  bottom: -2rem; right: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 14rem;
  color: rgba(115,150,104,0.07);
  line-height: 1;
  pointer-events: none;
}

.leader-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}
.leader-role {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  opacity: 0.85;
}
.leader-bio {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.6);
}

.projects-header {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}
.projects-list { list-style: none; }
.projects-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.3s, padding-left 0.3s;
}
.projects-list li:hover { color: rgba(255,255,255,0.8); padding-left: 0.4rem; }
.projects-list li::before { content: ""; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; opacity: 0.5; }

.impact-box {
  background: var(--red);
  padding: 1.6rem 2rem;
  margin-top: 2rem;
  border-left: 3px solid var(--gold);
}
.impact-box p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  color: var(--gold-light);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   CLIENTS
══════════════════════════════════════ */
.clients-section { background: var(--cream-dark); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid rgba(0,0,0,0.06);
}
.client-item {
  background: var(--white);
  padding: 2rem 1.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  line-height: 1.6;
  transition: background 0.35s, color 0.35s, transform 0.35s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.client-item::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s var(--transition);
}
.client-item:hover { background: var(--red); color: var(--gold-light); }
.client-item:hover::before { transform: scaleX(1); }

/* ══════════════════════════════════════
   APPROACH
══════════════════════════════════════ */
.approach-section { background: var(--navy); text-align: center; padding: 8rem 6rem; }
.approach-section h2 { color: var(--white); }

.pillars {
  display: flex;
  margin-top: 4rem;
  border: 1px solid rgba(198,180,138,0.12);
}
.pillar {
  flex: 1;
  padding: 3.5rem 2rem;
  border-right: 1px solid rgba(198,180,138,0.08);
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.pillar:last-child { border-right: none; }
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(115,150,104,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.pillar:hover { background: rgba(198,180,138,0.04); }
.pillar:hover::before { opacity: 1; }

.pillar-top  { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-style: italic; color: var(--gold); margin-bottom: 0.6rem; }
.pillar-conn { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 0.6rem; }
.pillar-bot  { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; color: rgba(255,255,255,0.52); }

/* ══════════════════════════════════════
   CTA / CONTACT
══════════════════════════════════════ */
.cta-section {
  background: var(--red);
  padding: 7rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(115,150,104,0.1) 0%, transparent 55%);
  animation: ctaPulse 6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.1); opacity: 1; }
}

.cta-section h2 { color: var(--gold-light); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-section .lead { color: rgba(255,255,255,0.78); margin: 0 auto 3rem; position: relative; z-index: 1; }

.btn-dark {
  display: inline-block;
  background: rgba(13,27,42,0.8);
  color: var(--gold);
  padding: 1.1rem 3rem;
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid rgba(198,180,138,0.3);
  transition: all 0.4s var(--transition);
  position: relative;
  z-index: 1;
}
.btn-dark:hover { background: rgba(13,27,42,1); border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }

.contact-info { margin-top: 2.5rem; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; position: relative; z-index: 1; }
.contact-info a { font-size: 0.7rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.3s; }
.contact-info a:hover { color: var(--gold-light); text-decoration: underline; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#site-footer {
  background: #2a2e2a;
  padding: 3rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(198,180,138,0.15);
}
.footer-logo { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; color: var(--gold); letter-spacing: 0.08em; }
.footer-tagline { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: 0.4rem; }
.footer-copy { font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 10rem 6rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, #162335 0%, #0d1b2a 70%);
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,180,138,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,180,138,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; }

.ph-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideUp 0.7s var(--transition) 0.1s both;
}
.ph-eyebrow::before { content: ""; width: 40px; height: 1px; background: var(--gold); }

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.2rem;
  animation: slideUp 0.8s var(--transition) 0.25s both;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

.ph-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.58);
  max-width: 580px;
  line-height: 1.85;
  animation: slideUp 0.8s var(--transition) 0.4s both;
}

/* ══════════════════════════════════════
   BLOG LISTING
══════════════════════════════════════ */
.blog-section { background: var(--cream); padding: 5rem 6rem 7rem; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}

/* ── Blog Card ── */
.blog-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}
.blog-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition);
  z-index: 1;
}
.blog-card:hover { border-color: rgba(47,62,52,0.15); box-shadow: 0 16px 56px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-card:hover::before { transform: scaleX(1); }

/* Thumbnail */
.blog-card-thumb-wrap { overflow: hidden; }
.blog-card-thumb { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.6s var(--transition); }
.blog-card:hover .blog-card-thumb { transform: scale(1.05); }

.blog-card-thumb-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1b2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-thumb-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(198,180,138,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198,180,138,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.blog-card-thumb-placeholder span {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: rgba(198,180,138,0.18);
  position: relative;
  z-index: 1;
}

.blog-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }

.blog-card-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.blog-card-cat {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  background: rgba(47,62,52,0.06);
  padding: 0.25rem 0.7rem;
}
.blog-card-cat:hover { color: var(--navy); }
.blog-card-date { font-size: 0.58rem; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; }

.blog-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
}
.blog-card h3 a { text-decoration: none; color: var(--text); transition: color 0.3s; }
.blog-card h3 a:hover { color: var(--navy); }

.blog-card-excerpt { font-size: 0.8rem; line-height: 1.85; color: var(--text-muted); letter-spacing: 0.03em; flex: 1; margin-bottom: 1.5rem; }

.blog-card-link {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.3s, color 0.3s;
  width: fit-content;
  font-weight: 600;
}
.blog-card-link::after { content: "→"; font-size: 0.9em; }
.blog-card-link:hover { gap: 1rem; color: var(--navy); }

/* Blog Pagination */
.blog-pagination { display: flex; justify-content: center; margin-top: 4rem; }
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s;
  letter-spacing: 0.05em;
  margin: 0 2px;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current { background: var(--red); color: var(--gold-light); border-color: var(--red); }

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.blog-sidebar { position: sticky; top: 7rem; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 2rem;
  margin-bottom: 2px;
}
.sidebar-widget-title {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sidebar-cats { list-style: none; }
.sidebar-cats li { padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.sidebar-cats li a {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-cats li a:hover { color: var(--red); }
.sidebar-cats .count { font-size: 0.6rem; color: rgba(0,0,0,0.28); background: var(--cream); padding: 0.1rem 0.4rem; }

.sidebar-cta { background: var(--navy); padding: 2.2rem; text-align: center; margin-bottom: 2px; }
.sidebar-cta p { font-family: "Cormorant Garamond", serif; font-size: 1.08rem; color: rgba(255,255,255,0.68); line-height: 1.75; margin-bottom: 1.2rem; }
.sidebar-cta a { display: block; background: var(--red); color: var(--gold-light); padding: 0.75rem 1.5rem; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none; transition: background 0.3s; font-weight: 600; border: 1px solid rgba(198,180,138,0.2); }
.sidebar-cta a:hover { background: var(--red-light); }

/* ══════════════════════════════════════
   SINGLE POST
══════════════════════════════════════ */
.single-post-section { background: var(--white); padding: 5rem 6rem 7rem; }
.single-post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start; }

.post-meta-bar { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.post-cat { font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); font-weight: 600; text-decoration: none; background: rgba(47,62,52,0.06); padding: 0.3rem 0.8rem; }
.post-date, .post-author { font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

.post-featured-img { width: 100%; max-height: 500px; object-fit: cover; display: block; margin-bottom: 3rem; }

.post-content { font-family: "Cormorant Garamond", serif; font-size: 1.18rem; line-height: 1.95; color: var(--text); }
.post-content p { margin-bottom: 1.5rem; }
.post-content h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); color: var(--navy); margin: 2.8rem 0 1rem; font-weight: 400; }
.post-content h3 { font-family: "Josefin Sans", sans-serif; font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin: 2rem 0 0.8rem; font-weight: 600; }
.post-content ul, .post-content ol { padding-left: 2rem; margin-bottom: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; color: var(--text-muted); font-size: 1rem; }
.post-content blockquote { border-left: 3px solid var(--red); padding: 1.4rem 2rem; background: rgba(47,62,52,0.04); margin: 2.5rem 0; font-style: italic; color: var(--navy); font-size: 1.25rem; }
.post-content a { color: var(--red); }
.post-content strong { font-weight: 600; color: var(--text); }
.post-content img { max-width: 100%; margin: 1.5rem 0; }

.post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.06); }
.post-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.post-tag { font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 1rem; background: var(--cream); color: var(--text-muted); text-decoration: none; transition: all 0.3s; border: 1px solid transparent; }
.post-tag:hover { background: var(--red); color: var(--gold-light); border-color: var(--red); }

.post-nav-wrap { display: flex; justify-content: space-between; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.06); gap: 1rem; flex-wrap: wrap; }
.post-nav-link { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; max-width: 45%; }
.post-nav-link:hover { color: var(--red); }
.post-nav-link.next { margin-left: auto; text-align: right; }

/* Related */
.related-section { background: var(--cream-dark); padding: 5rem 6rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; margin-top: 3rem; }

/* Generic page */
.page-content-wrap { max-width: 820px; padding: 5rem 6rem 7rem; }
.entry-content { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; line-height: 1.9; color: var(--text); }
.entry-content p { margin-bottom: 1.4rem; }
.entry-content h2, .entry-content h3 { font-weight: 400; color: var(--navy); margin: 2rem 0 0.8rem; }
.entry-content a { color: var(--red); }
.entry-content ul, .entry-content ol { padding-left: 2rem; margin-bottom: 1.4rem; }
.entry-content li { margin-bottom: 0.4rem; color: var(--text-muted); }

.not-found-section { text-align: center; padding: 8rem 6rem; background: var(--cream); }

/* ══════════════════════════════════════
   RESPONSIVE — TABLET ≤ 960px
══════════════════════════════════════ */
@media (max-width: 960px) {
  #site-nav { padding: 1rem 2rem; }
  #site-nav.scrolled { padding: 0.8rem 2rem; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-drawer { display: flex; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.6rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::before { display: none; }
  .hero-content { padding: 8rem 1.5rem 3rem; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .hero-sub { font-size: 0.62rem; letter-spacing: 0.1em; max-width: 100%; }
  .hero-desc { font-size: 1rem; max-width: 100%; }
  .hero-right { padding: 2rem 1.5rem 5rem; background: linear-gradient(180deg, #162335 0%, #0d1b2a 100%); align-items: center; }
  .hero-logo-wrap { width: 200px; height: 200px; }
  .hero-logo-img { width: 180px; height: 180px; }
  .hero-orb-1, .hero-orb-2, .hero-orb-3 { display: none; }

  .value-section, .leadership-section { grid-template-columns: 1fr; gap: 3rem; }
  .value-section::before { display: none; }

  section { padding: 5rem 2rem; }
  .services-section, .approach-section, .cta-section { padding: 5rem 2rem; }
  .services-grid { grid-template-columns: 1fr; }

  .pillars { flex-direction: column; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(198,180,138,0.08); padding: 2rem 1.5rem; }
  .pillar:last-child { border-bottom: none; }

  .clients-grid { grid-template-columns: 1fr 1fr; }
  .contact-info { flex-direction: column; align-items: center; gap: 1.2rem; }

  #site-footer { padding: 2.5rem 2rem; flex-direction: column; text-align: center; }
  .leader-panel { padding: 2.5rem 2rem; }
  .leader-panel::after { font-size: 8rem; }

  .blog-section { padding: 4rem 2rem 5rem; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr; }

  .single-post-section { padding: 4rem 2rem 5rem; }
  .single-post-layout { grid-template-columns: 1fr; }
  .post-featured-img { max-height: 280px; }

  .page-hero { padding: 8rem 2rem 4rem; }
  .page-hero::before { display: none; }
  .related-section { padding: 4rem 2rem; }
  .page-content-wrap { padding: 4rem 2rem; }
}

@media (max-width: 480px) {
  #site-nav { padding: 0.9rem 1rem; }
  .nav-logo { font-size: 1rem; }
  .nav-cta { padding: 0.4rem 0.8rem; font-size: 0.55rem; }
  .hero-content { padding: 7rem 1.25rem 2.5rem; }
  .hero-right { padding: 1.5rem 1.25rem 4rem; }
  .hero-title { font-size: clamp(2rem, 8.5vw, 2.8rem); }
  .hero-btns { flex-direction: column; gap: 0.8rem; }
  .btn-primary, .btn-secondary { text-align: center; width: 100%; }
  .stat-num { font-size: 2.4rem; }
  .stat-label { font-size: 0.55rem; }
  section { padding: 4rem 1.25rem; }
  .services-section, .approach-section, .cta-section { padding: 4rem 1.25rem; }
  h2 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .clients-grid { grid-template-columns: 1fr; }
  .btn-dark { width: 100%; text-align: center; }
  #site-footer { padding: 2rem 1.25rem; }
  .leader-name { font-size: 1.8rem; }
  .blog-section, .single-post-section { padding: 3rem 1.25rem 4rem; }
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .related-section { padding: 3rem 1.25rem; }
}
