/* Autoshops Tech — shared interior-page styles (About, Careers, Press, Contact) */
:root {
  --void: #0A0A0A;
  --hard-white: #F5F5F5;
  --ash: #1C1C1E;
  --steel: #3A3A3C;
  --smoke: #8E8E93;
  --signal: #0A84FF;
  --confirm: #30D158;
  --alert: #FF453A;
  --maxw: 1080px;
  --readw: 760px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--void);
  color: var(--hard-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.mono { font-family: 'JetBrains Mono', monospace; }
a { color: var(--signal); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; border-radius: 2px; }

/* skip link */
.skip { position: absolute; left: -9999px; top: 0; background: var(--signal); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 2px; }
.skip:focus { left: 12px; top: 12px; text-decoration: none; }

/* ---------- NAV ---------- */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--steel);
}
.wordmark { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--hard-white); text-decoration: none; text-transform: uppercase; }
.wordmark:hover { text-decoration: none; }
.wordmark span { color: var(--signal); }
.nav-back { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--hard-white); opacity: 0.85; display: inline-flex; align-items: center; gap: 8px; }
.nav-back:hover { opacity: 1; text-decoration: none; }

/* ---------- LAYOUT ---------- */
main { max-width: var(--maxw); margin: 0 auto; padding: 80px 24px 40px; }
main.narrow { max-width: var(--readw); }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--signal); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--signal); }
h1 { font-size: clamp(38px, 6vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; margin-bottom: 20px; max-width: 18ch; }
.lead { font-size: clamp(17px, 2vw, 20px); color: #C7C7CC; max-width: 54ch; margin-bottom: 8px; }

.section { margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--steel); }
h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
p { color: #C7C7CC; margin-bottom: 16px; max-width: 62ch; }
p:last-child { margin-bottom: 0; }
strong { color: var(--hard-white); font-weight: 600; }
ul.ticks { list-style: none; margin: 8px 0 0; }
ul.ticks li { color: #C7C7CC; padding: 10px 0; border-top: 1px solid var(--steel); display: flex; align-items: center; gap: 12px; }
ul.ticks li::before { content: ""; width: 6px; height: 6px; background: var(--signal); border-radius: 1px; flex-shrink: 0; }

/* ---------- CARDS / GRID ---------- */
.grid { display: grid; gap: 20px; margin-top: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--ash); border: 1px solid var(--steel); border-radius: 8px; padding: 26px; }
.card .tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--signal); margin-bottom: 12px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 15px; margin-bottom: 0; }

/* ---------- CONTACT BLOCK ---------- */
.contact-block { background: var(--ash); border: 1px solid var(--steel); border-radius: 8px; padding: 24px; margin-top: 20px; }
.contact-block p { margin-bottom: 6px; }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 15px 28px; border-radius: 2px; text-decoration: none; transition: all 200ms ease; border: none; cursor: pointer; font-family: inherit; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--signal); color: var(--hard-white); }
.btn-primary:hover { background: #0a6fd6; transform: translateY(-1px); }
.btn-ghost { color: var(--hard-white); border: 1px solid var(--steel); }
.btn-ghost:hover { border-color: var(--hard-white); }
.cta-row { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- FORM ---------- */
.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 560px; margin-top: 28px; }
.contact-form .hp { position: absolute; left: -9999px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--smoke); }
.field input, .field textarea { background: var(--ash); border: 1px solid var(--steel); border-radius: 4px; color: var(--hard-white); font-family: inherit; font-size: 15px; padding: 12px 14px; width: 100%; transition: border-color 200ms ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--signal); }
.field textarea { resize: vertical; }
.contact-form button { align-self: flex-start; }
.form-note { font-size: 12px; color: var(--smoke); line-height: 1.5; margin-top: -4px; }
.form-note a { color: var(--smoke); text-decoration: underline; text-underline-offset: 2px; }
.form-note a:hover { color: var(--hard-white); }
.form-status { font-size: 14px; color: var(--confirm); }

/* ---------- FOOTER ---------- */
footer { background: var(--void); padding: 48px 40px 40px; border-top: 1px solid var(--steel); margin-top: 96px; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: var(--hard-white); opacity: 0.8; font-size: 14px; }
.foot-links a:hover { opacity: 1; }
.foot-bottom { max-width: var(--maxw); margin: 28px auto 0; padding-top: 24px; border-top: 1px solid var(--steel); font-size: 12px; color: var(--smoke); }

@media (max-width: 820px) {
  nav { padding: 16px 22px; }
  main { padding: 56px 22px 32px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
}
