/*
Theme Name: Humana
Theme URI: https://www.humanaresearchconsulting.com
Author: HUMANA Research & Consulting
Author URI: https://www.humanaresearchconsulting.com
Description: Refined editorial theme for HUMANA Research & Consulting. Mirrors the v4 prototype: slate-grey hero, parchment body, crimson accents, Cormorant Garamond + Jost.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: humana
*/

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

:root {
  --ink:        #1C1410;
  --ink-80:     #2E2520;
  --ink-60:     #4A3F38;
  --ink-40:     #7A6E68;
  --ink-20:     #B8AFA9;
  --ink-10:     #E0D9D3;

  --crimson:    #7D1A1A;
  --crimson-d:  #5C1111;
  --crimson-l:  #A32424;
  --crimson-bg: #F5EBEB;
  --crimson-mid:#C44040;

  --slate:      #7A7270;
  --slate-d:    #6A6260;
  --slate-ll:   #B5B0AE;
  --slate-bg:   #F0EDEC;

  --parchment:  #F8F5F0;
  --parchment-d:#EDE7DF;
  --parchment-dd:#D9D0C5;
  --white:      #FDFCFA;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;
  --nav-h: 72px;
  --container: 1140px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--parchment);
  color: var(--ink);
  font-size: 16px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; width: 100%;
  padding: 0 40px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; font-size: 13px; font-weight: 400;
  letter-spacing: 0.3px; color: rgba(255,255,255,0.6);
  padding: 6px 14px; border-radius: 3px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: #fff; background: rgba(255,255,255,0.07); }
.nav-cta > a { background: var(--crimson) !important; color: #fff !important; font-weight: 500; }
.nav-cta > a:hover { background: var(--crimson-l) !important; }

/* mobile nav toggle */
.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  padding: 8px; color: rgba(255,255,255,0.85);
}
.nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ── SHARED ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
section { scroll-margin-top: var(--nav-h); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--crimson); margin-bottom: 20px;
}
.eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: var(--crimson); }
.eyebrow-light { color: var(--crimson-bg); }
.eyebrow-light::before { background: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400; line-height: 1.15;
  color: var(--ink); margin-bottom: 18px;
}
.title-light { color: #fff; }
.section-lead { font-size: 17px; font-weight: 300; color: var(--ink-40); line-height: 1.8; max-width: 580px; }
.lead-light { color: rgba(255,255,255,0.65); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--crimson); color: #fff;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  padding: 13px 26px; border-radius: 3px; text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.btn-primary:hover { background: var(--crimson-l); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  font-family: var(--sans); font-size: 14px; font-weight: 400;
  padding: 13px 26px; border-radius: 3px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.18s, color 0.18s, transform 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; transform: translateY(-1px); }
.btn-ink {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  padding: 11px 22px; border-radius: 3px; text-decoration: none;
  transition: background 0.18s;
}
.btn-ink:hover { background: var(--ink-80); }

/* ━━━━━━━━━━━━━━━━━━ HERO ━━━━━━━━━━━━━━━━━━ */
.hero {
  min-height: 100vh; background: var(--slate);
  display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero-ruled {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 79px,
    rgba(255,255,255,0.04) 79px, rgba(255,255,255,0.04) 80px
  );
}
.hero-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--crimson), #C4953A, var(--crimson-mid));
}
.hero-bg-photo {
  position: absolute; right: 0; top: 0; bottom: 0; width: 48%;
  background-size: cover; background-position: center;
  opacity: 0.22;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 100%);
}
.hero-inner {
  max-width: var(--container); margin: 0 auto; width: 100%;
  padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 340px;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 400; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 32px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: rgba(255,255,255,0.4); }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 66px);
  color: #fff; font-weight: 400; line-height: 1.1; margin-bottom: 30px;
}
.hero-title em { color: var(--crimson-bg); font-style: italic; }
.hero-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.65); line-height: 1.8;
  max-width: 520px; margin-bottom: 48px;
}
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px; padding: 22px 26px;
}
.stat-num { font-family: var(--serif); font-size: 44px; line-height: 1; color: #fff; margin-bottom: 8px; }
.stat-rule { height: 1px; background: rgba(255,255,255,0.15); margin: 4px 0 10px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━ ABOUT ━━━━━━━━━━━━━━━━━━ */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.about-body p { color: var(--ink-60); font-size: 16px; line-height: 1.85; margin-bottom: 22px; font-weight: 300; }
.about-body p:last-child { margin-bottom: 0; }

.clients-row { margin-top: 44px; }
.clients-label { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-20); margin-bottom: 18px; }
.client-logos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.client-logo-card {
  background: var(--parchment); border: 1px solid var(--parchment-dd);
  border-radius: 6px; padding: 14px 18px;
  display: flex; align-items: center; justify-content: center;
  min-height: 64px;
}
.client-logo-card img {
  max-height: 36px; max-width: 100%; width: auto;
  object-fit: contain; filter: grayscale(1); opacity: 0.75;
  transition: filter 0.2s, opacity 0.2s;
}
.client-logo-card:hover img { filter: grayscale(0); opacity: 1; }
.client-logo-card .logo-fallback {
  font-size: 13px; font-weight: 600; color: var(--ink-60);
  letter-spacing: 0.5px; text-align: center;
}

.map-card { background: var(--ink); border-radius: 10px; overflow: hidden; padding: 28px; }
.map-card-label { font-size: 10px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--crimson-mid); margin-bottom: 16px; }
.map-card img { width: 100%; border-radius: 4px; opacity: 0.85; filter: saturate(0.2) brightness(1.35); }
.map-caption { margin-top: 14px; font-size: 12px; color: rgba(255,255,255,0.38); line-height: 1.6; }

