/* Content Bands */
.content-band {
  margin: 76px 0;
  padding: 58px;
  border-radius: var(--radius);
  background: var(--cream);
}
.content-band.dark {
  background: #191110;
  color: #fff;
}
.content-band.dark p,
.content-band.dark li {
  color: #d9cbc5;
}
.content-band-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}
.content-band-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
}
.content-band-head p {
  margin: 0;
  color: var(--muted);
}
.content-band .method-grid,
.content-band .pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.content-band .method-card,
.content-band .pillar-panel {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.content-band.dark .method-card {
  border-color: #493936;
  background: #271b19;
}
.content-band .method-card .number {
  color: var(--orange);
  font: 600 0.72rem 'DM Mono', monospace;
}
.content-band .method-card h3,
.content-band .pillar-panel h3 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  line-height: 1.2;
}
.content-band .method-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}
.content-band .pillar-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
}
.content-band .pillar-panel h3 {
  margin-top: 0;
  color: var(--red);
}
.content-band .pillar-panel ul,
.content-band .result-list {
  margin: 0;
  padding-left: 19px;
}
.content-band .pillar-panel li,
.content-band .result-list li {
  margin: 8px 0;
  color: var(--muted);
  font-size: 0.84rem;
}
.content-band .result-list {
  columns: 2;
  column-gap: 48px;
}
.content-band .result-list li {
  break-inside: avoid;
  margin-bottom: 13px;
}
.content-band .statement {
  margin: 32px 0 0;
  padding: 25px 28px;
  border-left: 4px solid var(--orange);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}
.content-band.dark .statement {
  background: #30201d;
  color: #fff;
}

/* Institutional Direction / Pillars */
.institutional-band {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px 48px;
}
.institutional-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.institutional-head-left h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}
.institutional-head-left h2 em {
  font-family: 'Playfair Display', serif;
  color: var(--red);
  font-style: italic;
}
.institutional-mission-card {
  padding: 24px 28px;
  background: #ffffff;
  border: 1px solid #e5dbcf;
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(45, 22, 15, 0.06);
}
.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--orange);
}
.mission-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.mission-badge span {
  font: 700 0.72rem 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.institutional-mission-card p {
  margin: 0;
  color: #3b322e;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

.institutional-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.inst-pillar-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: #ffffff;
  border: 1px solid #e7ded3;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(45, 22, 15, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.inst-pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 14px 28px rgba(45, 22, 15, 0.09);
}
.inst-icon-wrap {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 10px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--orange);
}
.inst-icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.inst-card-body h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 800;
}
.inst-card-body p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.5;
  color: #635b54;
}

@media (max-width: 1050px) {
  .institutional-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .institutional-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .institutional-grid {
    grid-template-columns: 1fr;
  }
  .institutional-band {
    padding: 36px 20px;
  }
}

/* ===================================================
   Profile / Consultor Detail & Credential Cards
   =================================================== */
.profile-detail {
  margin: 84px 0 64px;
}
.profile-detail-head {
  max-width: 820px;
  margin-bottom: 42px;
}
.profile-detail-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.profile-detail-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}
.profile-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.profile-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(33, 13, 4, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.profile-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
  box-shadow: 0 18px 36px rgba(43, 22, 15, 0.12);
}
.profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.profile-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 122, 0, 0.1);
  color: var(--red);
  flex-shrink: 0;
}
.profile-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.profile-tag {
  font: 700 0.68rem 'DM Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  background: var(--cream);
  padding: 5px 10px;
  border-radius: 6px;
}
.profile-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.25;
  color: var(--ink);
}
.profile-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}
.profile-card-contact {
  background: linear-gradient(145deg, #1f1412, #140d0c);
  border-color: #3b2b27;
  color: #fff;
}
.profile-card-contact h3 {
  color: #fff;
}
.profile-card-contact .profile-tag {
  background: rgba(255, 122, 0, 0.2);
  color: #ff9b42;
}
.profile-card-contact .profile-icon {
  background: rgba(255, 122, 0, 0.2);
  color: #ff9b42;
}
.profile-contact-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.profile-contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5eae4;
  font-size: 0.82rem;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.profile-contact-item:hover {
  background: rgba(255, 122, 0, 0.25);
  border-color: var(--orange);
  color: #fff;
}
.profile-contact-item strong {
  color: #ff9b42;
}

/* Consultant Photo Badge */
.consultant-photo-wrap {
  position: relative;
}
.consultant-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow);
}
.consultant-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 14px 20px;
  background: rgba(17, 16, 15, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 122, 0, 0.4);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}
.consultant-badge b {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
  color: #ff9b42;
  font-weight: 800;
}
.consultant-badge span {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e5d5ce;
}

/* Consultant Books Showcase */
.consultant-books-section {
  margin: 72px 0 54px;
  padding: 54px;
  background: linear-gradient(135deg, #1b1210 0%, #291516 100%);
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}
.consultant-books-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 52px;
  align-items: center;
}
.consultant-books-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.consultant-books-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.55));
  transition: transform 0.3s ease;
}
.consultant-books-img:hover {
  transform: translateY(-4px) scale(1.02);
}
.consultant-books-content h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  color: #fff;
}
.consultant-books-intro {
  margin: 0 0 24px;
  color: #d6c6bf;
  font-size: 0.95rem;
  line-height: 1.6;
}
.consultant-books-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.consultant-books-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #ff7a00;
  border-radius: 12px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.consultant-books-list li:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 122, 0, 0.4);
}
.book-bullet {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 122, 0, 0.15);
  color: #ff9b42;
  font: 700 0.78rem 'DM Mono', monospace;
  border: 1px solid rgba(255, 122, 0, 0.3);
}
.consultant-books-list strong {
  display: block;
  font-size: 0.98rem;
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
}
.consultant-books-list span {
  display: block;
  margin-top: 4px;
  font-size: 0.83rem;
  color: #c9b9b2;
  line-height: 1.45;
}
.book-badge-abras {
  display: inline-block !important;
  margin-top: 5px !important;
  padding: 2px 8px;
  background: rgba(255, 122, 0, 0.2);
  border: 1px solid rgba(255, 122, 0, 0.4);
  border-radius: 5px;
  color: #ffae63 !important;
  font: 700 0.68rem 'DM Mono', monospace;
  text-transform: uppercase;
}

@media(max-width: 980px) {
  .profile-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .consultant-books-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .consultant-books-section {
    padding: 38px 24px;
  }
}

@media(max-width: 850px) {
  .content-band-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .content-band .method-grid {
    grid-template-columns: 1fr 1fr;
  }
  .content-band .pillar-grid {
    grid-template-columns: 1fr;
  }
  .content-band .result-list {
    columns: 1;
  }
}

@media(max-width: 640px) {
  .content-band {
    margin: 54px 0;
    padding: 36px 22px;
  }
  .content-band .method-grid {
    grid-template-columns: 1fr;
  }
  .profile-detail {
    margin: 54px 0 44px;
  }
  .profile-facts-grid {
    grid-template-columns: 1fr;
  }
  .consultant-photo {
    height: 380px;
  }
  .consultant-badge {
    bottom: 16px;
    left: 16px;
    padding: 10px 15px;
  }
  .consultant-badge b {
    font-size: 1.2rem;
  }
}
