/* ============================================================
   MLCC — ML Creative Consulting
   Brand: #F2CD00 (yellow) / #101820 (ink navy)
   Type:  Archivo Black (display) / Archivo (body)
   ============================================================ */

:root {
  --yellow: #F2CD00;
  --ink: #101820;
  --ink-soft: #3d4752;
  --on-ink: #f5f6f7;
  --on-ink-soft: #b9c0c7;
  --paper: #ffffff;
  --hairline: rgba(16, 24, 32, 0.14);
  --hairline-light: rgba(245, 246, 247, 0.18);
  --measure: 66ch;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

img { max-width: 100%; height: auto; display: block; }

/* ---------- Nav ---------- */

.nav {
  background: var(--ink);
  color: var(--on-ink);
}
.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.9rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-brand img { width: 40px; height: 40px; }
.nav-brand span {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-ink-soft);
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.nav-links a:hover { color: var(--on-ink); }
.nav-links a[aria-current="page"] {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* ---------- Display type ---------- */

.display {
  font-family: 'Archivo Black', 'Archivo', system-ui, sans-serif;
  font-weight: 400; /* Archivo Black is a single heavy weight */
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.08;
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.eyebrow--on-ink { color: var(--yellow); }

/* ---------- Signature: the Hertz wave ---------- */

.wave {
  display: block;
  width: 168px;
  height: 22px;
  margin: 1.75rem auto;
}
.wave svg { display: block; width: 100%; height: 100%; }
.wave--center { margin-left: auto; margin-right: auto; }

/* ---------- Hero (home) ---------- */

.hero {
  background: var(--ink);
  color: var(--on-ink);
}
.hero-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 6.5rem) var(--pad) clamp(3rem, 8vw, 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-lockup {
  width: min(560px, 86%);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.hero h1 {
  font-size: clamp(1.9rem, 5.2vw, 3.4rem);
  max-width: 21ch;
  color: var(--on-ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.hero p {
  max-width: var(--measure);
  color: var(--on-ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.175rem);
  margin: 1.4rem auto 0;
  text-align: left;
}
.hero p strong { color: var(--on-ink); font-weight: 600; }

/* ---------- Sections ---------- */

.section {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--pad);
}
.section--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section p {
  max-width: var(--measure);
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.175rem);
  margin: 1.4rem 0 0;
}
.section--center p { text-align: left; margin-left: auto; margin-right: auto; }
.section--center .actions { justify-content: center; }
.section p:first-of-type { margin-top: 0; }
.section p strong { color: var(--ink); font-weight: 600; }
.section h2.display {
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  max-width: 26ch;
  margin-bottom: 0.5rem;
}

/* ---------- Buttons ---------- */

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-top: 2.5rem;
}
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 2px solid var(--yellow);
  transition: background 160ms ease, color 160ms ease;
}
.btn:hover { background: transparent; color: var(--yellow); }
.section .btn:hover { color: var(--ink); border-color: var(--ink); }
.link-arrow {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.3rem;
}
.link-arrow:hover { border-bottom-color: currentColor; }

/* ---------- Story page ---------- */

.story-head {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--pad) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.story-head h1 {
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  max-width: 20ch;
}
.story-head .lede {
  max-width: var(--measure);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 1.5rem 0 0;
}

.prose {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) var(--pad) clamp(3rem, 7vw, 4.5rem);
}
.prose p {
  max-width: var(--measure);
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.175rem);
  margin-top: 1.5rem;
}
.prose p:first-child { margin-top: 0; }
.prose a {
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.1rem;
  transition: border-color 160ms ease;
}
.prose a:hover { border-bottom-color: currentColor; }
.prose p strong { color: var(--ink); font-weight: 600; }

/* Full-bleed ink band for the calling paragraph */
.calling {
  background: var(--ink);
  color: var(--on-ink);
  margin: clamp(2.5rem, 6vw, 4rem) 0;
}
.calling-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4rem) var(--pad);
}
.calling-inner { text-align: center; }
.calling p {
  max-width: var(--measure);
  margin: 0 auto;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: var(--on-ink);
  font-weight: 500;
}
.calling .kicker {
  display: block;
  margin-top: 1.5rem;
  color: var(--yellow);
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  letter-spacing: 0.02em;
}

/* ---------- Contact / outro ---------- */

.outro {
  border-top: 1px solid var(--hairline);
}

/* ---------- Contact page ---------- */

.contact {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 6rem) var(--pad) clamp(4rem, 10vw, 7rem);
}
.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.contact h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.contact-lede {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  margin: 0 0 2.5rem;
}
.contact-email {
  display: inline-block;
  font-family: 'Archivo Black', 'Archivo', sans-serif;
  text-transform: none;
  font-size: clamp(1.35rem, 4vw, 2.25rem);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 4px solid var(--yellow);
  padding-bottom: 0.35rem;
  transition: color 160ms ease;
  word-break: break-word;
}
.contact-email:hover { color: var(--ink-soft); }
.contact-secondary {
  margin: 2.75rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.contact-secondary a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.15rem;
}
.contact-secondary a:hover { border-bottom-color: var(--ink); }

/* ---------- Footer ---------- */

.footer {
  background: var(--ink);
  color: var(--on-ink-soft);
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 3.5rem) var(--pad);
}
.footer-wordmark { width: min(420px, 78%); margin-bottom: 1.75rem; }
.footer a { color: var(--on-ink); text-decoration: none; font-weight: 600; }
.footer a:hover { color: var(--yellow); }
.footer .footer-contact { font-size: 1.05rem; margin: 0 0 1.5rem; }
.footer small {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  border-top: 1px solid var(--hairline-light);
  padding-top: 1.25rem;
}