/* ━━━━━━━━━━━━━━━━━━ SERVICES (home) ━━━━━━━━━━━━━━━━━━ */
.services-section { padding: 100px 0; background: var(--slate); }
.services-header { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 56px; gap: 40px; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; background: rgba(0,0,0,0.15);
  border-radius: 8px; overflow: hidden;
}
.service-card { background: rgba(255,255,255,0.09); display: flex; flex-direction: column; transition: background 0.18s; }
.service-card:hover { background: rgba(255,255,255,0.15); }
.service-photo { height: 160px; overflow: hidden; position: relative; }
.service-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.65) brightness(0.9);
  transition: transform 0.4s ease, filter 0.3s;
}
.service-card:hover .service-photo img { transform: scale(1.04); filter: saturate(0.9) brightness(1); }
.service-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(125,26,26,0.15) 0%, rgba(28,20,16,0.5) 100%);
}
.service-num-overlay {
  position: absolute; top: 12px; left: 14px; z-index: 1;
  font-family: var(--serif); font-size: 13px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.service-body { padding: 24px 26px; flex: 1; }
.service-title { font-family: var(--serif); font-size: 18px; color: #fff; font-weight: 400; line-height: 1.3; margin-bottom: 10px; }
.service-desc { font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.7; font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━ PHOTO + QUOTE BAND ━━━━━━━━━━━━━━━━━━ */
.photo-quote-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.pq-photo { position: relative; overflow: hidden; }
.pq-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8); transition: transform 0.6s; }
.pq-photo:hover img { transform: scale(1.03); }
.pq-text { background: var(--crimson); display: flex; flex-direction: column; justify-content: center; padding: 60px 56px; }
.pq-label { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.pq-text blockquote { font-family: var(--serif); font-size: 28px; font-weight: 300; font-style: italic; color: #fff; line-height: 1.5; margin-bottom: 24px; }
.pq-text cite { font-size: 13px; font-weight: 400; letter-spacing: 0.5px; color: rgba(255,255,255,0.55); font-style: normal; }

/* ━━━━━━━━━━━━━━━━━━ INNER PAGE PHOTO HEADER ━━━━━━━━━━━━━━━━━━ */
.page-photo-header { height: 260px; position: relative; overflow: hidden; }
.page-photo-header img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.55); }
.page-photo-header-overlay {
  position: absolute; inset: 0;
  background: rgba(122,114,112,0.68);
  display: flex; align-items: flex-end; padding: 40px;
}
.page-photo-header-text { max-width: var(--container); width: 100%; margin: 0 auto; padding: 0 40px; }
.page-photo-header-text h1 {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 46px);
  color: #fff; font-weight: 400;
}

/* ━━━━━━━━━━━━━━━━━━ SERVICES PAGE ━━━━━━━━━━━━━━━━━━ */
.services-page { padding: 60px 0 100px; background: var(--slate); }
.services-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; background: rgba(0,0,0,0.15);
  border-radius: 8px; overflow: hidden; margin-top: 48px;
}
.services-note { margin-top: 40px; padding: 28px 30px; background: rgba(255,255,255,0.08); border-radius: 6px; border: 1px solid rgba(255,255,255,0.12); }
.services-note p { color: rgba(255,255,255,0.62); font-size: 15px; line-height: 1.8; font-weight: 300; }
.services-note strong { color: #fff; font-weight: 500; }
.service-photo-placeholder {
  height: 160px; position: relative;
  background: rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
}
.service-photo-placeholder svg { stroke: rgba(255,255,255,0.35); fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }

/* ━━━━━━━━━━━━━━━━━━ EXPERIENCE PAGE ━━━━━━━━━━━━━━━━━━ */
.experience-page { padding: 60px 0 100px; background: var(--parchment); }
.exp-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 56px; align-items: end; }

