/* =====================================================
   DONI MULLER PEOPLE MANAGEMENT — SHARED STYLESHEET
   Used by: index.html, about.html, blog.html,
            blog-post.html, contact.html
===================================================== */

/* =====================
   VARIABLES
===================== */
:root {
  --charcoal: #1C1C1C;
  --ivory: #F4F1EA;
  --bronze: #8A6A3F;
  --bronze-dark: #7a5c34;
  --ivory-dim: rgba(244,241,234,0.7);
  --charcoal-dim: rgba(28,28,28,0.72);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --max-w: 1120px;
  --pad-x: 48px;
  --section-y: 100px;
}

/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
}
p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* =====================
   LAYOUT
===================== */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--charcoal); color: var(--ivory); }
.section--ivory { background: var(--ivory); }

/* =====================
   NAV
===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 26px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: rgba(20,20,20,0.97);
  padding: 16px var(--pad-x);
}
/* Light-background pages (About, Blog, Contact, single post) —
   nav stays dark at all scroll positions so links are always visible */
.nav.nav--fixed-dark {
  background: rgba(20,20,20,0.97);
  padding: 16px var(--pad-x);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.03em;
}
.nav-logo em { color: var(--bronze); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.75);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--bronze); }
.nav-cta {
  background: var(--bronze);
  color: var(--ivory) !important;
  padding: 11px 24px !important;
  letter-spacing: 0.15em !important;
  opacity: 1 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--bronze-dark) !important; }

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ivory);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =====================
   SHARED ATOMS
===================== */
.eyebrow {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
}
.rule {
  width: 44px;
  height: 1px;
  background: var(--bronze);
  margin: 28px 0;
}
.btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 34px;
  cursor: pointer;
  transition: all 0.22s;
}
.btn-bronze { background: var(--bronze); color: var(--ivory); }
.btn-bronze:hover { background: var(--bronze-dark); }
.btn-ghost { border: 1px solid rgba(244,241,234,0.5); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--ivory); background: rgba(244,241,234,0.08); }
.btn-ghost-dark { border: 1px solid rgba(28,28,28,0.35); color: var(--charcoal); }
.btn-ghost-dark:hover { border-color: var(--charcoal); }

/* =====================
   GENERIC PAGE HEADER
   Used by: about, blog, contact
===================== */
.page-header {
  background: var(--ivory);
  padding: 150px 0 80px;
}
.page-header h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-style: italic;
  line-height: 1.08;
  margin-bottom: 28px;
}
.page-header-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 24px;
}
.page-header p {
  font-size: 17px;
  color: rgba(28,28,28,0.72);
  line-height: 1.85;
  max-width: 640px;
}

