/* ============================================================
   hd.css — hussaindupre.com specific styles
   Inherits all parent theme variables from main.css / sq-tailwind.css
   DO NOT use these classes on sequentus.org / SLS templates
   ============================================================ */

/* ── Colour + font overrides for HD ───────────────────────── */
:root {
  --hd-accent:    #b87333;
  --hd-accent-hv: #a0621c;
  --hd-off-white: #f5f3ef;
  --hd-light:     #ebe8e2;
  --hd-dark-text: #1a1a1a;
  /* Override Sequentus gold tokens site-wide on HD */
  --sq-gold:       var(--hd-accent);
  --sq-gold-hover: var(--hd-accent-hv);
  /* Override Tailwind primary so text-primary, border-primary etc match */
  --color-primary: #b87333;
}

/* Outfit for headings, Plus Jakarta Sans for body */
h1, h2, h3, h4,
.hd-hero__headline,
.hd-bio__text h2,
.hd-booking__text h2,
.hd-mentoring-cta__inner h2,
.hd-service-card__body h3 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.01em;
}

/* ── Shared section header ─────────────────────────────────── */
.hd-section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.hd-section-header h2 {
  color: rgba(255,255,255,0.55);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0.5rem 0 0.75rem;
  font-weight: 400;
}
.hd-section-header p {
  color: rgba(255,255,255,0.4);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}
.hd-section-header--light h2 { color: rgba(26,26,26,0.5); font-weight: 400; }
.hd-section-header--light p  { color: rgba(26,26,26,0.45); }

/* ── sq-btn additions ──────────────────────────────────────── */
.sq-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--sq-radius, 4px);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.sq-btn--gold {
  background: transparent;
  color: var(--sq-white, #fff);
  border-color: rgba(255,255,255,0.6);
}
.sq-btn--gold:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--sq-white, #fff);
  color: var(--sq-white, #fff);
}
.sq-btn--outline {
  background: transparent;
  color: var(--sq-white);
  border-color: rgba(255,255,255,0.35);
}
.sq-btn--outline:hover {
  border-color: var(--sq-gold);
  color: var(--sq-gold);
}
.sq-btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* ── sq-eyebrow ────────────────────────────────────────────── */
.sq-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.sq-eyebrow--gold { color: var(--sq-gold); }

/* ── sq-container ──────────────────────────────────────────── */
.sq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ════════════════════════════════════════════════════════════
   1. HERO
   ════════════════════════════════════════════════════════════ */
.hd-hero {
  min-height: 100vh;
  background: var(--sq-black, #0a0a0a);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

/* Left: portrait cutout */
.hd-hero__portrait {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hd-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Right: copy */
.hd-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 3rem 80px 3rem;
  min-width: 0;
  overflow: hidden;
}

.hd-hero__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sq-black, #0a0a0a);
  background: var(--sq-gold, var(--hd-accent));
  padding: 0.35rem 0.875rem;
  border-radius: 3px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.hd-hero__headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  line-height: 1.05;
  color: var(--sq-white, #fff);
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.hd-hero__headline span {
  color: var(--sq-gold, var(--hd-accent));
  font-size: 0.42em;
  display: block;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.3em;
}

.hd-hero__sub {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 420px;
  margin-bottom: 2rem;
}

.hd-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Stats row */
.hd-hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hd-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hd-hero__stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  color: var(--sq-gold, var(--hd-accent));
  line-height: 1;
}
.hd-hero__stat-num small {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.hd-hero__stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.hd-hero__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ════════════════════════════════════════════════════════════
   2. REGULATOR STRIP
   ════════════════════════════════════════════════════════════ */
.hd-regstrip {
  background: var(--sq-black, #0a0a0a);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.1rem 1.5rem;
}
.hd-regstrip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hd-regstrip__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  margin-right: 0.5rem;
}
.hd-regstrip__badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  transition: all 0.2s;
}
.hd-regstrip__badge:hover {
  color: var(--sq-gold, var(--hd-accent));
  border-color: var(--sq-gold, var(--hd-accent));
}

/* ════════════════════════════════════════════════════════════
   3. SERVICES
   ════════════════════════════════════════════════════════════ */
.hd-services {
  padding: 5rem 0;
  background: #111;
}

.hd-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hd-service-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2.5rem;
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hd-service-card:hover { border-color: var(--sq-gold, var(--hd-accent)); }

.hd-service-card__icon {
  color: var(--sq-gold, var(--hd-accent));
  margin-bottom: 1.25rem;
}

.hd-service-card__body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  color: var(--sq-white, #fff);
  margin-bottom: 0.875rem;
}

.hd-service-card__body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.hd-service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}
.hd-service-card__list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-left: 1.1rem;
  position: relative;
}
.hd-service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sq-gold, var(--hd-accent));
  font-size: 0.75rem;
}