.clients-bar {
  display: flex; align-items: center; gap: 0; flex-wrap: nowrap;
  margin-bottom: 56px;
  background: var(--white); border-radius: 6px; border: 1px solid var(--parchment-dd);
  overflow: hidden;
}
.clients-bar-label {
  padding: 20px 24px;
  font-size: 10px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 1.3px; color: var(--ink-20);
  border-right: 1px solid var(--parchment-dd);
  white-space: nowrap; flex-shrink: 0;
}
.clients-bar-logos { display: flex; align-items: center; flex: 1; }
.clients-bar-logo {
  flex: 1; padding: 16px 20px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--parchment-dd);
  min-height: 72px;
}
.clients-bar-logo:last-child { border-right: none; }
.clients-bar-logo img {
  max-height: 38px; max-width: 120px; width: auto;
  object-fit: contain; filter: grayscale(1); opacity: 0.6;
  transition: filter 0.2s, opacity 0.2s;
}
.clients-bar-logo:hover img { filter: grayscale(0); opacity: 1; }
.clients-bar-logo .logo-text { font-size: 13px; font-weight: 600; color: var(--ink-60); letter-spacing: 0.5px; }

.exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.exp-card { background: var(--white); border: 1px solid var(--parchment-dd); border-radius: 8px; padding: 30px; transition: border-color 0.18s, transform 0.18s; }
.exp-card:hover { border-color: var(--crimson); transform: translateY(-2px); }
.exp-tag { display: inline-block; background: var(--crimson-bg); color: var(--crimson-d); font-size: 10.5px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; margin-bottom: 14px; }
.exp-card-title { font-family: var(--serif); font-size: 20px; color: var(--ink); font-weight: 400; line-height: 1.3; margin-bottom: 12px; }
.exp-card-body { font-size: 13.5px; color: var(--ink-40); line-height: 1.75; font-weight: 300; }
.exp-card-body ul { padding-left: 16px; margin: 0; }
.exp-card-body li { margin-bottom: 5px; }
.exp-countries { margin-top: 16px; font-size: 12px; color: var(--crimson); font-weight: 500; }

