/* careerhannah.com — shared site styles
   Built on Hannah Zhang Design System (colors_and_type.css)
*/

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
  background: var(--hz-cream);
  color: var(--hz-burgundy);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* Typography overrides for editorial feel */
em { font-style: italic; }
em.blue { color: var(--hz-bright-blue); font-style: italic; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hz-burgundy);
  opacity: 0.7;
  margin: 0 0 18px 0;
  display: block;
}

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  padding: 16px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn.primary { background: var(--hz-bright-blue); color: var(--hz-cream); }
.btn.primary:hover { background: #1F66E0; transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  color: var(--hz-burgundy);
  border: 1.5px solid var(--hz-burgundy);
}
.btn.ghost:hover { background: var(--hz-burgundy); color: var(--hz-cream); }
.btn.ghost-light {
  background: transparent;
  color: var(--hz-cream);
  border: 1.5px solid var(--hz-cream);
}
.btn.ghost-light:hover { background: var(--hz-cream); color: var(--hz-burgundy); }
.btn.small { padding: 12px 18px; font-size: 11px; }
.btn .arrow { display: inline-block; transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Nav (sticky) */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(255, 251, 243, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(55,7,29,0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-brand {
  font-family: var(--font-body);
  font-size: 22px;
  color: var(--hz-burgundy);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.nav-brand em { color: var(--hz-bright-blue); font-style: italic; }
.wm-blue { color: var(--hz-bright-blue); font-weight: 400; }
.wm-burgundy { color: var(--hz-bright-blue); font-weight: 800; }
.wm-cream { color: var(--hz-cream); font-weight: 800; }
.wm-yellow { color: var(--hz-yellow); font-weight: 400; }
.wordmark-display {
  font-family: var(--font-body) !important;
  font-weight: 400;
  letter-spacing: -0.04em;
  font-size: clamp(56px, 8vw, 110px) !important;
  line-height: 0.95 !important;
}
.wordmark-display .wm-blue { font-weight: 400; }
.wordmark-display .wm-burgundy { font-weight: 800; font-style: normal; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-icons { display: flex; align-items: center; gap: 16px; }
.nav-icons a {
  color: var(--hz-burgundy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
  border-radius: 8px;
}
.nav-icons a:hover { color: var(--hz-bright-blue); transform: translateY(-1px); }
.nav-icons svg { width: 18px; height: 18px; }
.nav-divider { width: 1px; height: 18px; background: rgba(55,7,29,0.18); }
.nav-text-links { display: flex; align-items: center; gap: 22px; }
.nav-text-links a {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--hz-burgundy);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-text-links a:hover { color: var(--hz-bright-blue); }
.nav-text-links a.contact-link {
  background: var(--hz-burgundy);
  color: var(--hz-cream);
  padding: 10px 16px;
  border-radius: 999px;
}
.nav-text-links a.contact-link:hover { background: var(--hz-bright-blue); color: var(--hz-cream); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--hz-burgundy);
  padding: 8px;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 880px) {
  .nav { padding: 16px 24px; }
  .nav-right .nav-icons,
  .nav-right .nav-divider,
  .nav-right .nav-text-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-mobile-open .nav-right .nav-icons,
  .nav-mobile-open .nav-right .nav-divider,
  .nav-mobile-open .nav-right .nav-text-links { display: flex; }
  .nav-mobile-open .nav-right {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--hz-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(55,7,29,0.08);
  }
  .nav-mobile-open .nav-divider { display: none; }
}

/* Section container */
.section {
  padding: 120px 48px;
  position: relative;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.section.dark { background: var(--hz-burgundy); color: var(--hz-cream); }
.section.dark .eyebrow { color: var(--hz-yellow); opacity: 1; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--hz-cream); }
.section.dark p { color: rgba(255, 251, 243, 0.85); }

@media (max-width: 880px) {
  .section { padding: 72px 24px; }
}

/* Headline scale */
.h-display {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.h-1 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.h-2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
.h-3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin: 0;
}
.lead {
  font-size: 19px;
  line-height: 1.55;
  max-width: 560px;
}

/* Path illustrations as decorative */
.path-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Footer */
.footer {
  background: var(--hz-cream);
  border-top: 1px solid rgba(55,7,29,0.08);
  padding: 56px 48px 32px;
}
@media (max-width: 880px) {
  .footer { padding: 40px 24px 28px; }
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--hz-burgundy);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.footer-brand em { color: var(--hz-bright-blue); font-style: italic; }
.footer-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(55,7,29,0.10);
  font-size: 13px;
  color: rgba(55,7,29,0.65);
  flex-wrap: wrap;
  gap: 12px;
}

/* Utility */
.row { display: flex; }
.col { display: flex; flex-direction: column; }
.gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-5 { gap: 24px; } .gap-6 { gap: 32px; }
.center { align-items: center; justify-content: center; }
.between { justify-content: space-between; }
.wrap { flex-wrap: wrap; }