.hd-service-card__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sq-gold, var(--hd-accent));
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: auto;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.hd-service-card__cta:hover { opacity: 0.75; }

/* ════════════════════════════════════════════════════════════
   4. BIO — two column, image right
   ════════════════════════════════════════════════════════════ */
.hd-bio {
  background: #0f0f0f;
  overflow: hidden;
}
.hd-bio__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hd-bio__text {
  padding: 5rem 3rem 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hd-bio__text h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: #fff;
  line-height: 1.15;
  margin: 0.5rem 0 1.25rem;
}
.hd-bio__text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 480px;
}
.hd-bio__creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.hd-bio__cred {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border: 1px solid rgba(184,115,51,0.5);
  color: var(--hd-accent);
  border-radius: 3px;
}
/* Image column — fills full height, cropped to face */
.hd-bio__img {
  position: relative;
  overflow: hidden;
}
.hd-bio__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% top;
}

/* ════════════════════════════════════════════════════════════
   5. NEWS
   ════════════════════════════════════════════════════════════ */
.hd-news {
  padding: 5rem 0;
  background: #0a0a0a;
}

.hd-news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hd-news-card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s;
}
.hd-news-card:hover { border-color: var(--sq-gold, var(--hd-accent)); }

.hd-news-card__img {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
}
.hd-news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.hd-news-card:hover .hd-news-card__img img { transform: scale(1.04); }

.hd-news-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Fixed-height date so titles always start at same position */
.hd-news-card__date {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sq-gold, var(--hd-accent));
  margin: 0 0 0.6rem;
  height: 1.2em;
  line-height: 1.2;
}

/* Fixed height for title — 2 lines */
.hd-news-card__body h3 {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  height: calc(2 * 1rem * 1.45);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.hd-news-card__body h3 a {
  color: var(--sq-white, #fff);
  text-decoration: none;
}
.hd-news-card__body h3 a:hover { color: var(--sq-gold, var(--hd-accent)); }

/* Excerpt fills remaining space, clamped to 3 lines */
.hd-news-card__body p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Read more always pinned to bottom */
.hd-news-card__more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sq-gold, var(--hd-accent));
  text-decoration: none;
  margin-top: 1rem;
  flex-shrink: 0;
}

.hd-news__empty {
  grid-column: 1/-1;
  text-align: center;
  color: rgba(255,255,255,0.3);
  padding: 3rem 0;
}

/* ════════════════════════════════════════════════════════════
   6. TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.hd-testimonials {
  padding: 5rem 0;
  background: var(--hd-off-white);
}

.hd-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.hd-tcard {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.hd-tcard__quote {
  font-size: 0.925rem;
  line-height: 1.7;
  color: rgba(26,26,26,0.75);
  flex: 1;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.hd-tcard__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.hd-tcard__initials {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sq-gold, var(--hd-accent));
}
.hd-tcard__role {
  font-size: 0.8rem;
  color: rgba(26,26,26,0.45);
}

/* ════════════════════════════════════════════════════════════
   7. BOOKING
   ════════════════════════════════════════════════════════════ */
.hd-booking {
  padding: 5rem 0 0;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.hd-booking__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: start;
  padding-bottom: 5rem;
}

.hd-booking__text {
  display: flex;
  flex-direction: column;
}

.hd-booking__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fff;
  margin: 0.5rem 0 1rem;
}
.hd-booking__text p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.hd-booking__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.hd-booking__contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.925rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.hd-booking__contact svg { color: var(--sq-gold, var(--hd-accent)); flex-shrink: 0; }
.hd-booking__contact:hover { color: var(--sq-gold, var(--hd-accent)); }