/* ━━━━━━━━━━━━━━━━━━ STRENGTHS PAGE ━━━━━━━━━━━━━━━━━━ */
.strengths-page { padding: 80px 0 100px; background: var(--parchment-d); }
.strengths-layout { display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.strength-list { display: flex; flex-direction: column; gap: 2px; }
.strength-item { background: var(--white); border: 1px solid var(--parchment-dd); padding: 26px 28px; display: flex; gap: 18px; align-items: flex-start; transition: border-color 0.18s; position: relative; z-index: 0; }
.strength-item:first-child { border-radius: 7px 7px 0 0; }
.strength-item:last-child  { border-radius: 0 0 7px 7px; }
.strength-item:hover { border-color: var(--crimson); z-index: 1; }
.strength-dot { flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--crimson); margin-top: 9px; }
.strength-heading { font-weight: 500; font-size: 15px; color: var(--ink); margin-bottom: 5px; }
.strength-body { font-size: 13.5px; color: var(--ink-40); line-height: 1.65; font-weight: 300; }
.data-lines { margin-bottom: 36px; }
.data-lines-label { font-size:10.5px; font-weight:500; text-transform:uppercase; letter-spacing:1.3px; color:var(--ink-20); margin-bottom:4px; }
.data-line { border-top: 1px solid var(--parchment-dd); padding: 18px 0; display: flex; align-items: baseline; justify-content: space-between; }
.data-line:last-child { border-bottom: 1px solid var(--parchment-dd); }
.data-line-label { font-size: 14px; color: var(--ink-40); font-weight: 300; }
.data-line-val { font-family: var(--serif); font-size: 30px; color: var(--crimson); }
.data-line-val.small { font-size: 20px; letter-spacing: 2px; }
.data-line-val.medium { font-size: 20px; }
.pull-quote { background: var(--slate); border-radius: 8px; padding: 32px 36px; }
.pull-quote-text { font-family: var(--serif); font-size: 21px; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.88); line-height: 1.6; margin-bottom: 16px; }
.pull-quote-attr { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ━━━━━━━━━━━━━━━━━━ WORK PAGE ━━━━━━━━━━━━━━━━━━ */
.work-page { padding: 80px 0 100px; background: var(--crimson-bg); }
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.work-card { background: var(--white); border-radius: 8px; padding: 36px 30px; border: 1px solid var(--parchment-dd); text-align: center; transition: border-color 0.18s, transform 0.18s; }
.work-card:hover { border-color: var(--crimson); transform: translateY(-2px); }
.work-icon { width: 52px; height: 52px; background: var(--crimson-bg); border-radius: 50%; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; }
.work-icon svg { width: 22px; height: 22px; stroke: var(--crimson); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.work-card-title { font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 400; margin-bottom: 12px; }
.work-card-body { font-size: 13.5px; color: var(--ink-40); line-height: 1.75; margin-bottom: 22px; font-weight: 300; }

/* ━━━━━━━━━━━━━━━━━━ CONTACT PAGE ━━━━━━━━━━━━━━━━━━ */
.contact-page { padding: 80px 0 100px; background: var(--slate); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 56px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; font-weight: 500; letter-spacing: 0.8px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-field { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); border-radius: 3px; padding: 12px 16px; color: var(--ink); font-family: var(--sans); font-size: 15px; font-weight: 300; outline: none; width: 100%; transition: border-color 0.18s; }
.form-field::placeholder { color: rgba(28,20,16,0.35); }
.form-field:focus { border-color: var(--crimson-bg); background: rgba(255,255,255,0.95); }
select.form-field { cursor: pointer; }
textarea.form-field { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { background: var(--crimson); color: #fff; font-family: var(--sans); font-size: 14.5px; font-weight: 500; padding: 14px 28px; border-radius: 3px; border: none; cursor: pointer; align-self: flex-start; transition: background 0.18s; }
.form-submit:hover { background: var(--crimson-l); }
.contact-info { padding-top: 4px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(255,255,255,0.12); border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.contact-info-icon svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-info-val { font-size: 14.5px; color: #fff; font-weight: 300; }

.form-notice { padding: 14px 18px; border-radius: 4px; font-size: 14px; margin-bottom: 16px; }
.form-notice.success { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.form-notice.error   { background: rgba(125,26,26,0.45); border: 1px solid rgba(255,255,255,0.3); color: #fff; }

/* ━━━━━━━━━━━━━━━━━━ DEFAULT PAGE (fallback for any other WP page) ━━━━━━━━━━━━━━━━━━ */
.default-page { padding: 120px 0 100px; background: var(--parchment); }
.default-page .entry-content { max-width: 720px; }
.default-page .entry-content h1, .default-page .entry-content h2, .default-page .entry-content h3 {
  font-family: var(--serif); color: var(--ink); font-weight: 400; margin: 28px 0 14px;
}
.default-page .entry-content h1 { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.15; }
.default-page .entry-content h2 { font-size: 32px; }
.default-page .entry-content h3 { font-size: 22px; }
.default-page .entry-content p { color: var(--ink-60); font-size: 16px; line-height: 1.85; margin-bottom: 22px; font-weight: 300; }
.default-page .entry-content a { color: var(--crimson); text-decoration: underline; }
.default-page .entry-content a:hover { color: var(--crimson-l); }

/* ━━━━━━━━━━━━━━━━━━ FOOTER ━━━━━━━━━━━━━━━━━━ */
footer.site-footer { background: var(--ink); padding: 36px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo { font-family: var(--serif); font-size: 16px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.18s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,0.2); }

/* ━━━━━━━━━━━━━━━━━━ RESPONSIVE ━━━━━━━━━━━━━━━━━━ */
@media (max-width: 980px) {
  .nav-inner { padding: 0 24px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--ink); flex-direction: column; align-items: stretch;
    padding: 12px 0; gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 24px; border-radius: 0; font-size: 14px; }
  .nav-cta { margin: 12px 24px 4px; }
  .nav-cta > a { border-radius: 3px; text-align: center; }

  .hero-inner { grid-template-columns: 1fr; gap: 50px; padding: 60px 28px; }
  .hero-bg-photo { width: 100%; opacity: 0.14; }
  .hero-stats { max-width: 420px; }
  .container { padding: 0 28px; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-quote-band { grid-template-columns: 1fr; }
  .pq-photo { min-height: 280px; }
  .pq-text { padding: 50px 36px; }

  .exp-intro { grid-template-columns: 1fr; gap: 30px; }
  .exp-grid  { grid-template-columns: 1fr; }
  .clients-bar { flex-wrap: wrap; }
  .clients-bar-label { width: 100%; border-right: none; border-bottom: 1px solid var(--parchment-dd); }

  .strengths-layout { grid-template-columns: 1fr; gap: 40px; }
  .work-grid       { grid-template-columns: 1fr; }
  .contact-layout  { grid-template-columns: 1fr; gap: 50px; }
  .services-header { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 18px; }
  .container { padding: 0 20px; }
  .hero-inner { padding: 50px 20px; }
  .services-grid, .services-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-section, .services-section, .services-page, .experience-page, .strengths-page, .work-page, .contact-page { padding: 60px 0; }
  .pq-text { padding: 40px 24px; }
  .pq-text blockquote { font-size: 22px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 14px; }
}