/* =====================
   HOME — HERO
===================== */
.hero {
  background: var(--charcoal);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55vw; height: 110vh;
  background: radial-gradient(ellipse at center, rgba(138,106,63,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero h1 {
  font-size: clamp(54px, 7.5vw, 102px);
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero h1 .payoff {
  color: var(--bronze);
  font-style: italic;
  font-weight: 300;
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(244,241,234,0.65);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* =====================
   HOME — PROBLEM
===================== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-left h2 {
  font-size: clamp(36px, 4vw, 58px);
  font-style: italic;
  line-height: 1.1;
}
.problem-right p {
  font-size: 15.5px;
  color: rgba(28,28,28,0.78);
  line-height: 1.9;
}
.problem-right .kicker {
  font-weight: 500;
  color: var(--charcoal);
}

/* =====================
   HOME — WHAT WE DO
===================== */
.wwd-head { max-width: 700px; margin-bottom: 72px; }
.wwd-head h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  color: var(--ivory);
  margin-bottom: 24px;
}
.wwd-head p {
  font-size: 15.5px;
  color: var(--ivory-dim);
  line-height: 1.9;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(138,106,63,0.3);
}
.pillar {
  padding: 44px 40px 44px 0;
  border-right: 1px solid rgba(138,106,63,0.2);
}
.pillar:first-child { padding-left: 0; }
.pillar:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.pillar:nth-child(2) { padding-left: 40px; }
.pillar-icon {
  width: 36px; height: 36px;
  color: var(--bronze);
  margin-bottom: 24px;
}
.pillar-tag {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}
.pillar h3 {
  font-size: 28px;
  color: var(--ivory);
  margin-bottom: 14px;
}
.pillar p {
  font-size: 13.5px;
  color: rgba(244,241,234,0.58);
  line-height: 1.85;
}

/* =====================
   HOME — WHO WE WORK WITH
===================== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.who-left h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  margin-bottom: 24px;
}
.who-left p {
  font-size: 15px;
  color: rgba(28,28,28,0.75);
  line-height: 1.9;
}
.who-right { padding-top: 6px; }
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(28,28,28,0.22);
  color: var(--charcoal);
}

/* =====================
   HOME — FLAGSHIP
===================== */
.flagship-wrap {
  border-left: 2px solid var(--bronze);
  padding-left: 52px;
}
.flagship-wrap h2 {
  font-size: clamp(30px, 3.8vw, 52px);
  color: var(--ivory);
  margin-bottom: 20px;
}
.flagship-intro {
  font-size: 15.5px;
  color: var(--ivory-dim);
  max-width: 620px;
  margin-bottom: 52px;
  line-height: 1.85;
}
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.phase {
  padding: 34px;
  border: 1px solid rgba(138,106,63,0.22);
}
.phase-num {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
  display: block;
}
.phase h3 {
  font-size: 26px;
  color: var(--ivory);
  margin-bottom: 12px;
}
.phase p {
  font-size: 13px;
  color: rgba(244,241,234,0.55);
  line-height: 1.8;
}

/* =====================
   HOME — CREDIBILITY
===================== */
.stats-row {
  display: flex;
  border-top: 1px solid rgba(28,28,28,0.13);
  border-bottom: 1px solid rgba(28,28,28,0.13);
  margin-bottom: 60px;
}
.stat {
  flex: 1;
  padding: 38px 32px;
  border-right: 1px solid rgba(28,28,28,0.13);
}
.stat:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28,28,28,0.45);
}
.cred-box {
  max-width: 700px;
  padding: 36px 40px;
  border-left: 3px solid var(--bronze);
  background: rgba(138,106,63,0.05);
}
.cred-box p {
  font-size: 15px;
  color: rgba(28,28,28,0.78);
  line-height: 1.85;
}

/* =====================
   HOME — ABOUT TEASER
===================== */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.teaser-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(244,241,234,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,241,234,0.22);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.teaser-text h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--ivory);
  font-style: italic;
  margin-bottom: 22px;
}
.teaser-text p {
  font-size: 15px;
  color: var(--ivory-dim);
  line-height: 1.9;
  margin-bottom: 36px;
}

/* =====================
   CLOSING CTA (reused: home, blog, post)
===================== */
.closing {
  text-align: center;
  padding: 120px 0;
}
.closing h2 {
  font-size: clamp(26px, 3.5vw, 48px);
  max-width: 740px;
  margin: 0 auto 18px;
  font-style: italic;
}
.closing-sub {
  font-size: 15px;
  color: rgba(28,28,28,0.6);
  max-width: 520px;
  margin: 0 auto 42px;
  line-height: 1.85;
}
.closing--dark h2 { color: var(--ivory); }
.closing--dark .closing-sub { color: var(--ivory-dim); }