/* Widget panel */
.hd-booking__widget {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  min-height: 560px;
  display: flex;
  align-items: stretch;
}

/* Force widget to fill its container */
.hd-booking__widget > div,
.hd-booking__widget .hdb-widget {
  width: 100%;
}

.hd-booking__stub {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem;
  gap: 0.5rem;
}
.hd-booking__stub p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.hd-booking__stub-sub {
  font-size: 0.8rem !important;
  color: rgba(255,255,255,0.35) !important;
  margin-bottom: 0.5rem !important;
}

/* Cutout photo — absolutely positioned at section baseline, left */
.hd-booking__cutout {
  position: absolute;
  bottom: 0;
  left: 2%;
  width: 340px;
  pointer-events: none;
  z-index: 2;
  line-height: 0;
}
.hd-booking__cutout img {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

/* Pull quote below contacts */
.hd-booking__testimonial {
  margin: 5rem 0 0 125px;
  padding: 0;
  border: none;
  max-width: 420px;
}
.hd-booking__testimonial p {
  font-size: 1.5rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  margin: 0 0 0.75rem;
}
.hd-booking__testimonial cite {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hd-accent);
}

/* ════════════════════════════════════════════════════════════
   8. MENTORING CTA BANNER
   ════════════════════════════════════════════════════════════ */
.hd-mentoring-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #111 100%);
  border-top: 1px solid rgba(184,115,51,0.2);
  position: relative;
}
.hd-mentoring-cta__overlay {
  display: none;
}
.hd-mentoring-cta__inner {
  position: relative;
  z-index: 1;
}

.hd-mentoring-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.hd-mentoring-cta__inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--sq-white, #fff);
  margin: 0.5rem 0 0.875rem;
}
.hd-mentoring-cta__inner p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  max-width: 500px;
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hd-hero { grid-template-columns: 1fr; min-height: auto; }
  .hd-hero__portrait { display: none; }
  .hd-hero__copy { padding: 160px 2rem 4rem; }
  .hd-hero__headline { font-size: clamp(2.5rem, 8vw, 3.5rem); }

  .hd-services__grid { grid-template-columns: 1fr; }
  .hd-bio__inner { grid-template-columns: 1fr; }
  .hd-bio__img { min-height: 480px; }
  .hd-news__grid { grid-template-columns: 1fr 1fr; }

  .hd-testimonials__grid,
  .hd-booking__inner { grid-template-columns: 1fr; }
  .hd-booking__cutout { display: none; }

  .hd-mentoring-cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hd-hero__ctas { flex-direction: column; }
  .hd-hero__stats { gap: 1rem; }
  .hd-hero__stat-num { font-size: 1.4rem; }
}

/* ════════════════════════════════════════════════════════════
   NEWS EXPAND PANEL
   ════════════════════════════════════════════════════════════ */

/* Active card state */
.hd-news-card {
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.hd-news-card.is-active {
  border-color: var(--hd-accent);
}
.hd-news-card.is-active .hd-news-card__arrow {
  display: inline-block;
  transform: rotate(180deg);
}
.hd-news-card__arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Panel spans full grid width */
.hd-news-expand {
  grid-column: 1 / -1;
  background: #1e1e1e;
  border: 1px solid var(--hd-accent);
  border-radius: 8px;
  overflow: hidden;
  max-height: 0;
  margin-top: 0.25rem;
}

.hd-news-expand__close {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.875rem 0.4rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.hd-news-expand__close:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* Spinner */
.hd-news-expand__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}
.hd-news-expand__spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--hd-accent);
  border-radius: 50%;
  animation: hd-spin 0.7s linear infinite;
}
@keyframes hd-spin { to { transform: rotate(360deg); } }

/* Body layout */
.hd-news-expand__body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 0 2.5rem;
  padding: 2.5rem 2.5rem 2.5rem;
  position: relative;
}

.hd-news-expand__meta {
  grid-column: 1;
  grid-row: 1;
}
.hd-news-expand__date {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hd-accent);
  margin-bottom: 0.5rem;
}

