/* Young IT Consulting. Palette: #ED7B12 on #111..#242424 dark surfaces, white hero band. */
@font-face { font-family: 'Inter'; src: url('/fonts/Inter-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/Inter-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('/fonts/Inter-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/fonts/JetBrainsMono-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }

:root {
  --orange: #ED7B12; --bg: #161616; --bg-deep: #111; --panel: #242424; --line: #2a2a2a;
  --text: #ccc; --text-strong: #fff; --text-dim: #a8a8a8;
  --ink: #1a1a1a; --ink-dim: #555;
  --mono: 'JetBrains Mono', monospace; --sans: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--text); line-height: 1.65; font-size: 17px; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { color: var(--text-strong); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; margin-bottom: 0.4em; }
p + p { margin-top: 1em; }
a { color: var(--orange); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #ED7B12; color: #fff; padding: 10px 18px; z-index: 100; }
.skip-link:focus { left: 0; }
.eyebrow { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
section { padding: 72px 0; }

/* Header */
.site-header { background: var(--bg-deep); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; }
.nav__logo img { display: block; }
.nav__links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav__links a { color: var(--text); font-weight: 600; font-size: 0.95rem; }
.nav__links a:hover { color: var(--text-strong); text-decoration: none; }
.nav__cta { border: 1px solid var(--orange); padding: 8px 18px; border-radius: 3px; color: var(--orange) !important; }
.nav__cta:hover { background: var(--orange); color: #fff !important; }
.nav__hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--text-strong); margin: 5px 0; transition: 0.2s; }

/* Hero: light band on dark site */
.hero--light { background: #fff; padding: 96px 0; }
.hero--light h1 { color: var(--ink); }
.hero--light .lede { color: var(--ink-dim); max-width: 620px; margin-top: 18px; font-size: 1.1rem; }
.hero--dark { background: linear-gradient(180deg, var(--bg-deep), var(--bg)); padding: 80px 0 56px; }
.hero--dark .lede { color: var(--text-dim); max-width: 640px; margin-top: 14px; }

.btn { display: inline-block; background: var(--orange); color: #fff; font-weight: 600; padding: 13px 28px; border-radius: 3px; border: 0; font-size: 1rem; cursor: pointer; font-family: var(--sans); }
.btn:hover, .btn:focus-visible { background: #d96d0d; text-decoration: none; }
.hero--light .btn { margin-top: 28px; }

/* Service grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.card { background: var(--panel); border-left: 2px solid var(--orange); padding: 26px 22px; display: block; color: var(--text); }
.card:hover { background: #2b2b2b; text-decoration: none; }
.card h3 { color: var(--text-strong); }
.card p { font-size: 0.93rem; color: var(--text-dim); }

/* Strips and prose */
.strip { background: var(--bg-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip .grid { margin-top: 24px; }
.prose { max-width: 720px; }
.prose h2 { margin-top: 1.6em; }
.prose ul { margin: 1em 0 1em 1.2em; }
.checklist { list-style: none; margin: 1.2em 0 !important; padding: 0; }
.checklist li { padding-left: 26px; position: relative; margin-bottom: 10px; }
.checklist li::before { content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; background: var(--orange); }
.contact-alt { margin-top: 48px; }

/* CTA band */
.cta-band { background: var(--orange); }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band .btn { background: #161616; }
.cta-band .btn:hover { background: #000; }

/* Forms */
.form { max-width: 560px; margin-top: 24px; }
.form label { display: block; font-weight: 600; color: var(--text-strong); margin: 18px 0 6px; }
.form input, .form textarea { width: 100%; background: var(--panel); color: var(--text-strong); border: 1px solid var(--line); border-radius: 3px; padding: 12px; font: inherit; }
.form input:focus, .form textarea:focus { outline: 2px solid var(--orange); border-color: var(--orange); }
.form .hp-field { position: absolute; left: -9999px; }
.form-status { margin-top: 16px; font-weight: 600; }
.form-status[data-state="ok"] { color: #6fbf73; }
.form-status[data-state="error"] { color: #e57373; }

/* Footer */
.footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding: 56px 0 32px; font-size: 0.92rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.footer__nav { list-style: none; }
.footer__nav a { color: var(--text-dim); }
.footer__nav a:hover { color: var(--text); }
.footer__tagline { color: var(--text-dim); margin-top: 12px; max-width: 280px; }
.footer__legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); color: #777; font-size: 0.82rem; }

/* Mobile */
@media (max-width: 760px) {
  .grid, .footer__grid { grid-template-columns: 1fr; }
  .nav__hamburger { display: block; }
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-deep); flex-direction: column; padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--line); }
  .nav__links.open { display: flex; }
  .site-header { position: relative; }
  section { padding: 52px 0; }
  .hero--light { padding: 64px 0; }
}

/* Clients logo wall. Per-logo heights tuned for equal optical weight. */
.clients { background: var(--bg-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logo-wall { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 34px 50px; margin-top: 30px; }
.logo-wall img { width: auto; opacity: 0.8; transition: opacity 0.2s; }
.logo-wall img:hover { opacity: 1; }
.lw-mylk { height: 18px; }
.lw-adjust { height: 30px; }
.lw-clearskin { height: 34px; }
.lw-famous { height: 27px; }
.lw-budget { height: 33px; opacity: 0.92; }
@media (max-width: 760px) {
  .logo-wall { gap: 24px 34px; }
  .lw-mylk { height: 15px; } .lw-adjust { height: 25px; } .lw-clearskin { height: 28px; }
  .lw-famous { height: 22px; } .lw-budget { height: 27px; }
}
