/* ============================================================
   DIRECTOR'S MESSAGE PAGE — CLEAN EDITORIAL
============================================================ */

/* ============================================================
   MAIN LAYOUT
============================================================ */
.dm-main {
  background: #ffffff;
  padding: 120px 0 6rem;
}

.dm-container {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 7rem;
  align-items: start;
}

/* ============================================================
   ASIDE — Photo & Identity
============================================================ */
.dm-aside {
  position: sticky;
  top: 100px;
}

/* Photo */
.dm-photo-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.dm-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 6px;
  filter: grayscale(10%);
  transition: filter 0.4s ease;
}

.dm-photo-wrap:hover .dm-photo { filter: grayscale(0%); }

/* Blue accent block behind photo */
.dm-photo-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 70%;
  height: 70%;
  background: var(--brand-blue);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.12;
}

/* Identity block */
.dm-identity {
  padding: 1.5rem 0 1.5rem;
  border-top: 2px solid var(--brand-blue);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 1.5rem;
}

.dm-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  margin-bottom: 0.2rem;
  line-height: 1;
}

.dm-role {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 1rem;
}

.dm-identity-logo img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.8;
}

/* Signature block */
.dm-signature-block { }

.dm-sig-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 0.6rem;
}

.dm-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0a66c2;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.dm-linkedin svg { fill: #0a66c2; }
.dm-linkedin:hover { opacity: 0.7; }

/* ============================================================
   ARTICLE — Message
============================================================ */
.dm-article {
  padding-top: 0.5rem;
}

/* Header */
.dm-article-header {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.dm-eyebrow {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brand-red);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s ease both;
}

.dm-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-red);
}

.dm-article-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  line-height: 0.95;
  animation: fadeUp 0.8s 0.1s ease both;
}

.dm-article-title span { color: var(--brand-blue); }

/* Opening quote */
.dm-opening-quote {
  background: var(--navy-deep);
  border-radius: 6px;
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.8s 0.2s ease both;
}

.dm-opening-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
}

.dm-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--brand-blue);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.8rem;
}

.dm-opening-quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* Body text */
.dm-body {
  animation: fadeUp 0.8s 0.3s ease both;
}

.dm-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 1.8rem;
  font-weight: 400;
}

/* Pull quote */
.dm-pull-quote {
  border-left: 4px solid var(--brand-blue);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--blue-pale);
  border-radius: 0 6px 6px 0;
}

.dm-pull-quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--navy-deep) !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.02em;
}

/* Closing line */
.dm-closing {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  color: var(--navy-deep) !important;
  margin-top: 2.5rem !important;
}

/* Signature footer */
.dm-footer-sig {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  animation: fadeUp 0.8s 0.4s ease both;
}

.dm-sig-line {
  width: 80px;
  height: 2px;
  background: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.dm-sig-warmregards {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 0.4rem;
  font-style: italic;
}

.dm-sig-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.dm-sig-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-red);
}

/* ============================================================
   STATS STRIP
============================================================ */
.dm-stats {
  background: var(--navy-deep);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.dm-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm-stat-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.dm-stat-sep {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.dm-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--brand-blue);
  letter-spacing: 0.04em;
  line-height: 1;
}

.dm-stat-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 0.4rem;
}

/* ============================================================
   CTA
============================================================ */
.dm-cta {
  background: var(--off-white);
  padding: var(--sp-3xl) 0;
}

.dm-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.dm-cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.03em;
  color: var(--navy-deep);
  line-height: 0.95;
  margin-bottom: 1.2rem;
}

.dm-cta-title span { color: var(--brand-blue); }

.dm-cta-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2.5rem;
}

.dm-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.dm-cta-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}
.dm-cta-link:hover { color: var(--brand-blue); }

/* ============================================================
   MOBILE
============================================================ */
@media (max-width: 900px) {
  .dm-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .dm-aside { position: static; }
  .dm-photo { height: 360px; }
  .dm-stats-inner { flex-wrap: wrap; }
  .dm-stat-item { flex: 0 0 33%; padding: 1rem; }
  .dm-stat-sep { display: none; }
}

@media (max-width: 560px) {
  .dm-stat-item { flex: 0 0 50%; }
  .dm-opening-quote { padding: 2rem 1.5rem; }
  .dm-cta-actions { flex-direction: column; }
}