.hd-news-expand__img {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.hd-news-expand__img img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.hd-news-expand__content {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}
.hd-news-expand__content p { margin-bottom: 1rem; }
.hd-news-expand__content h2,
.hd-news-expand__content h3 {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  margin: 1.5rem 0 0.75rem;
}
.hd-news-expand__content a {
  color: var(--hd-accent);
  text-decoration: underline;
}
.hd-news-expand__content ul,
.hd-news-expand__content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.hd-news-expand__content li { margin-bottom: 0.4rem; }

@media (max-width: 768px) {
  .hd-news-expand__body {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
  }
  .hd-news-expand__img  { grid-column: 1; grid-row: 2; }
  .hd-news-expand__content { grid-column: 1; grid-row: 3; }
}

/* ── News section header — full white, strong ── */
.hd-news .hd-section-header h2 {
  color: #fff;
  font-weight: 700;
}
.hd-news .hd-section-header p {
  color: rgba(255,255,255,0.55);
}



/* ── Testimonials on light bg — dark text ── */
.hd-testimonials .hd-section-header h2 {
  color: rgba(26,26,26,0.75);
  font-weight: 600;
}
.hd-testimonials .hd-section-header p {
  color: rgba(26,26,26,0.45);
}
.hd-testimonials .sq-eyebrow {
  color: var(--hd-accent);
}



/* ── Footer spacing ── */
footer.bg-black {
  padding-top: 6rem !important;
}


/* ============================================================
   hdm — Mentoring page
   ============================================================ */

.hdm-page { background-color: #0a0a0a; min-height: 100vh; }

.hdm-frost {
    background: rgba(10,10,10,0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
}

.hdm-section { padding: 80px 1.5rem; }

/* ── Hero ─────────────────────────── */
.hdm-hero { padding-top: 120px; padding-bottom: 100px; }
.hdm-hero__inner { max-width: 680px; margin: 0 auto; padding: 48px 40px; text-align: center; }

.hdm-badge {
    display: inline-block;
    background: rgba(184,115,51,0.15);
    color: var(--hd-accent);
    border: 1px solid rgba(184,115,51,0.35);
    border-radius: 999px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 5px 14px; margin-bottom: 20px;
}

.hdm-hero__headline { font-size: clamp(2rem,5vw,3.2rem); font-weight: 700; line-height: 1.15; margin: 0 0 18px; color: #fff; }
.hdm-hero__tagline  { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin: 0 0 32px; }

.hdm-hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Section header ───────────────── */
.hdm-section-header { text-align: center; margin-bottom: 40px; }
.hdm-section-header h2 { margin: 8px 0 0; font-size: clamp(1.6rem,3.5vw,2.4rem); }
.hdm-section-header p  { margin: 10px 0 0; color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ── Who it's for ─────────────────── */
.hdm-for__inner { padding: 48px 40px; }
.hdm-for__grid  { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; }

.hdm-for-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 6px; padding: 28px 24px; }
.hdm-for-card__icon { color: var(--hd-accent); margin-bottom: 14px; }
.hdm-for-card h3 { font-size: 1rem; font-weight: 600; margin: 0 0 8px; color: #fff; }
.hdm-for-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }

/* ── Meet your mentor ─────────────── */
.hdm-mentor { background: #0f0f0f; padding: 80px 1.5rem; }
.hdm-mentor__inner { display: grid; grid-template-columns: 340px 1fr; gap: 56px; align-items: center; }

.hdm-mentor__photo { border-radius: 6px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.hdm-mentor__photo img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; object-position: center top; }

.hdm-mentor__text h2 { margin: 8px 0 16px; font-size: clamp(1.6rem,3vw,2.2rem); }
.hdm-mentor__text p  { color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0 0 14px; font-size: 0.95rem; }

.hdm-mentor__creds { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 8px; }
.hdm-mentor__creds li { font-size: 0.875rem; color: var(--hd-accent); padding-left: 16px; position: relative; }
.hdm-mentor__creds li::before { content: '—'; position: absolute; left: 0; color: rgba(184,115,51,0.5); }

/* ── What you get ─────────────────── */
.hdm-what__inner { padding: 48px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.hdm-what__text h2 { margin: 8px 0 16px; }
.hdm-what__intro   { color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0; }

.hdm-what__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.hdm-what__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.5; }
.hdm-what__list li::before { content: ''; display: block; width: 6px; height: 6px; min-width: 6px; background: var(--hd-accent); border-radius: 50%; margin-top: 7px; }

/* ── Pricing ──────────────────────── */
.hdm-pricing__inner { padding: 48px 40px; }
.hdm-pricing__grid  { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 20px; margin-bottom: 20px; }

.hdm-pricing-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; padding: 28px 24px; position: relative; display: flex; flex-direction: column; gap: 12px; }
.hdm-pricing-card--featured { border-color: rgba(184,115,51,0.5); background: rgba(184,115,51,0.07); }
.hdm-pricing-card__tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--hd-accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.hdm-pricing-card__name  { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hd-accent); }
.hdm-pricing-card__price { font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; }
.hdm-pricing-card__desc  { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; line-height: 1.55; }
.hdm-pricing-card__list  { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hdm-pricing-card__list li { font-size: 0.875rem; color: rgba(255,255,255,0.8); padding-left: 16px; position: relative; line-height: 1.4; }
.hdm-pricing-card__list li::before { content: '✓'; position: absolute; left: 0; color: var(--hd-accent); font-size: 12px; }
.hdm-pricing__note { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0; }

/* ── Booking ──────────────────────── */
.hdm-booking {
    background: #111;
    padding: 80px 1.5rem 100px;
    overflow: visible;
    position: relative;
}

.hdm-booking__outer {
    position: relative;
}

.hdm-booking__panel {
    background: rgba(20,16,12,0.95);
    border: 1px solid rgba(184,115,51,0.2);
    border-radius: 8px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Khaled on section baseline, overlapping panel from the left */
.hdm-booking__cutout {
    position: absolute;
    bottom: 0;
    left: 300px;
    width: 322px;
    z-index: 2;
    pointer-events: none;
}
.hdm-booking__cutout img {
    width: 100%;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    filter: none;
}

.hdm-booking__text h2 {
    margin: 8px 0 14px;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-family: 'Outfit', sans-serif;
}
.hdm-booking__text p {
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
    margin: 0 0 20px;
    font-size: 0.95rem;
}
.hdm-booking__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}
.hd-booking__contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.hd-booking__contact svg { color: var(--hd-accent); flex-shrink: 0; }
.hd-booking__contact:hover { color: var(--hd-accent); }

/* ── FAQ ──────────────────────────── */
.hdm-faq__inner { padding: 48px 40px; }
.hdm-faq__list  { display: flex; flex-direction: column; gap: 2px; max-width: 760px; margin: 0 auto; }
.hdm-faq__item  { border-bottom: 1px solid rgba(255,255,255,0.07); }

.hdm-faq__q { width: 100%; background: none; border: none; color: #fff; font-size: 0.95rem; font-weight: 500; text-align: left; padding: 18px 0; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: inherit; line-height: 1.4; }
.hdm-faq__q:hover, .hdm-faq__q[aria-expanded="true"] { color: var(--hd-accent); }

.hdm-faq__chevron { flex-shrink: 0; transition: transform 0.2s ease; color: var(--hd-accent); }
.hdm-faq__q[aria-expanded="true"] .hdm-faq__chevron { transform: rotate(180deg); }
.hdm-faq__a { padding: 0 0 18px; font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── Mobile ───────────────────────── */
@media (max-width: 900px) {
    .hdm-mentor__inner       { grid-template-columns: 1fr; }
    .hdm-booking__cutout     { display: none; }
    .hdm-booking__panel      { grid-template-columns: 1fr; padding: 40px 24px; margin-bottom: 0; }
    .hdm-booking__outer      { min-height: auto; }
    .hdm-what__inner         { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 600px) {
    .hdm-hero__inner, .hdm-for__inner, .hdm-what__inner, .hdm-pricing__inner, .hdm-faq__inner { padding: 32px 20px; }
    .hdm-hero { padding-top: 80px; }
}