/* =====================
   QUICK DIAGNOSTIC ENQUIRY — reusable form card
   (sitewide block via ACF Options Page, see index.html for notes)
===================== */
.closing-form-card {
  background: var(--ivory);
  max-width: 480px;
  margin: 40px auto 0;
  padding: 32px 28px;
  border-radius: 2px;
}
.closing-form-card .form-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  text-align: center;
  margin-bottom: 16px;
}
.closing-form-card .form-placeholder { padding: 36px 20px; }
.closing.section--ivory .closing-form-card { background: transparent; padding: 0; }
.personal-close .closing-form-card {
  background: transparent;
  padding: 0;
  margin: 32px 0 0;
  max-width: 480px;
}
.personal-close .closing-form-card .form-label { text-align: left; }

/* =====================
   ABOUT — HERO
===================== */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.about-hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: rgba(28,28,28,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,28,28,0.2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

/* =====================
   ABOUT — THE WORK
===================== */
.work-copy h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  color: var(--ivory);
  margin-bottom: 44px;
}
.work-copy p {
  font-size: 15.5px;
  color: var(--ivory-dim);
  line-height: 1.95;
  max-width: 800px;
  margin-bottom: 1.5em;
}
.work-copy strong { color: var(--ivory); font-weight: 500; }

/* =====================
   ABOUT — CREDENTIALS
===================== */
.creds h2 {
  font-size: clamp(26px, 3vw, 42px);
  margin-bottom: 48px;
}
.cred-list {
  list-style: none;
  max-width: 780px;
}
.cred-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(28,28,28,0.1);
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(28,28,28,0.8);
}
.cred-list li::before {
  content: '—';
  color: var(--bronze);
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================
   ABOUT — METHODOLOGY
===================== */
.method-copy h2 {
  font-size: clamp(28px, 3.8vw, 48px);
  color: var(--ivory);
  font-style: italic;
  margin-bottom: 40px;
}
.method-copy p {
  font-size: 15.5px;
  color: var(--ivory-dim);
  line-height: 1.95;
  max-width: 800px;
  margin-bottom: 1.5em;
}
.method-copy strong { color: var(--ivory); font-weight: 500; }
.method-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(138,106,63,0.3);
}
.method-pillar {
  padding: 36px 40px 36px 0;
  border-right: 1px solid rgba(138,106,63,0.18);
}
.method-pillar:last-child { border-right: none; padding-right: 0; padding-left: 40px; }
.method-pillar:nth-child(2) { padding-left: 40px; }
.method-pillar p {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: rgba(244,241,234,0.82);
  line-height: 1.5;
  margin-bottom: 0;
}

/* =====================
   ABOUT — PERSONAL CLOSE
===================== */
.personal-close h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  max-width: 800px;
  line-height: 1.35;
  margin-bottom: 32px;
}
.personal-close p {
  font-size: 15.5px;
  color: rgba(28,28,28,0.72);
  line-height: 1.95;
  max-width: 740px;
  margin-bottom: 1.5em;
}

/* =====================
   BLOG — FEATURED POST
===================== */
.post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 96px;
}
.post-featured-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(244,241,234,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,241,234,0.22);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}
.post-featured-content h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--ivory);
  margin: 16px 0 18px;
  line-height: 1.18;
}
.post-featured-content p {
  font-size: 15px;
  color: var(--ivory-dim);
  line-height: 1.9;
  margin-bottom: 28px;
}
.post-link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  border-bottom: 1px solid rgba(138,106,63,0.4);
  padding-bottom: 4px;
  transition: border-color 0.2s;
}
.post-link:hover { border-color: var(--bronze); }
.post-featured-content .post-link { color: var(--bronze); }

/* When a real image fills a blog slot, cover it edge-to-edge */
img.post-featured-img,
img.post-card-img,
img.post-hero-img {
  object-fit: cover;
  padding: 0;
}

