/* Home page styles */

/* Hero */
.hero-section {
  position: relative;
  padding: 60px 48px 100px;
  overflow: hidden;
  min-height: 700px;
}
.hero-squiggle {
  position: absolute;
  top: -8%;
  right: -10%;
  width: 70%;
  max-width: 900px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  transform: rotate(8deg);
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 40px;
}
.hero-text .h-display { margin-bottom: 28px; }
.hero-mission {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--hz-burgundy);
  margin: 0 0 18px 0;
  max-width: 540px;
}
.hero-sub {
  font-size: 16px;
  color: rgba(55,7,29,0.7);
  margin: 0 0 36px 0;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-photo-wrap {
  position: relative;
  justify-self: end;
}
.hero-photo {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--hz-burgundy);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transform: scale(1.18); transform-origin: center 30%; }
.hero-sticker {
  position: absolute;
  bottom: -18px;
  left: -24px;
  background: var(--hz-yellow);
  color: var(--hz-burgundy);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
}

@media (max-width: 880px) {
  .hero-section { padding: 32px 24px 80px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 16px; }
  .hero-photo-wrap { justify-self: stretch; }
  .hero-photo { max-width: none; aspect-ratio: 4/5; }
  .hero-sticker { left: 12px; bottom: -14px; }
}

/* Mission */
.mission-section { padding-top: 80px; padding-bottom: 80px; background: var(--hz-cream-2, #faf3e3); border-top: 1px solid rgba(55,7,29,0.08); }
.mission-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}
.mission-body { padding-top: 12px; }
.mission-body .lead { margin-bottom: 18px; max-width: 520px; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--hz-bright-blue);
  text-decoration: none;
  margin-top: 16px;
  border-bottom: 1.5px solid var(--hz-bright-blue);
  padding-bottom: 4px;
  transition: gap .15s ease;
}
.link-arrow:hover { gap: 12px; }
@media (max-width: 880px) {
  .mission-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Stats */
.stats-section { background: var(--hz-burgundy); color: var(--hz-cream); padding-top: 90px; padding-bottom: 90px; }
.stats-section .eyebrow { color: var(--hz-yellow); opacity: 1; }
.stats-section .h-1 { color: var(--hz-cream); }
.stats-section .h-1 em.blue { color: var(--hz-yellow); }
.stats-path {
  bottom: -20%;
  left: -10%;
  width: 50%;
  opacity: 0.18;
  z-index: 0;
}
.stats-section .section-inner { position: relative; z-index: 1; }
.stats-head {
  margin-bottom: 48px;
  max-width: 880px;
}
.stats-head-with-photo {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
  max-width: none;
}
.stats-photo {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 360px;
  justify-self: end;
  box-shadow: var(--shadow-lg);
  background: rgba(255,251,243,0.06);
}
.stats-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
@media (max-width: 880px) {
  .stats-head-with-photo { grid-template-columns: 1fr; gap: 32px; }
  .stats-photo { max-width: 100%; justify-self: stretch; }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.stat-card {
  grid-column: span 4;
  background: rgba(255,251,243,0.06);
  border: 1px solid rgba(255,251,243,0.14);
  border-radius: 28px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, background .2s ease;
}
.stat-card:hover { transform: translateY(-2px); background: rgba(255,251,243,0.1); }
.stat-card.big {
  grid-column: span 6;
  background: var(--hz-cream);
  color: var(--hz-burgundy);
  padding: 44px 36px;
}
.stat-card.big .stat-value { font-size: clamp(72px, 9vw, 128px); color: var(--hz-burgundy); }
.stat-card.big .stat-label { color: rgba(55,7,29,0.7); }
.stat-card.accent { background: var(--hz-yellow); border-color: transparent; grid-column: span 6; }
.stat-card.accent .stat-value { color: var(--hz-burgundy); }
.stat-card.accent .stat-label { color: rgba(55,7,29,0.7); }
.stat-value {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  color: var(--hz-cream);
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(255,251,243,0.65);
  margin-top: auto;
}
.stat-badge {
  display: inline-block;
  margin-left: 8px;
  background: var(--hz-bright-blue);
  color: var(--hz-cream);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
.stats-foot {
  margin-top: 36px;
  font-size: 14px;
  color: rgba(255,251,243,0.7);
}
.stats-foot a { color: var(--hz-yellow); }
@media (max-width: 880px) {
  .stat-card, .stat-card.big { grid-column: span 6; padding: 28px 22px; }
  .stat-card.accent { grid-column: span 12; padding: 28px 22px; }
}
@media (max-width: 600px) {
  .stat-card, .stat-card.big, .stat-card.accent { grid-column: span 12; }
}

/* Partnerships */
.partnerships-section { padding-top: 100px; padding-bottom: 100px; }
.partnerships-head { margin-bottom: 48px; max-width: 720px; }
.brand-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(55,7,29,0.12);
  border-left: 1px solid rgba(55,7,29,0.12);
}
.brand-tile {
  border-right: 1px solid rgba(55,7,29,0.12);
  border-bottom: 1px solid rgba(55,7,29,0.12);
  padding: 36px 24px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 24px;
  color: var(--hz-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.01em;
  transition: background .2s ease, color .2s ease;
  min-height: 110px;
}
.brand-tile:hover { background: var(--hz-burgundy); color: var(--hz-cream); }

/* Speaking */
.speaking-section { padding-top: 120px; padding-bottom: 120px; }
.speaking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.speaking-photo {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.speaking-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 30%; transform: scale(1.25); transform-origin: 65% 30%; }
.topics-list {
  margin-top: 36px;
  border-top: 1px solid rgba(255,251,243,0.18);
}
.topic-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,251,243,0.18);
}
.topic-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--hz-yellow);
  min-width: 32px;
}
.topic-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--hz-cream);
  line-height: 1.2;
}
.past-engagements { margin-top: 32px; }
@media (max-width: 880px) {
  .speaking-grid { grid-template-columns: 1fr; gap: 40px; }
  .speaking-photo { max-width: 380px; }
}

