/* ==========================================================================
   HAZORGS MARKETING — pages.css
   Layouts specific to individual pages. Shared patterns live in components.css.
   ========================================================================== */

/* ==========================================================================
   SPLIT — heading left, prose right. The workhorse layout for the
   heavy narrative sections that appear on nearly every page.
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
.split__head .eyebrow { margin-bottom: var(--s-4); }
.split__body p { color: var(--ink-soft); }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* ==========================================================================
   FEATURED BBC BLOCK (home)
   ========================================================================== */

.bbc__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (max-width: 900px) { .bbc__grid { grid-template-columns: 1fr; } }

.bbc__goal,
.bbc__grant {
  padding: var(--s-5);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
}
.bbc__goal .eyebrow,
.bbc__grant .eyebrow { margin-bottom: var(--s-3); }
.bbc__goal p, .bbc__grant p { color: rgba(255,255,255,.75); }
.bbc__goal b { color: var(--white); }

.bbc__grant { background: rgba(255,0,0,.08); border-color: rgba(255,0,0,.35); }

.bbc__amount {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 1.6rem + 3vw, 3.5rem);
  font-weight: 800;
  font-stretch: var(--wide);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white) !important;
  margin-bottom: var(--s-3);
}
.bbc__terms {
  display: block;
  margin-top: var(--s-3);
  font-size: var(--t-xs);
  color: rgba(255,255,255,.45);
}

/* The eight training pillars, each marked with the slash */
.bbc__pillars .eyebrow { margin-bottom: var(--s-5); }

.bbc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.bbc__list li {
  position: relative;
  padding: var(--s-4) var(--s-4) var(--s-4) var(--s-5);
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 600;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.14);
}
.bbc__list li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.14); }
.bbc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  translate: 0 -50%;
  width: 3px; height: 1em;
  background: var(--brand-red);
  transform: skewX(-18deg);
}
@media (max-width: 520px) {
  .bbc__list { grid-template-columns: 1fr; }
  .bbc__list li:nth-last-child(-n+2) { border-bottom: 0; }
  .bbc__list li:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
}

/* ==========================================================================
   PRINCIPLES (home — Our Commitment)
   ========================================================================== */

.principle {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--surface);
  border-radius: var(--radius-lg);
}
.principle .slash { align-self: flex-start; }

.commitment__note {
  max-width: var(--wrap-text);
  margin: var(--s-7) auto 0;
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: var(--t-lead);
  color: var(--ink-soft);
}

/* ==========================================================================
   CONTACT CARDS
   ========================================================================== */

.contact-card {
  padding: var(--s-5);
  border-left: 3px solid var(--red);
  background: var(--surface);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.contact-card h4 { margin-bottom: var(--s-3); }
.contact-card p { color: var(--ink-soft); }
.contact-card a { color: var(--red); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* ==========================================================================
   STATEMENT — mission / vision / purpose (about)
   ========================================================================== */

.statement {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-6);
  background: var(--surface);
  border-radius: var(--radius-lg);
}
.statement .slash { align-self: flex-start; }
.statement p { color: var(--ink-soft); }

/* ==========================================================================
   SVC — a service group: title, intro, then its own list of deliverables.
   Used on Growth Design, Brand Development, Talent, Academy.
   ========================================================================== */

.svc {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-6);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.svc .slash { align-self: flex-start; }
.svc > p { color: var(--ink-soft); }
.svc .ticks { margin-top: auto; }
.svc .ticks li { font-size: var(--t-sm); margin-bottom: var(--s-2); }

.svc__label {
  font-family: var(--font-display);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: calc(var(--s-2) * -1);
}

/* ==========================================================================
   TICKS — two-column variant for the long qualifying lists
   ========================================================================== */

.ticks--cols {
  columns: 2;
  column-gap: var(--s-6);
}
.ticks--cols li { break-inside: avoid; }
@media (max-width: 520px) { .ticks--cols { columns: 1; } }

/* ==========================================================================
   PROGRAM DETAILS (public speaking)
   ========================================================================== */

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.detail {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-5);
  background: var(--white);
}
.detail__k {
  font-family: var(--font-display);
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.detail__v {
  font-family: var(--font-display);
  font-size: var(--t-h4);
  font-weight: 700;
  color: var(--ink);
}
.detail--price { background: var(--ink); }
.detail--price .detail__k { color: var(--brand-red); }
.detail--price .detail__v {
  color: var(--white);
  font-size: var(--t-h3);
  font-stretch: var(--wide);
  letter-spacing: -0.02em;
}

/* ==========================================================================
   BUSINESS HOURS (contact)
   ========================================================================== */

.hours {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.hours .eyebrow { margin-bottom: var(--s-5); }
.hours__grid { display: grid; gap: 0; }
.hours__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-3);
  padding-block: var(--s-4);
  border-top: 1px solid var(--line);
}
.hours__row:first-child { border-top: 0; padding-top: 0; }
.hours__row span { color: var(--ink-soft); }
.hours__row b { font-family: var(--font-display); color: var(--ink); text-align: right; }

/* ==========================================================================
   CONTACT PAGE LAYOUT
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: var(--s-7); } }

.contact-aside {
  padding: var(--s-6);
  background: var(--surface);
  border-radius: var(--radius-lg);
}
.contact-aside .ticks li { margin-bottom: var(--s-3); }

.contact-aside__wa {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}

.contact-card__note {
  margin-top: var(--s-3);
  font-size: var(--t-sm);
  color: var(--ink-mute);
}

/* ==========================================================================
   MAP
   ========================================================================== */

.map {
  aspect-ratio: 16 / 7;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 640px) { .map { aspect-ratio: 4 / 3; } }

/* Honeypot — must be reachable to bots but never to people.
   display:none is skipped by some bots, so it's moved out of view instead. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