/* =====================
   BLOG — POST GRID / CARDS
===================== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.post-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(28,28,28,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,28,28,0.2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  margin-bottom: 22px;
}
.post-card-tag {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 12px;
}
.post-card h3 {
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.post-card h3 a:hover { color: var(--bronze); }
.post-card p {
  font-size: 13.5px;
  color: rgba(28,28,28,0.62);
  line-height: 1.8;
  margin-bottom: 14px;
}
.post-card-meta {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28,28,28,0.4);
}

/* =====================
   BLOG — PAGINATION
===================== */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(28,28,28,0.1);
}
.pagination a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s;
}
.pagination a:hover { color: var(--bronze); }
.pagination .disabled {
  color: rgba(28,28,28,0.25);
  pointer-events: none;
}

/* =====================
   SINGLE POST — HEADER
===================== */
.post-header { padding-bottom: 56px; }
.post-back {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28,28,28,0.45);
  margin-bottom: 28px;
  transition: color 0.2s;
}
.post-back:hover { color: var(--bronze); }
.post-header h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 820px;
}
.post-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28,28,28,0.4);
}
.post-meta span { color: var(--bronze); }

/* =====================
   SINGLE POST — FEATURED IMAGE
===================== */
.post-hero-img {
  width: 100%;
  aspect-ratio: 16/8;
  background: rgba(28,28,28,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,28,28,0.2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 80px;
}

/* =====================
   SINGLE POST — ARTICLE BODY
===================== */
.article {
  max-width: 680px;
  margin: 0 auto;
}
.article p {
  font-size: 16px;
  color: rgba(28,28,28,0.8);
  line-height: 1.95;
}
.article h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  margin: 1.6em 0 0.7em;
}
.article h3 {
  font-size: 21px;
  font-weight: 500;
  font-family: var(--font-body);
  margin: 1.4em 0 0.6em;
}
.pull-quote {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  border-left: 3px solid var(--bronze);
  padding: 4px 0 4px 28px;
  margin: 2em 0;
  color: var(--charcoal);
}

/* =====================
   SINGLE POST — AUTHOR
===================== */
.post-author {
  max-width: 680px;
  margin: 80px auto 0;
  padding: 36px 0;
  border-top: 1px solid rgba(28,28,28,0.1);
  border-bottom: 1px solid rgba(28,28,28,0.1);
  display: flex;
  align-items: center;
  gap: 22px;
}
.author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(28,28,28,0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  text-transform: uppercase;
  color: rgba(28,28,28,0.3);
  text-align: center;
}
.author-info p {
  font-size: 13.5px;
  color: rgba(28,28,28,0.6);
  margin-bottom: 0;
  line-height: 1.7;
}
.author-info strong {
  font-size: 14.5px;
  display: block;
  margin-bottom: 2px;
}

/* "More from Insights" heading on single post */
.more-posts-head {
  font-size: clamp(24px, 2.8vw, 34px);
  margin-bottom: 48px;
}

/* =====================
   CONTACT — GRID
===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-block {
  margin-bottom: 36px;
}
.contact-info-block h4 {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}
.contact-info-block p,
.contact-info-block a {
  font-size: 15.5px;
  color: var(--charcoal);
}
.contact-info-block a:hover { color: var(--bronze); }
.contact-expect {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(28,28,28,0.1);
}
.contact-expect h4 {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}
.contact-expect p {
  font-size: 14px;
  color: rgba(28,28,28,0.65);
  line-height: 1.85;
}

/* =====================
   FORMS (Formspree static HTML — contact + quick enquiry)
===================== */
.dmpm-form { width: 100%; }
.dmpm-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dmpm-form .form-group { margin-bottom: 18px; }
.dmpm-form label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(28,28,28,0.55);
  margin-bottom: 7px;
}
.dmpm-form input,
.dmpm-form select,
.dmpm-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--charcoal);
  background: #fff;
  border: 1px solid rgba(28,28,28,0.18);
  border-radius: 2px;
  padding: 13px 16px;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.dmpm-form input:focus,