/* Press */
.press-section { padding-top: 100px; padding-bottom: 100px; }
.press-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.press-card {
  background: var(--hz-white);
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: var(--hz-burgundy);
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid rgba(55,7,29,0.08);
  display: flex;
  flex-direction: column;
}
.press-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.press-card.dark { background: var(--hz-burgundy); color: var(--hz-cream); border-color: transparent; }
.press-card.dark .press-outlet { color: var(--hz-yellow); }
.press-card.dark h3 { color: var(--hz-cream); }
.press-card.dark .press-link { color: var(--hz-yellow); }
.press-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.press-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--hz-cream);
  color: var(--hz-burgundy);
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 8px 12px;
  border-radius: 999px;
}
.press-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.press-outlet {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(55,7,29,0.7);
  margin-bottom: 12px;
}
.press-card h3 { margin-bottom: 20px; flex: 1; }
.press-link {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--hz-bright-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 720px) {
  .press-grid { grid-template-columns: 1fr; }
}

/* Newsletter */
.newsletter-section { padding-top: 60px; padding-bottom: 60px; }
.newsletter-card {
  background: var(--hz-burgundy);
  border-radius: 40px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-feature {
  background: var(--hz-cream);
  border-radius: 28px;
  padding: 32px 32px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-md);
}
.newsletter-feature::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  width: 60px; height: 60px;
  background: var(--hz-yellow);
  border-radius: 50%;
  z-index: 0;
  box-shadow: var(--shadow-sm);
}
.nf-tag {
  position: relative; z-index: 1;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--hz-bright-blue);
}
.nf-title {
  position: relative; z-index: 1;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: var(--hz-burgundy);
  margin: 0;
}
.nf-link {
  position: relative; z-index: 1;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--hz-bright-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1.5px solid var(--hz-bright-blue);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap .15s ease;
}
.nf-link:hover { gap: 12px; }
@media (max-width: 880px) {
  .newsletter-card { padding: 48px 32px; grid-template-columns: 1fr; gap: 40px; }
}

/* Press list (text-based) */
.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(55,7,29,0.18);
}
.press-row { border-bottom: 1px solid rgba(55,7,29,0.18); }
.press-row-link {
  display: grid;
  grid-template-columns: 180px 1fr 140px 120px;
  gap: 24px;
  align-items: center;
  padding: 28px 8px;
  text-decoration: none;
  color: var(--hz-burgundy);
  transition: background .15s ease, padding-left .15s ease;
}
.press-row-link:hover { background: rgba(43,124,255,0.05); padding-left: 20px; }
.pr-outlet {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--hz-burgundy);
}
.pr-title {
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.25;
  color: var(--hz-burgundy);
}
.pr-date {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(55,7,29,0.6);
}
.pr-cta {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--hz-bright-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
@media (max-width: 880px) {
  .press-row-link {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 4px;
  }
  .pr-cta { justify-self: start; margin-top: 6px; }
}

.contact-lanes-4 {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1100px) {
  .contact-lanes-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .contact-lanes-4 { grid-template-columns: 1fr !important; }
}

/* Contact */
.contact-section { padding-top: 120px; padding-bottom: 120px; }
.contact-path {
  top: 8%; right: -8%;
  width: 50%;
  opacity: 0.18;
  z-index: 0;
}
.contact-section .section-inner { position: relative; z-index: 1; }
.contact-head { max-width: 820px; margin-bottom: 56px; }
.contact-head-with-photo {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.contact-photo {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 380px;
  justify-self: end;
  box-shadow: var(--shadow-lg);
  background: rgba(255,251,243,0.06);
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
@media (max-width: 880px) {
  .contact-head-with-photo { grid-template-columns: 1fr; gap: 36px; }
  .contact-photo { max-width: 100%; justify-self: stretch; }
}
.contact-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.lane-card {
  background: rgba(255,251,243,0.06);
  border: 1px solid rgba(255,251,243,0.15);
  border-radius: 28px;
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  transition: background .2s ease, transform .2s ease;
  display: flex;
  flex-direction: column;
}
.lane-card:hover { background: rgba(255,251,243,0.10); transform: translateY(-2px); }
.lane-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--hz-yellow);
  margin-bottom: 36px;
}
.lane-cta {
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--hz-yellow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 880px) {
  .contact-lanes { grid-template-columns: 1fr; }
}

/* Contact form */
.contact-form {
  background: rgba(255,251,243,0.04);
  border: 1px solid rgba(255,251,243,0.15);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label > span {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--hz-yellow);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,251,243,0.06);
  border: 1px solid rgba(255,251,243,0.18);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--hz-cream);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,251,243,0.45); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--hz-yellow);
  background: rgba(255,251,243,0.10);
}
.contact-form select option { background: var(--hz-burgundy); color: var(--hz-cream); }
.form-foot { display: flex; align-items: center; gap: 20px; margin-top: 8px; }
.form-sent {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hz-yellow);
}
@media (max-width: 600px) {
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
.contact-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
}
.form-sent-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--hz-yellow);
  color: var(--hz-burgundy);
  font-size: 24px;
  font-weight: 800;
}