.dmpm-form select:focus,
.dmpm-form textarea:focus {
  border-color: var(--bronze);
  outline: none;
}
.dmpm-form textarea { resize: vertical; min-height: 120px; }
.dmpm-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6A3F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.dmpm-form button[type=submit] {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--bronze);
  color: var(--ivory);
  border: none;
  border-radius: 2px;
  padding: 15px 34px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  margin-top: 6px;
}
.dmpm-form button[type=submit]:hover { background: var(--bronze-dark); }
/* Quick enquiry — compact version used in closing CTA card */
.dmpm-form--quick input,
.dmpm-form--quick select { padding: 11px 14px; font-size: 13.5px; }
.dmpm-form--quick button[type=submit] { padding: 13px 24px; margin-top: 4px; }
/* Dark-bg form (closing--dark sections) */
.closing--dark .dmpm-form label { color: rgba(244,241,234,0.5); }
.closing--dark .dmpm-form input,
.closing--dark .dmpm-form select,
.closing--dark .dmpm-form textarea { background: rgba(244,241,234,0.07); color: var(--ivory); border-color: rgba(244,241,234,0.18); }
.closing--dark .dmpm-form input::placeholder,
.closing--dark .dmpm-form textarea::placeholder { color: rgba(244,241,234,0.3); }
/* Success / error feedback */
.form-feedback {
  display: none;
  font-size: 13px;
  padding: 14px 18px;
  border-radius: 2px;
  margin-top: 14px;
  text-align: center;
}
.form-feedback.success { background: rgba(138,106,63,0.12); color: var(--bronze); border: 1px solid rgba(138,106,63,0.3); }
.form-feedback.error { background: rgba(180,50,50,0.08); color: #b43232; border: 1px solid rgba(180,50,50,0.25); }
@media (max-width: 600px) {
  .dmpm-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #111;
  color: rgba(244,241,234,0.55);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(244,241,234,0.08);
  margin-bottom: 32px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--ivory);
  margin-bottom: 14px;
}
.footer-brand-tag {
  font-size: 12.5px;
  line-height: 1.85;
  color: rgba(244,241,234,0.45);
}
.footer-col h4 {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(244,241,234,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--bronze); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 11.5px; margin-bottom: 0; }
.socials { display: flex; gap: 22px; }
.socials a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.35);
  transition: color 0.2s;
}
.socials a:hover { color: var(--bronze); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  :root { --pad-x: 24px; --section-y: 70px; }
  .nav { padding: 20px var(--pad-x); }
  .nav.scrolled { padding: 14px var(--pad-x); }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(15,15,15,0.99);
    padding: 100px 24px 40px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(244,241,234,0.08); }
  .nav-links li a {
    display: block;
    padding: 20px 0;
    font-size: 13px;
  }
  .nav-links li:last-child { border-bottom: none; margin-top: 24px; }
  .nav-cta {
    display: inline-block;
    text-align: center;
    padding: 16px 24px !important;
  }

  .problem-grid,
  .who-grid,
  .teaser-grid,
  .about-hero-grid,
  .post-featured,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .pillars,
  .phases,
  .method-pillars,
  .post-grid { grid-template-columns: 1fr; }

  .pillar,
  .method-pillar {
    padding: 32px 0;
    border-right: none;
    border-top: 1px solid rgba(138,106,63,0.2);
  }
  .pillar:first-child,
  .method-pillar:first-child { border-top: none; }
  .pillar:nth-child(2),
  .method-pillar:nth-child(2) { padding-left: 0; }
  .pillar:last-child,
  .method-pillar:last-child { padding-left: 0; padding-right: 0; border-right: none; }

  .post-grid { gap: 56px; }

  .stats-row { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid rgba(28,28,28,0.13); }
  .stat:last-child { border-bottom: none; }

  .flagship-wrap { padding-left: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .closing { padding: 80px 0; }
  .pagination { flex-direction: column; gap: 16px; align-items: flex-start; }
  .post-author { flex-direction: column; align-items: flex-start; gap: 14px; }
}
